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

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

::

	fake.latitude()
	# Decimal('-12.1083855')

	fake.street_name()
	# u'Brenda Views'

	fake.address()
	# u'5475 Thomas Cliffs Suite 043\nPort Francisco, PE X2A 1N1'

	fake.street_address()
	# u'6721 Hunt Stream Apt. 277'

	fake.postcode()
	# u'53434'

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

	fake.longitude()
	# Decimal('118.278428')

	fake.country()
	# u'Jordan'

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

	fake.postal_code_letter()
	# u'Y'

	fake.province()
	# u'Yukon Territory'

	fake.city_prefix()
	# u'New'

	fake.city_suffix()
	# u'furt'

	fake.building_number()
	# u'337'

	fake.street_suffix()
	# u'Motorway'

	fake.secondary_address()
	# u'Suite 971'

	fake.city()
	# u'Coleside'

	fake.province_abbr()
	# u'BC'

	fake.postalcode()
	# u'R7Y2C1'

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

::

	fake.license_plate()
	# u'YYKE 715'

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

::

	fake.bban()
	# 'AJGK5972865080736'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB64VAXC2345314526961'

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

::

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

	fake.ean13()
	# u'4567275215592'

	fake.ean8()
	# u'29092284'

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

::

	fake.rgb_css_color()
	# u'rgb(39,134,41)'

	fake.color_name()
	# u'Azure'

	fake.rgb_color()
	# u'9,221,43'

	fake.safe_hex_color()
	# u'#aaff00'

	fake.safe_color_name()
	# u'black'

	fake.hex_color()
	# u'#37729a'

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

::

	fake.company()
	# u'Pennington-Cunningham'

	fake.company_suffix()
	# u'and Sons'

	fake.catch_phrase()
	# u'Digitized composite instruction set'

	fake.bs()
	# u'optimize mission-critical methodologies'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'Maestro'

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nMichael House\n4362388952809633 03/22\nCVC: 748\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'SRN'

	fake.currency_code()
	# 'RSD'

	fake.currency_name()
	# 'Saint Helena pound'

	fake.cryptocurrency_name()
	# 'AMP'

	fake.cryptocurrency()
	# ('XPM', 'Primecoin')

	fake.currency()
	# ('RSD', 'Serbian dinar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 31, 22, 49, 51)

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

	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(1998, 10, 20, 9, 57, 46)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2012, 12, 28)

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

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

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 4, 15, 20, 29, 1)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2005, 1, 29)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 8, 9, 1, 6, 22)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1981-05-06'

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1984, 4, 19)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 5, 12)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1971-04-27T22:43:59'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2000, 8, 5)

	fake.month()
	# '08'

	fake.year()
	# '1986'

	fake.day_of_month()
	# '10'

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

	fake.timezone()
	# u'Europe/Bucharest'

	fake.century()
	# u'VI'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1988, 6, 15)

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

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 9, 21, 20, 45)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2009, 7, 18, 12, 18, 48)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '16:27:40'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 15, 20, 24, 47)

	fake.month_name()
	# 'October'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1432, 12, 7, 9, 18, 22)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(798, 13942)

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

::

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

	fake.mime_type(category=None)
	# u'multipart/encrypted'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/consequuntur/corporis.csv'

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

	fake.file_name(category=None, extension=None)
	# u'ipsam.numbers'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'xschroeder@yahoo.com'

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

	fake.tld()
	# u'net'

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

	fake.url(schemes=None)
	# u'http://rodriguez.com/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'faq'

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

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

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

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'nathanmichael@martin.info'

	fake.domain_name(*args, **kwargs)
	# u'johnson.com'

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

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

	fake.slug(*args, **kwargs)
	# u'id-fugit-molestias'

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

	fake.company_email(*args, **kwargs)
	# u'daniel38@russell.info'

	fake.uri()
	# u'http://cook.com/index.htm'

	fake.ipv6(network=False)
	# '728c:d953:647c:ac37:8d0c:650b:5255:c8d9'

	fake.free_email(*args, **kwargs)
	# u'stevewalker@yahoo.com'

	fake.ascii_safe_email(*args, **kwargs)
	# 'irhodes@example.com'

	fake.mac_address()
	# u'27:ea:14:50:0c:c7'

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

::

	fake.isbn10(separator="-")
	# u'0-511-14665-5'

	fake.isbn13(separator="-")
	# u'978-0-7819-3487-9'

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

::

	fake.job()
	# 'Cytogeneticist'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Dicta asperiores dignissimos iste.\nCumque rerum ipsa ratione suscipit. Debitis veniam ex amet quidem hic doloremque.\nTempore dolorum atque quia. Atque a magni debitis dolore maiores.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Dicta iure quidem accusantium accusantium consequatur.',
	#     u'Corrupti maxime blanditiis eaque deserunt aliquam. Voluptates incidunt veniam cum distinctio placeat. Magni magnam officia ipsam cupiditate consectetur.',
	#     u'Cumque quibusdam error nemo repudiandae. Laudantium necessitatibus qui sunt odit facilis at totam. Exercitationem culpa unde at facilis veniam blanditiis.']

	fake.words(nb=3, ext_word_list=None)
	# [u'libero', u'eveniet', u'nihil']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Deserunt blanditiis dolorem nemo est dolores.',
	#     u'Quidem veniam delectus.',
	#     u'Eveniet vitae quod minus consequatur.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Accusantium veritatis incidunt repudiandae. Et provident quo magnam. Esse tenetur dignissimos voluptatum. Consequatur eligendi itaque natus nulla repudiandae dolore.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Quae rem maiores labore perspiciatis error.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'm0U&(CWU&i'

	fake.locale()
	# u'raj_IN'

	fake.binary(length=1048576)
	# bytearray(b'\xfbT\x81\x80P\xf0\x94`F\xe7\x0f\xe2\xd3\xb6\xa2\xc8k\xd9\xb5\xaa\xf6\xf4!\xd4\xe1?\xa0\xa5\xa5\xc4\x10\x05\xb3\xc0E\x17\xaf\xb3\x97&\xea\x18\xa2d^{?K\x9a\xcd\xa8)l\xed\x89C\xfa\xaf\xbbZqV\xb9}c\xa7\xe2m9\xcbe\xfd\xa8,\xf2\xbb#\x94%\x034hD\x81\xb4\x82\xa6\x00\x0e\xbek\xff\xf7\xc6\xd1C\x8b\xcd\xef\xf7u6\x98sT%E\xfft\xf7f$\xaf\x96\xcd\xce+|\xda\xa0\xe9\'2Sx\x05%4Jo\x04\xc9\x8f\xde\xeb`\x07a\xba\x8c\xa5\xd9;\xc0\x01HM\xd5DQ3\x87,B\xebkK\x82\xf4#z{\xe2\xfc\x98\x8dj\x06E$\xea`\xe7&\x8fV\xb4\x15_\xa1tnw\xfdI\xcd\x8b\x04\xee\xbf/?G\xcdh\x87\xd2d\x97\x99\xc0_\xe3[\xfb\x0b\xeb$u\x11\xa4\x08\x90$^\xf4\xaei\xfbq\x11:\x83\xbb\xc5\x98\xd7\xf9\xf0\x9d\x14\xfcz|2\x1f\x83\xa1N\x0f\xa6\x13 rT\xcf3/\xbf\xe4\x06)VS\x8fw\x8f\xdb&n}\xca\x82%\xe2w\x0e{\x8b\x1e\xabK6\x87\xd5{\xec\x04\x05\xaer\t\xc9\xc8\xbbR\xa7\xfa/\x0eb>\x13F\xfb\x02\x8b\xa8[\x01s\x16\x933\'\xcd\x8d\xf6\xc6\x9e\xbe\xfddf\xf3\xb6\xa0\xf2\x073\x9e\xf9h\x88Z\xc9\xc3p 7\xec\x08\xbd\x9e\x1c\xd8\x9fj\x98\xb0\xd7\xf2\x7f\xdb"\xcb\xb8r`\xb1\xb4f\x98d|5\xa5\xd0\xd9Z\xff\x1b\xe72\xf5\xe5\xc2\xd8A\xb3\xda\xc3\xf8\x0fD7\x00\xb5\xc8\x14\x87*E\x95\xb1\xc7\x84\xf2\xc6\xf3\x81_e\x12\xe41\x82\xf4\xc5\xbe5iN\x94\t_\x16\x12i2Om;\xaf\xc7\x02=\x92&\xd9\xd5\x7f\xe3\xeb\xb7\xdb7y\xda#\xfd\xa6\xb6\xa3\xe5G\xcd\xd7)\\A\xa7\x90\x04X\x0b\xd2j\xb0\x10\xcasV\xe4\x9e=\x81\xde\x9c>\xae\x97\xcc{\x06$\xb9\xafa\x8c2\xa6\xdfg\xf5\x12L\x1cP\xf8\x9ag\xcb\xb4\x8c\xcda\xe1\xa5\xd8\xe0D\x93!fI:\xd7\xd2E\xee6s\xf8\x08V\xbb\xf1\xc0ig\xc0\xcbT\xcc\xf5\xa9\x1c}\xf9\xe8\xcb\xb4\xf4\xcf\xaaUM\x91jF\x8d8\x08\xdb\xd2\xf1\xae\xb7\x86\x96\xe7\xa1`\xa0\xdbn\xd5\x96\x01\xb6\xa7\r\xde\x13\xd1q\xb6%\'9n\xb9\xdf\xd4=U\xff\x9d\x80\xdb\xc8\x9d\xda\x18\xf8\xf8\xc3\xb8%\'$\xb8\x88-\x11\x0ep\xfc\xb2?\'\x8e\x0c\x9a\xc1g\xcaT\x95d|#x\x07\\\x1c\x93\x07\xc0\t\xb8\xb9@Z`,tJ\xb9\xac\x83\xdb\x98V\x9d\x8f89\x04\xca\x16\x01w\x9f\xe5w\xfb"\xf0\x11=>\x90\x9b_\x81\xe9\x15\x9ed\xcf\x18\xb4\xdf&_\x1cNqO\xdfud\xc7$\\B\xc5\xe4\x10\xca\x8bF\x03\x86\x9fM[\xd6\xf1\x02j.\x13sK\x0b\xba&\xb8\xealV{%r,\xc51\xac$\xc0M\'yj\xed^c|G\xc5\x13\x99"\xcbV\x16\xd4\x9f\xacF\x80\x8b5\xcbDz\x80\xcc\xa94\xd7/{\xa2\xc6\x95e^\xce\xe4\x96\xef^\xc7s6\x97U\xa5\xc1u\x8fBy\x80Y8\x0f[\x93v{WaV\x8bY\x875:1G\x02\xc1\xa4\xe4\xcc\x93g\xd9m\x11\xe9njW\xfa\xd5\xc6$\xdf~nN\xd2\xa4\r\xe0\x8c\x06X\xf3d^\x85\x97\xd4*Z\x8c\xb1\xfb&\xc9vRo\xda\xc0\x9b0\x07T\r\xb7\x80L\x8d\x86S\xca\x98\x82U\xdcJXH\xd3\xc5[1\xe9\x85\xc4\xaa\xe65]\x10l8\x8bR\xa5\xd2\x93\x04\xac\xf8\xf1\x84y\xa4\xd0\xc9\xc1\xfb\xbdp\x9b6,\x15\xdf\xf5\x170\xef3.\'\xb23\x98\xbe\xf66C\xff\xab"\x0e\xfaS\xed\x93\xec\xf5P\xe8\xf3;\x06\xf5\xcfF-\xa4\xbco\x8b\x8b\xb2_f4\x16\x906#\x96\xbaw\xfa\xc8;\xdf\xef\xba-S\xe3\x84q\xa2\x80\xe7\x0b\xc2t\x8e\x05C\xc1\x01\xd1F\xee\x1b~\x01\x023\x97\xbaW\xd9\xc8\xd6\xb1\xb0\xd49w\xd0\xe3s*\x94\xe2\x15i\xb5\x89m2\xcd\x83\xaa\xc2\xef\xb5J\x02\x98\x14\xda\x03\xf3\xdd\x16\xda|hT\x0e\xea\xb6\xa5\x9c\xfe#m:\xa84\x8aX\xdfy\x83\xddlF\x0fb\x11\xefa\xf4')

	fake.md5(raw_output=False)
	# '06641ea9813d7e074be7879612e82911'

	fake.sha1(raw_output=False)
	# '949cdf6ca606fe5eb3a2d119d62bb7d979727222'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '520793a3cea3adc0cf7e92395af5f6b98c3ba3c1a64f3d0160698ffff55ab69d'

	fake.uuid4()
	# 'e10d1f5f-ff03-f33e-3a69-ed9d9d8ef9f2'

	fake.language_code()
	# u'apn'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Franklin'

	fake.name_female()
	# u'Tammy Church'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Miss'

	fake.name()
	# u'Deanna Dean'

	fake.suffix_female()
	# u'DDS'

	fake.name_male()
	# u'Mr. Jeffrey York'

	fake.first_name()
	# u'Kyle'

	fake.suffix_male()
	# u'PhD'

	fake.suffix()
	# u'DVM'

	fake.first_name_male()
	# u'Christopher'

	fake.first_name_female()
	# u'Kristine'

	fake.last_name_female()
	# u'Pearson'

	fake.last_name()
	# u'Anderson'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'1 (536) 076-0105'

	fake.msisdn()
	# '4722692254021'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'182 Jessica Island Suite 800\nLake Jasonberg, BC N9G5G4',
	#     'birthdate': datetime.date(1947, 11, 19),
	#     'mail': u'robert14@gmail.com',
	#     'name': u'John Brown',
	#     'sex': 'M',
	#     'username': u'tammy06'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'8916 Baker Summit Suite 465\nCraigmouth, MB M3J 2G8',
	#     'birthdate': datetime.date(1910, 3, 15),
	#     'blood_group': 'AB+',
	#     'company': u'Alvarez, Jones and Carroll',
	#     'current_location': (Decimal('-22.682412'), Decimal('-24.161255')),
	#     'job': 'Claims inspector/assessor',
	#     'mail': u'russell69@gmail.com',
	#     'name': u'Timothy Johnson',
	#     'residence': u'0710 Ross Fords Apt. 832\nNew Christophermouth, NT J6R 4H8',
	#     'sex': 'M',
	#     'ssn': u'447 711 300',
	#     'username': u'phoffman',
	#     'website': [u'http://www.moran-white.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   371,
	#     datetime.datetime(2007, 3, 5, 14, 1, 54),
	#     u'JWZgZPIHwIDePyeULGIj',
	#     u'christopherhunter@yahoo.com',
	#     u'stephen95@nelson-houston.com',
	#     u'fdUplsWwsKUOnoAGILhK',
	#     8896]

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

	fake.pystruct(count=10, *value_types)
	# (   [   340365.77,
	#         u'trandeborah@hotmail.com',
	#         u'rreyes@yahoo.com',
	#         -598710959.14,
	#         Decimal('6.32024128'),
	#         u'yqIqubxcyOleXfuNfApM',
	#         3876,
	#         u'http://simpson-brown.org/',
	#         -33587814.1778,
	#         Decimal('306.0')],
	#     {   u'animi': u'jessicasimmons@hotmail.com',
	#         u'distinctio': u'ZDUTxdCcgUrEsMvVDWgy',
	#         u'dolore': u'tNxhLdwmcgCXpWolQHlE',
	#         u'eligendi': datetime.datetime(2001, 4, 15, 7, 11, 13),
	#         u'maxime': u'hSzhMsOJTecaPUmjSzNP',
	#         u'porro': u'OqIBIPktRMBELxxeeFyR',
	#         u'saepe': u'mNXvVTlpaKvKmxqNgWXS',
	#         u'similique': 8812,
	#         u'tenetur': u'XpoijLoauAKSvsqWrKPA',
	#         u'vero': u'http://www.wong-lowery.info/register/'},
	#     {   u'a': {   4: Decimal('5.91030272359E+14'),
	#                   5: [   u'ETSkVZSeYZHLxDJhlcoQ',
	#                          1125,
	#                          u'GZZBXHwBaZlMcxzwIlPo'],
	#                   6: {   4: u'saTGJVvxdfbQWEgmYCyF',
	#                          5: datetime.datetime(2003, 8, 1, 15, 27, 34),
	#                          6: [   u'XCcTXvaGmLOMyISxKtFF',
	#                                 datetime.datetime(2008, 1, 20, 13, 2, 44)]}},
	#         u'adipisci': {   6: u'PgBYfgrHfQqIiGmGRZEz',
	#                          7: [   u'VjFrAnLjlmTpUSjCriPv',
	#                                 u'upWpBtGgAVvZaqwBlFBN',
	#                                 Decimal('-8.33932368')],
	#                          8: {   6: u'yOwkKypXkaFQVyvpaYcd',
	#                                 7: u'renee31@reed.com',
	#                                 8: [u'iDjYNMxlwYozDMPmjDYf', 8098]}},
	#         u'ea': {   7: 8530,
	#                    8: [   u'LtAjvVDAkmDrzTgRvIYV',
	#                           u'PdhMLXLwQgJsoukQOdHs',
	#                           Decimal('-6583.4')],
	#                    9: {   7: u'rpsmbNaBsFTxFMtJcrBT',
	#                           8: 4796,
	#                           9: [   u'RriISwvpwprOhZyaMtQI',
	#                                  u'smithalbert@young-howe.com']}},
	#         u'expedita': {   3: u'UjDmoAhmkEdkBefDfxOK',
	#                          4: [   u'BhckDbFtHjBQouOSicqw',
	#                                 u'https://turner.com/register.html',
	#                                 4253],
	#                          5: {   3: u'pvtojIcqbautcwigvPnM',
	#                                 4: u'patricia17@hoffman.com',
	#                                 5: [   u'qRgANkuqyhkRLdUxssFJ',
	#                                        u'EvDiPtRqyzSLjZsddcYv']}},
	#         u'iure': {   1: 5624,
	#                      2: [   637.38689782,
	#                             u'tGGiiorrSYerPigrKAnb',
	#                             u'AqUUXdXlBVrcijjmvDDc'],
	#                      3: {   1: u'KYPqhHLdFGxACWLaYojZ',
	#                             2: 5537,
	#                             3: [   u'http://vazquez-gregory.com/explore/posts/privacy/',
	#                                    -9398663.38]}},
	#         u'minus': {   8: u'SbJqREFgJidUoVtAhGkI',
	#                       9: [   u'FIUSTcWQKNdATghjUTvc',
	#                              u'http://www.sheppard-salazar.com/register.jsp',
	#                              u'nRAusSCIJWKmSRBnpZFm'],
	#                       10: {   8: u'http://nelson.org/category/categories/categories/privacy.htm',
	#                               9: 980,
	#                               10: [   Decimal('-6189845746.32'),
	#                                       u'zljekOdeujtKlVWYACsK']}},
	#         u'perferendis': {   9: 9923,
	#                             10: [   u'xlLFFWNxAbSvBfaenwZl',
	#                                     u'bgCkYDGRZTNxbIwVuOSI',
	#                                     Decimal('47577.1087')],
	#                             11: {   9: 6706,
	#                                     10: u'mcdanielmakayla@young.com',
	#                                     11: [   datetime.datetime(2001, 12, 13, 6, 26, 7),
	#                                             u'pppebVWxokkgLHspNLHw']}},
	#         u'quae': {   5: Decimal('-3560220435.49'),
	#                      6: [   u'vross@yahoo.com',
	#                             u'sLXMlyedqxmRvdTbumJh',
	#                             u'CnpvdqADjTqXeDSLuukd'],
	#                      7: {   5: u'pwLvgQELwMebtNZjsEhd',
	#                             6: u'alicia70@padilla.com',
	#                             7: [   u'scastaneda@hill.com',
	#                                    u'zQEPuPhYPymQMheCuNEi']}},
	#         u'tempora': {   2: u'http://www.baker.net/',
	#                         3: [   -1323.83086343387,
	#                                8808,
	#                                u'wlnWNzlRwoPBKXrPMJre'],
	#                         4: {   2: datetime.datetime(2006, 1, 10, 2, 18, 38),
	#                                3: datetime.datetime(1987, 6, 11, 15, 57, 28),
	#                                4: [   u'BNgrfPqWNaVathiYxLrV',
	#                                       u'tcXDjsjMnmBXAdweFLPL']}},
	#         u'voluptas': {   0: 99.272804420555,
	#                          1: [7593, u'hNVxCxWUlNDAgjjtQYhJ', 205],
	#                          2: {   0: 36502539319744.0,
	#                                 1: u'xsFqSbjhiSkkHBqzMKpp',
	#                                 2: [7779.6788784, u'hhrSQwYelhIiUGYnQDLd']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'vbHGBuwOmysWEuLPFwfC',
	#     4745,
	#     u'HmRhRiRhfXHkKCvGbENc',
	#     u'SnxfcFtwPgCcVSuFOQDQ',
	#     u'https://www.white.com/search/wp-content/category.jsp',
	#     762,
	#     Decimal('71863704.6265'),
	#     u'ktvHLiVCWgDGGolqvAZc']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'NpYdQtUaKudcmcYHXOqM',
	#     u'GZIJuwneCqHIKtuwNRbU',
	#     2.43424709,
	#     85666943303807.0,
	#     u'traci85@ramos.com',
	#     4717,
	#     6002,
	#     Decimal('3233457.32424'),
	#     u'ZFBPoDMTyzjQxeciTKkm',
	#     u'NjMEseiCqBqSRkjoIWpf',
	#     u'kmJNTCXCEFYIWsXXHXpv')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([5954, Decimal('-1716.733044'), u'KFpaEZmGlPDYvjOWvFdC', u'ZyzgeKFvrhqBqcYhuVDw', u'yiGXipVPFogFesLVmspa', u'cbRHvuWRzmuNplcJFevc', 8664, 1404])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'ab': u'PQQtAQqfpubCWYdLkZpu',
	#     u'aliquam': u'nwjbrrojsZFbJICWFcRk',
	#     u'beatae': u'QDKWXFGGFIZITLnPmMIk',
	#     u'excepturi': -507562056745.2,
	#     u'fugit': u'williamlee@yahoo.com',
	#     u'harum': datetime.datetime(1983, 3, 15, 2, 28, 13),
	#     u'incidunt': u'hjones@dorsey.com',
	#     u'laborum': u'TWfXBQItsqgXnoRBDXaa',
	#     u'numquam': u'EhCLzXlfKZKjeZzcrJmu',
	#     u'repellat': Decimal('2705700336.4'),
	#     u'voluptas': u'john52@yahoo.com'}

	fake.pyint()
	# 9727

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

::

	fake.ssn()
	# u'256 448 069'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows 98; niu-NU; rv:1.9.2.20) Gecko/2013-01-14 07:52:53 Firefox/5.0'

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

	fake.opera()
	# u'Opera/8.33.(Windows CE; doi-IN) Presto/2.9.169 Version/11.00'

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

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 9.0; Windows 98; Trident/3.1)'

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5310 (KHTML, like Gecko) Chrome/19.0.813.0 Safari/5310'

	fake.linux_processor()
	# u'x86_64'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5341 (KHTML, like Gecko) Chrome/40.0.865.0 Safari/5341'

	fake.mac_platform_token()
	# u'Macintosh; U; Intel Mac OS X 10_11_9'

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6 rv:4.0; iu-CA) AppleWebKit/531.12.3 (KHTML, like Gecko) Version/5.1 Safari/531.12.3'
