
Language en_CA
===============

``faker.providers.address``
---------------------------

::

	fake.latitude()
	# Decimal('45.5444365')

	fake.street_name()
	# u'Richardson Spur'

	fake.address()
	# u'4075 Julie Terrace Suite 835\nNorth Jose, NS R7L 9K3'

	fake.street_address()
	# u'84252 Davis Forges Apt. 139'

	fake.postcode()
	# u'54765'

	fake.country_code(representation="alpha-2")
	# u'IS'

	fake.longitude()
	# Decimal('-101.005912')

	fake.country()
	# u'Peru'

	fake.geo_coordinate(center=None, radius=0.001)
	# Decimal('-149.362087')

	fake.postal_code_letter()
	# u'B'

	fake.province()
	# u'Saskatchewan'

	fake.city_prefix()
	# u'East'

	fake.city_suffix()
	# u'mouth'

	fake.building_number()
	# u'6036'

	fake.street_suffix()
	# u'River'

	fake.secondary_address()
	# u'Apt. 273'

	fake.city()
	# u'West Brandon'

	fake.province_abbr()
	# u'NS'

	fake.postalcode()
	# u'X3E 9S3'

``faker.providers.automotive``
------------------------------

::

	fake.license_plate()
	# u'MXE-1256'

``faker.providers.bank``
------------------------

::

	fake.bban()
	# 'PPZV4675749339807'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB62RYGH1515646219597'

``faker.providers.barcode``
---------------------------

::

	fake.ean(length=13)
	# u'5863804681500'

	fake.ean13()
	# u'8216369366622'

	fake.ean8()
	# u'36033676'

``faker.providers.color``
-------------------------

::

	fake.rgb_css_color()
	# u'rgb(97,220,29)'

	fake.color_name()
	# u'MediumOrchid'

	fake.rgb_color()
	# u'103,168,154'

	fake.safe_hex_color()
	# u'#ee3300'

	fake.safe_color_name()
	# u'gray'

	fake.hex_color()
	# u'#d3344f'

``faker.providers.company``
---------------------------

::

	fake.company()
	# u'Bell Group'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Proactive tertiary hardware'

	fake.bs()
	# u'iterate impactful e-markets'

``faker.providers.credit_card``
-------------------------------

::

	fake.credit_card_security_code(card_type=None)
	# u'242'

	fake.credit_card_provider(card_type=None)
	# u'VISA 16 digit'

	fake.credit_card_full(card_type=None)
	# u'Maestro\nDavid Adkins\n572989308323 10/18\nCVV: 874\n'

	fake.credit_card_expire(start="now", end="+10y", date_format="%m/%y")
	# '04/23'

	fake.credit_card_number(card_type=None)
	# u'060486177367'

``faker.providers.currency``
----------------------------

::

	fake.cryptocurrency_code()
	# 'MSC'

	fake.currency_code()
	# 'MOP'

	fake.currency_name()
	# 'Kenyan shilling'

	fake.cryptocurrency_name()
	# 'Lisk'

	fake.cryptocurrency()
	# ('BCN', 'Bytecoin')

	fake.currency()
	# ('KGS', 'Kyrgyzstani som')

``faker.providers.date_time``
-----------------------------

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 19, 9, 24, 7)

	fake.time_series(start_date="-30d", end_date="now", precision=None, distrib=None, tzinfo=None)
	# <generator object time_series at 0x7f29b48dd0f0>

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 16)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2014, 4, 28, 9, 0, 2)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2013, 4, 11)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 9, 23, 31, 52)

	fake.past_date(start_date="-30d", tzinfo=None)
	# datetime.date(2018, 7, 29)

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 10, 11, 15, 35, 33)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1996, 12, 25)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2008, 7, 1, 18, 29, 26)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1984-10-19'

	fake.am_pm()
	# 'AM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 9, 27, 49)

	fake.date_object(end_datetime=None)
	# datetime.date(2014, 2, 16)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 7, 23)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1982-10-28T05:08:20'

	fake.future_date(end_date="+30d", tzinfo=None)
	# datetime.date(2018, 9, 10)

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2015, 2, 10)

	fake.month()
	# '10'

	fake.year()
	# '2006'

	fake.day_of_month()
	# '19'

	fake.unix_time(end_datetime=None, start_datetime=None)
	# 393744885

	fake.timezone()
	# u'Pacific/Kiritimati'

	fake.century()
	# u'XX'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1996, 8, 3)

	fake.time_object(end_datetime=None)
	# datetime.time(18, 23, 23)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 1, 5, 18, 15, 50)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2006, 1, 12, 8, 54, 6)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '13:30:21'

	fake.date_this_month(before_today=True, after_today=False)
	# datetime.date(2018, 8, 4)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 25, 21, 20, 22)

	fake.month_name()
	# 'April'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(263, 4, 9, 11, 37, 12)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(16970, 65985)

``faker.providers.file``
------------------------

::

	fake.unix_device(prefix=None)
	# u'/dev/xvdl'

	fake.mime_type(category=None)
	# u'text/plain'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/magnam/ratione.wav'

	fake.unix_partition(prefix=None)
	# u'/dev/xvdn0'

	fake.file_name(category=None, extension=None)
	# u'perspiciatis.mov'

	fake.file_extension(category=None)
	# u'json'

``faker.providers.internet``
----------------------------

::

	fake.ascii_free_email(*args, **kwargs)
	# 'ann41@hotmail.com'

	fake.image_url(width=None, height=None)
	# u'https://placeholdit.imgix.net/~text?txtsize=55&txt=563x0&w=563&h=0'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'jasonhansen@yahoo.com'

	fake.url(schemes=None)
	# u'http://hernandez.org/'

	fake.ipv4_private(network=False, address_class=None)
	# '172.19.252.8'

	fake.user_name(*args, **kwargs)
	# u'ariasjordan'

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'index'

	fake.free_email_domain(*args, **kwargs)
	# u'hotmail.com'

	fake.safe_email(*args, **kwargs)
	# u'gfisher@example.net'

	fake.ascii_email(*args, **kwargs)
	# 'lromero@gmail.com'

	fake.ipv4_network_class()
	# u'c'

	fake.ipv4_public(network=False, address_class=None)
	# '3.157.90.40'

	fake.ascii_company_email(*args, **kwargs)
	# 'aaroncastaneda@lee.org'

	fake.domain_name(*args, **kwargs)
	# u'washington-acosta.org'

	fake.ipv4(network=False, address_class=None, private=None)
	# '199.91.46.199'

	fake.domain_word(*args, **kwargs)
	# u'dunn'

	fake.slug(*args, **kwargs)
	# u'dolorem-totam'

	fake.uri_path(deep=None)
	# u'categories/main/list'

	fake.company_email(*args, **kwargs)
	# u'myoung@howe.net'

	fake.uri()
	# u'https://www.moon.info/'

	fake.ipv6(network=False)
	# '87c2:3d1d:102e:4161:88ed:4c96:7ddc:f6cb'

	fake.free_email(*args, **kwargs)
	# u'fjames@gmail.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'qmorris@example.org'

	fake.mac_address()
	# u'f2:0d:43:ae:24:42'

``faker.providers.isbn``
------------------------

::

	fake.isbn10(separator="-")
	# u'1-00-341558-X'

	fake.isbn13(separator="-")
	# u'978-1-75786-429-9'

``faker.providers.job``
-----------------------

::

	fake.job()
	# 'Software engineer'

``faker.providers.lorem``
-------------------------

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Dolore voluptate veritatis laborum magnam a. Quasi dignissimos porro provident.\nAdipisci veritatis tenetur. Iusto vel saepe hic enim sequi. Laborum pariatur ullam similique.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Sequi officiis harum sint tempore. Veritatis quibusdam ratione ex.',
	#     u'Mollitia iusto nobis voluptate earum minus. Rerum a illum dignissimos ex modi quas. Ipsum error minus corrupti veritatis impedit.',
	#     u'Earum ad perferendis veritatis quae perferendis consequatur laboriosam. Numquam iste distinctio dolor odit ut.']

	fake.words(nb=3, ext_word_list=None)
	# [u'vero', u'architecto', u'voluptates']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Voluptatem quo vitae eligendi aliquam voluptates.',
	#     u'Aspernatur fugiat neque.',
	#     u'Maiores illum adipisci quos saepe nemo aliquam.']

	fake.word(ext_word_list=None)
	# u'suscipit'

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Aperiam officia consectetur itaque saepe hic possimus. Sunt impedit architecto enim esse ratione. Optio at ex quaerat repellendus.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Neque doloribus velit aut illo sequi vero occaecati.'

``faker.providers.misc``
------------------------

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'R6uuSqOO*u'

	fake.locale()
	# u'sk_SK'

	fake.binary(length=1048576)
	# bytearray(b'\xbaOVD%\xd7\xdfP\xdb7\x07\')\xeaI\x9ejcm\x82(p\xa1\x84}3\x17C\xd0\xab\xf8\x167N)\xf5\xe4U\xd0\xc1\x01}\x03\x0c\x81\xe6\xde_o\x1d\xfd5\x90\xb2\x8d\xc0p\xf4\x05\x92\x8f0\xca\xdb0\xeb\xfe\x00\xdd\x9evM\xd5\xee\x1a"C\'\xb4\xfa\xdb\xe0\x1e*V\xbc\xb7r\x00\xd6\xa7\xa7\xcf~\x88\x8b\xdf,v\x8e\xa1\x19\x1c-\xcb(\xed\x8a)\xdc\xa5b\x7f\x97\x9d\x85`4aA\x04<\x0f\x02\xef#\x90\xaf\xd5 \x9b\xa1Bd\xf4i\x05\x18\xc8\xa2\xd9i\xd73\xcc<\xabBm\x9f\xc4\n0\xf1x2\xda3\xb9=\x0fynG M\xec\xaf\xca\x0e\xa8!F#\xccr\x89\xcc>1\xae\xc2\xd0\x83\x0f\x1d\x81\xe5\xb9\\j?\xbd\xc0E\x89\x8b\xf8\x0c\'\xad\x90\xd3E,\xd0\x17\x81"/L\x83\xa0{\x11\x86>s\x87\xf3-\xc0CZ\x9b\xab3\x0f\xf4d"\xae)W\xba\x96\xf7uV\x9b7\x8a\x7f\xfa\x19\x0c_\xeb\xf6pY\xe3%\xca\x81\xacS\x97\x19\xee\xf5\xc90\xd9]\xa0\xbd\xb3\x1a\x03!\xda[\xdd\xe1 \x85\x90\x9cJ\x9b,\xcf\x14.2\xf9\xd2Hw\xc2\x18\x95\xdaws\xf7y\xc7F\x94\x85"7\xfc\x11\xaf\xf1}\xe7\xec\x112\xd27\x802w;H*\x02\xab\xba\xda`\x93\xd7\x12m\x92\x0c\x92X\xa3\xa0\x91\xc9\x14\xdc#\xb4\x83\xa3\xbd\xf7\xd0\xa3g\xe0\x95rW\x92\x1e\x10\x00\\@\x88P\x89\xf7\xeb\x0c\x8a?\xaf\x02:+*\xc5\xcf9\xdd\n\xef\x8d\xe5\x0f\x9b=D\xabVZY\xb7\xfe\xbaA\xb2J\xef\xc4G\x0f.\xf6L%\xfc\xbd\xc2W\xf6c<L\x8a\x9f\xeen\xacW\xf6\x14\xfb\x9d\xaf\xb2\xbe\xfa\xe3%b^Q\xa8\x164Q\xbd\x93\xe5\xe0\x99\xe7U\xb8\x99o\x1d\x8a\x8a\xc4$fY\x88@m\xa1j\x93\xe9b\rz\xff\xed\x81X\xea\x93\xe4\xc5\x1e\xdd\xfe\xf1\xd9w[K\x06}\x8a\xbfR\xbe_\x99\xc7\xb6l\xd5\xb9\x06\n\x16JS\x14\xc5\xfb|\xe7\xceA\x8c\x99\xec\xd3\xbbY\xac\xba\r+\x97\x96\xa3\xfb.$\x91\xe4o\xc9\xf3bEg{Lc\xd4\x02fd\xe4r\xde\xe1\xc3\x12\x8d\xfc\xf0S\x8a\x0f\x8c}\xaa\xb0\xa5wx\xd64\x93X\'\x1a\tPU\xceGV\x9e\xeb\x9f\x17\xe0<`\xd8%h2\xe5\xf5S\xd3\n\xb6\x14L3\xca):\xdd\x99+\xbdCiF1(6\xef\x1c\x07$\x92\xc64\x10\xff\xe2p\xefp\xc1\xd6=\xcf\x02\xb9\x17L\xf4\x1cDI\xf5\xd0w>O\xef\xce\xa3\xd8lA\xea&\xed\xb92\x9ev\x96x\x89\xec1p\xf0[Uicnb\xaa\x92\xf7G\x90\xfd\xb3Q\xce\xee\x95+\xce1\xa7)Y\x04\xfc|H\xca"\xde\t\xaf\xc7P\xd4\xd6\xaf\xad\xb6M{\xe8 \xa9\x9e\xdc\x11\x8czLK\xcb\x1bNRgM6#\x92\xe8Z.=\xc4\xb3b\xd7LG\xab\xfdq\x06"\x0b\xabV\x07\xe2\xc1\xa6n\xab\x93%\x84\rS\x9e\xfd\xfa\xa0\xde-MS\x13\x82 \x8c\x8a\x98\x02\xc2Q\xaa\r\xac\xba\xc1\xe9\x018\x95\xdc\xc1R\xa2h/]$}\xfe3\xa9\x99\xf1\x1d\'\xc6\x97H\xe9}\x08\xed>\xdc^o\xd8-\xef\x8c\xb9\xc6U\x8fzLNL>\x92g\xf1\xa0]\xe0\x90\xdad\x0b\x98=v\x1e\xdfz\xec\x16\x85\xc5g\xf4r5h\xe3\xb3\xffG\x9b\xaa\xf8\x84w\x91\xa1a\xf0`\xea\xe9\x07\xa5\x89\xb1\xb7U\xa4\xdf\xe9:~\xaa\'k\x82\x0b\xa1\xa1g\x8c\xd5\x86=\x99.\x8a\x8d\xe2\x85\xab\x9b}v\xe1\xce\xf5L\xc1^t\xea\xbe\x1f\xb8\xde\xd5M\x06c\xc7\xf5}\x14,_\xe7R\xc7\xd9\xdb\xe8K\xcc\xd0\xdf\x03\xb5\xf6(\x8cx\x13\x17\xa8\xfa\r\x1f\x1f\xe8\xbbd\xe4\xda\xcbZ\xe0\xeb\x8d\xda\x18\x80\x7f\xd3fK(K\x04\xda\xd1\xe8\xc5\x82\x12\x80B \xaa\x84\xfb\xb7\x96\xdd*B4\'\xb8{.\x17J\x04H^\xd7cU\x10=\x19\xba\x1e5\xc1\x85\\l\xb9\xcbAt\xea\xf7\xf4)\x9e\xfdo;G\x89\xe8E\xde3#D\x84|\x12o\x13\xedP\t\xba\xa9N\r\x8a\x8au0\xacz\xe5\x84\x12\xfeO\x10')

	fake.md5(raw_output=False)
	# 'abd32891114908810b21b08c066ffa0e'

	fake.sha1(raw_output=False)
	# '2feaacb63eea6d4c0f86dac2d5916899132ca951'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '1b7cc31e92c4d5c8930d18cf329c4f6b223df6433b437c2bbe6c77311f3bc46b'

	fake.uuid4()
	# '99cdda14-b429-344e-3283-2c99a2376dd2'

	fake.language_code()
	# u'gd'

	fake.boolean(chance_of_getting_true=50)
	# True

``faker.providers.person``
--------------------------

::

	fake.last_name_male()
	# u'Rollins'

	fake.name_female()
	# u'Barbara Moore'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Mr.'

	fake.name()
	# u'Mark Clark'

	fake.suffix_female()
	# u'DDS'

	fake.name_male()
	# u'William Richards'

	fake.first_name()
	# u'Stephen'

	fake.suffix_male()
	# u'DDS'

	fake.suffix()
	# u'DDS'

	fake.first_name_male()
	# u'Glenn'

	fake.first_name_female()
	# u'Lauren'

	fake.last_name_female()
	# u'Galvan'

	fake.last_name()
	# u'Sanders'

	fake.prefix_female()
	# u'Dr.'

``faker.providers.phone_number``
--------------------------------

::

	fake.phone_number()
	# u'576.451.9587'

	fake.msisdn()
	# '1899182382021'

``faker.providers.profile``
---------------------------

::

	fake.simple_profile(sex=None)
	# {   'address': u'1060 Bell Knolls Apt. 351\nLake Julia, YT N8P 9T6',
	#     'birthdate': datetime.date(1981, 7, 4),
	#     'mail': u'ktaylor@yahoo.com',
	#     'name': u'Krista Boyer',
	#     'sex': 'F',
	#     'username': u'stevenlee'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'181 Olivia Manor\nLake Amandaton, PE N5J7M8',
	#     'birthdate': datetime.date(1981, 10, 9),
	#     'blood_group': 'AB+',
	#     'company': u'Lawrence-Lee',
	#     'current_location': (Decimal('3.2004425'), Decimal('-66.576276')),
	#     'job': 'Designer, multimedia',
	#     'mail': u'johnsonanthony@gmail.com',
	#     'name': u'Jeffery Harrison',
	#     'residence': u'603 Kimberly Cliff\nMichaelfurt, QC S8J 1X6',
	#     'sex': 'M',
	#     'ssn': u'160 741 831',
	#     'username': u'melissayoung',
	#     'website': [   u'https://chapman.org/',
	#                    u'http://jackson.biz/',
	#                    u'http://cruz.net/']}

``faker.providers.python``
--------------------------

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   6168,
	#     u'uking@hotmail.com',
	#     5371,
	#     u'xZCihCRGAzpUZpPJdOAW',
	#     datetime.datetime(1984, 8, 2, 13, 24, 27),
	#     u'qBknZbxieIfhckdImXQT',
	#     u'VjAGpJqgVVgFljkMgIUE',
	#     u'NaLyujWIjqbIaMzzlhIQ',
	#     u'http://www.gonzalez-davis.org/about/',
	#     u'SgYLUbyggbjujZHkZHDQ']

	fake.pystr(min_chars=None, max_chars=20)
	# u'EGUtpBJgftGvknQFinNL'

	fake.pystruct(count=10, *value_types)
	# (   [   u'SreCNfuTvGCOjRbQvEEL',
	#         u'YQNkaCZaTILzfTetulNu',
	#         u'https://butler-lewis.com/home.htm',
	#         u'https://www.watts.com/homepage/',
	#         datetime.datetime(1973, 4, 8, 20, 38, 18),
	#         u'https://smith.com/',
	#         u'knvxRPLXKMaWfCUdhPve',
	#         u'BkJXZEGnHEHiuybjhsvg',
	#         u'regina02@dominguez.net',
	#         datetime.datetime(1982, 8, 2, 5, 13, 41)],
	#     {   u'architecto': 5285,
	#         u'aut': Decimal('12320.5203'),
	#         u'ex': u'TEXgvfITTRBjddBvrqPf',
	#         u'expedita': Decimal('-41074040.85'),
	#         u'laboriosam': u'natalietran@lewis.com',
	#         u'laudantium': 7930,
	#         u'natus': u'http://barnes-mcdaniel.com/posts/list/privacy/',
	#         u'officiis': u'xHzrdSqnERJByDoaMPSd',
	#         u'quam': u'JXbkkLEAQtBYRfUjIars',
	#         u'vitae': Decimal('418840728.79')},
	#     {   u'commodi': {   7: u'duanecervantes@fisher.com',
	#                         8: [   9638,
	#                                datetime.datetime(2005, 11, 4, 13, 52, 3),
	#                                u'mbAsBUhgTIRzRpvStKDM'],
	#                         9: {   7: u'http://phillips-rosario.com/terms/',
	#                                8: u'flxoLpKQSWLGQFWoxCgZ',
	#                                9: [u'uDlKRMxzsxgXIQlRZvOn', 5685]}},
	#         u'illo': {   1: u'uTthloJIZsMYLOmSrkKI',
	#                      2: [   103,
	#                             u'benjaminrobertson@mathis.com',
	#                             u'kGeOkYxirNMNehhXJBrH'],
	#                      3: {   1: u'ksDXiHlyrrgZfkeEVEcq',
	#                             2: u'GipLHGqfjKikExZyjCbC',
	#                             3: [-90345175310.57, u'CqygqFuXqMEYUCiFKrZm']}},
	#         u'in': {   0: u'brucestephanie@gmail.com',
	#                    1: [   u'http://barajas.com/terms.php',
	#                           datetime.datetime(1980, 4, 11, 8, 44, 40),
	#                           u'WyzayqNrsaUxnGAOoQiS'],
	#                    2: {   0: u'https://www.vaughn.com/blog/privacy.html',
	#                           1: u'adbgZqwaLXYwxdaJLOEZ',
	#                           2: [   u'GMTXNzmmOPSfZBLYBhdC',
	#                                  u'oqAkCrxfKFEVCBrjZyOw']}},
	#         u'optio': {   8: u'AChbgUFeUYgSAhDVHAxM',
	#                       9: [   u'https://bailey.com/explore/tags/categories/search.html',
	#                              Decimal('6.61550909624E+14'),
	#                              datetime.datetime(2018, 5, 3, 11, 51, 48)],
	#                       10: {   8: 8920,
	#                               9: u'HkjcbBxBqvArtSJqcfYp',
	#                               10: [   2020,
	#                                       u'elliottkathy@tucker-romero.info']}},
	#         u'quae': {   6: 4253,
	#                      7: [   u'AalQwoztTDAIpXzPrXuc',
	#                             7363,
	#                             u'https://www.martinez-fowler.com/homepage.php'],
	#                      8: {   6: 1200.73925003,
	#                             7: -8276562842289.0,
	#                             8: [7818, -70789496.400672]}},
	#         u'ratione': {   4: u'MlAIiHbeViZiMPdHxiGA',
	#                         5: [   u'PHLOdAreQOKAdVqAHHOK',
	#                                datetime.datetime(1988, 2, 20, 6, 20, 25),
	#                                u'CGsQZcvgFrrGFKwzogON'],
	#                         6: {   4: u'wyrMoEPbngLsjVvImolp',
	#                                5: Decimal('311204.0'),
	#                                6: [   datetime.datetime(1995, 7, 7, 20, 21, 53),
	#                                       Decimal('-995.0')]}},
	#         u'similique': {   9: datetime.datetime(1977, 10, 16, 5, 10, 43),
	#                           10: [   datetime.datetime(1982, 12, 2, 17, 40, 45),
	#                                   u'http://www.chambers.info/home/',
	#                                   u'https://www.wood-johnson.com/homepage/'],
	#                           11: {   9: 6751759304.0,
	#                                   10: 8810,
	#                                   11: [1953, Decimal('3485.34556391')]}},
	#         u'sit': {   2: Decimal('-9.635'),
	#                     3: [   Decimal('-8.28935696182E+14'),
	#                            u'NEgHWQxXwdMJKfeWhqMa',
	#                            u'http://ramirez-harrison.com/categories/terms/'],
	#                     4: {   2: datetime.datetime(1975, 7, 29, 12, 52, 37),
	#                            3: u'housericardo@hotmail.com',
	#                            4: [   u'ohunter@taylor.org',
	#                                   u'http://bailey.com/app/register/']}},
	#         u'ullam': {   5: u'OQbXqLtzskeGzQUaSPfA',
	#                       6: [   u'https://lopez-miller.com/terms/',
	#                              u'christopher11@johnson-anderson.biz',
	#                              u'zfixXrVaESnnCrfSgqZK'],
	#                       7: {   5: Decimal('-9.7599791767E+14'),
	#                              6: u'EQNeIulCIWDAKEXuwbUc',
	#                              7: [   u'ifKoWSFJgSLgVeEEJMoq',
	#                                     Decimal('601182902408')]}},
	#         u'voluptates': {   3: Decimal('9.00014945959E+13'),
	#                            4: [   datetime.datetime(2008, 12, 9, 22, 2, 41),
	#                                   Decimal('7.91159197473'),
	#                                   u'uiIEAbjPGhJJZEOWNLQV'],
	#                            5: {   3: 211,
	#                                   4: 332,
	#                                   5: [   u'http://www.ramirez-schultz.com/posts/list/explore/search.asp',
	#                                          datetime.datetime(2007, 3, 19, 22, 59, 45)]}}})

	fake.pyfloat(left_digits=None, right_digits=None, positive=False)
	# 57505739685.7052

	fake.pydecimal(left_digits=None, right_digits=None, positive=False)
	# Decimal('-70104627.2963')

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   3822,
	#     6911,
	#     u'CQytOUzYFltlSKBeNeUR',
	#     u'HViCuEANPJnilupSzqYa',
	#     u'xeIypOpSFtkcvXFTeRpr',
	#     u'http://house.com/homepage/',
	#     u'http://lucas-harris.com/terms/',
	#     u'msjeqXQswsKDqbVtTBHB',
	#     Decimal('-8.40448027153E+12'),
	#     Decimal('73797420.92'),
	#     u'hzEBiOuTYtElnUciSybu',
	#     u'mEHwdSlLkOCalSDEhGqb',
	#     8927]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   4257,
	#     u'zvvDOVtuTLKmbTefJWAj',
	#     2220,
	#     u'nYthdCuqxBmvtEdXWhGr',
	#     1428,
	#     u'wmoss@rich-obrien.com',
	#     u'ndLPMWdpaHfQaryWeLBS',
	#     u'NPkuNZOlBfwCRxbsOJeu',
	#     -3045851.19)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'vkelly@hotmail.com', u'GFFarHzNPyxhgXmDiGTd', u'https://www.fitzpatrick.org/app/homepage/', u'fzSKdyHfgIRFcYLgyuik', Decimal('-4209631.343'), u'https://davis.biz/privacy/', u'HUUmdZjFTWKKSfiWMPtJ', u'jbWmwQrycuFcuMdAtnHu', u'http://ferguson.com/post.html', 14927.7086629, u'UrLzUffsxNZTiWMuyHkX', u'uLAQZuqVuDWVpmOVfckd'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'corrupti': u'hIhefPiNjGbVcivJiVMv',
	#     u'doloribus': u'UqZaTwuIdaFsMdvjmYhA',
	#     u'eligendi': u'OfRsmSOXTYzMVuJbRrsY',
	#     u'labore': u'hQCWcvzDCVQqxANqLedM',
	#     u'laboriosam': u'ZJRPdWavCtmCmIzrKecm',
	#     u'laborum': u'dOvpCdebvpBMnCKNaSmZ',
	#     u'non': u'https://sexton-thompson.com/homepage.php',
	#     u'odit': u'iCAgzrjlsmOtxCxqWdcz',
	#     u'ratione': -530217503.433269,
	#     u'veritatis': u'ZHdHFNzVPlVQtJAtnWKf'}

	fake.pyint()
	# 6445

``faker.providers.ssn``
-----------------------

::

	fake.ssn()
	# u'385 311 824'

``faker.providers.user_agent``
------------------------------

::

	fake.mac_processor()
	# u'U; PPC'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/2015-08-08 13:00:04 Firefox/3.8'

	fake.linux_platform_token()
	# u'X11; Linux i686'

	fake.opera()
	# u'Opera/8.70.(Windows NT 5.01; eo-US) Presto/2.9.171 Version/12.00'

	fake.windows_platform_token()
	# u'Windows NT 6.0'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.01; Trident/3.1)'

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.7.20) Gecko/2014-08-10 04:32:32 Firefox/5.0'

	fake.linux_processor()
	# u'x86_64'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_5) AppleWebKit/5332 (KHTML, like Gecko) Chrome/38.0.898.0 Safari/5332'

	fake.mac_platform_token()
	# u'Macintosh; PPC Mac OS X 10_6_6'

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_7 rv:4.0; fur-IT) AppleWebKit/535.12.4 (KHTML, like Gecko) Version/5.0 Safari/535.12.4'
