
Language de_CH
===============

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

::

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

	fake.building_number()
	# u'1483'

	fake.street_address()
	# u'570 Hoffmann Fall Apt. 454'

	fake.postalcode_plus4()
	# u'09963-1696'

	fake.city_prefix()
	# u'West'

	fake.military_ship()
	# u'USCGC'

	fake.city()
	# u'Lake Ramona'

	fake.zipcode_plus4()
	# u'90409-1318'

	fake.state_abbr()
	# u'NJ'

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

	fake.street_suffix()
	# u'Springs'

	fake.city_suffix()
	# u'haven'

	fake.military_dpo()
	# u'Unit 0425 Box 5988'

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

	fake.country()
	# u'Germany'

	fake.secondary_address()
	# u'Suite 858'

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

	fake.postalcode()
	# u'73397'

	fake.address()
	# u'194 R\xfcegg Spur Apt. 930\nJonton, MA 85409'

	fake.state()
	# u'Utah'

	fake.military_state()
	# u'AP'

	fake.street_name()
	# u'Ute Meadows'

	fake.zipcode()
	# u'87812'

	fake.postcode()
	# u'73589'

	fake.military_apo()
	# u'PSC 0235, Box 3098'

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

::

	fake.license_plate()
	# u'WWO 863'

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

::

	fake.bban()
	# 'MUSK1558227647232'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB17QFUN3021433019870'

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

::

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

	fake.ean13()
	# u'9494436587555'

	fake.ean8()
	# u'60369758'

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

::

	fake.rgb_css_color()
	# u'rgb(136,147,113)'

	fake.color_name()
	# u'DarkOrange'

	fake.rgb_color()
	# u'179,129,125'

	fake.safe_hex_color()
	# u'#eeaa00'

	fake.safe_color_name()
	# u'blue'

	fake.hex_color()
	# u'#8e0437'

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

::

	fake.company()
	# u'Kaiser, Ammann and Portmann'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Programmable optimizing hierarchy'

	fake.bs()
	# u'seize turn-key vortals'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 19 digit\nLudwig Eichenberger\n4961255092946984000 09/24\nCVC: 850\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'SRN'

	fake.currency_code()
	# 'LTL'

	fake.currency_name()
	# 'Guinean franc'

	fake.cryptocurrency_name()
	# 'Auroracoin'

	fake.cryptocurrency()
	# ('WAVES', 'Waves Platform')

	fake.currency()
	# ('UZS', 'Uzbekistani so\xca\xbbm')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 28, 3, 32, 2)

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

	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(2015, 6, 10, 1, 34, 55)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 3, 21)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 12, 23, 27, 7)

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

	fake.day_of_week()
	# 'Friday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 1, 30, 7, 6, 3)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2009, 3, 5)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2002, 12, 24, 4, 17, 19)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(2000, 8, 14)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 4, 13)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2015-01-22T12:58:25'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2010, 7, 27)

	fake.month()
	# '11'

	fake.year()
	# '2005'

	fake.day_of_month()
	# '22'

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

	fake.timezone()
	# u'Africa/Libreville'

	fake.century()
	# u'IX'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1964, 2, 16)

	fake.time_object(end_datetime=None)
	# datetime.time(20, 6, 31)

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

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2013, 11, 18, 15, 53, 24)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '20:34:34'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 28, 5, 54, 59)

	fake.month_name()
	# 'July'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(559, 5, 29, 17, 46, 31)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(11177, 45424)

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

::

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

	fake.mime_type(category=None)
	# u'image/tiff'

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

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

	fake.file_name(category=None, extension=None)
	# u'saepe.jpg'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'vanwinkler@gmail.com'

	fake.image_url(width=None, height=None)
	# u'https://www.lorempixel.com/298/597'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'rothgokhan@kaufmann-sporri.com'

	fake.url(schemes=None)
	# u'https://www.schweizer.com/'

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

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

	fake.uri_extension()
	# u'.asp'

	fake.uri_page()
	# u'terms'

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

	fake.safe_email(*args, **kwargs)
	# u'massimomuller@example.org'

	fake.ascii_email(*args, **kwargs)
	# 'aurelie71@hotmail.com'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'harry10@lustenberger.info'

	fake.domain_name(*args, **kwargs)
	# u'steinmann.biz'

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

	fake.domain_word(*args, **kwargs)
	# u'maurer-sidler'

	fake.slug(*args, **kwargs)
	# u'officia-quos'

	fake.uri_path(deep=None)
	# u'app/blog/main'

	fake.company_email(*args, **kwargs)
	# u'musa08@brun.info'

	fake.uri()
	# u'https://www.michel.net/'

	fake.ipv6(network=False)
	# '92b0:60da:5765:7ad6:897b:5cd8:b7d2:3037'

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

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

	fake.mac_address()
	# u'12:99:b8:62:5e:8b'

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

::

	fake.isbn10(separator="-")
	# u'0-562-87373-2'

	fake.isbn13(separator="-")
	# u'978-0-9827515-5-8'

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

::

	fake.job()
	# 'Control and instrumentation engineer'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Totam animi doloribus. Vero soluta sunt a neque voluptatibus eos. Rem laudantium accusamus vel pariatur deserunt.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Repellendus impedit ab soluta adipisci numquam quos. Illum exercitationem quo laudantium. Fugiat repudiandae unde est possimus. Repellat aliquam recusandae odio blanditiis alias.',
	#     u'Quia optio harum veritatis. Quas animi quia vero odit explicabo veniam.',
	#     u'Officia dolore id possimus nisi.']

	fake.words(nb=3, ext_word_list=None)
	# [u'tempora', u'adipisci', u'nobis']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Aut velit impedit alias quis.',
	#     u'Quisquam quae occaecati magnam consequuntur excepturi.',
	#     u'Nihil libero autem qui.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Unde occaecati ipsum fugiat similique repellat dolor. Hic itaque sequi iste.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'In cumque laudantium quo sequi.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'+6ILCEHzxy'

	fake.locale()
	# u'pt_PT'

	fake.binary(length=1048576)
	# bytearray(b'\xd5\xf3\xbfrc&\x9e\x12?\xfa\xeac\x9f8P\xacj19\x911V\xa9\xb4\x001,\xe8\xc6\xb1\x1fYe>\xac\xa7h\x87\xea\xefb\x83\x8av\x05\xf7j\r\xcf\xc2\xd2\xd24\xeecI\x8e0\x83g\xa3\xc6\xa2\xd3(\x8b\x8c6\x8b\x92m\xe1\xac\xac\x037\x86\xcf\x83\xfb\x15\xaa${\xacb\x19\x88\xff\x8f\xf7\x84\x98\x99\xceh\xe4,C\xf7\xbf\x07\x11\x02\x15f3:jo\xa0-\x93H \x8c\x81\'\xe4\xa0=\x8e\xbc\x87\xebZ\x82\xa1\xc2\xa8n\x1f\\a"\x93\xf2\xccv\xd5\xbbR\xde\x94\x0c<\xb9\x10\xce\x1c9;\xc3\xda\x1cD\x15\x1b\x10SC\x13\xcd\x0e\xe7\x9e\xa8#T\r \x19\xe9>\xe8G+\x03\x90\x9e\xc2k\x05\x85DM\xfb,f+;\xf0\xe3\xdb\xe7D#\x01!\x8d\x9e\x8dE.\x1e\xda\x86\xa7\x12F\xe6\xd9\xb1\x0f}\xe2M\xb6\x19\x10\x97=lJ\x05\x8ce\xd8\xe3q\x8eD\x16\x86\xee\xf2pN\x1c\x8b\x1e\nB\x1b\x94f~m"\x13U\x1e\x9d\xc9Y&\xac\xfa\xc74\x0b\xeb\x99\x9dA\xb5\xe2\x11\xe0\xcb\x9c\xa9\x84\xb2\x86\t\xf3\x08\n~\xa2l`\xf4\xd6\\\x05\xf0\x02\t\x922\x0e2\x0c\xab\x07:\xcb\xed\xe1\'^\x8c?\xa6\x90m~\x84aN\x7f\xb0\xa9\xfb\x8c\x96p\xf4\xea\x1c\xa9a\xdc\x18\x00\x06D\xf5\xa0\x99\x02\xa2S\r\x9e\xab\x9eo(\x14\xad\x98\xb1\xf9\\\xfe\x97B}\xf85zjv\x88\xc3\x03\xff&)\x1aC\xd8\x86&\x0fk\xa7\x18\x12\x17\xb8\xd5\xe9&\x1f\xf8\x00\xbb\'@|\xc4\x84y\xf3P\x15CU\x99Q\x96!)tR\xb9@~K\x003\xfb\xc4\x14PA\x0e0\x9e\xa2e`\x193\x06\xbd\xff6\x8d\xc2\x1f\x80\xf9\x9c8_c3\x87\x90\xa4\xd6$\x90\x15\xdbQ&O\x87H\xaf\xa9\x9e\xa8\x84\xc8\x8fM/Sw\x8e\xdd\x17\x1f\x8a\xd9\x8d\xa3\x04\x18\xec\xf9\xd6\xb1\xc6\x06/<=7\xb4\xb7\x13\x95\xa1w#\x89"\x1a\xe3\xc2B\x16x>C2\x80\xf2\xe49\xd0\xb8\xcaG\xdf\x8aE\x0b\xdc\x8b\xcf\xa5\x072>\x95\x1e<\x95+_\xceA\xd0\xdfB\x19(\xb5\xf3\xba\xa8N\x05\xd6\xb6\xe9Dy\xee\xb9h\x7f\xe2m\'u\x1e\xe1\xd6\xb9B\x0c1\x10=\xcf.\x08\xd4B\xa4\xd6\xac\x8e\xa7\xa6\x15\xe9\x92\x07\x08:\xb9\xfd\xb7a\xbe\xc6O\xf8\xff\xaa\xe2{g\xff\x13\xe9\xbf{\x1b-d_R\x05\xf6\x89G\xf5\xc2\xd0{\x86\x97\xdb:_tq\xac\xf8%\x1c9\xd1\x99_\xe4\xd7z%\xfe\x8as\xc7\x8d\xa1\xa5M\xf6\xfeWv\x1fq\xa2\x11 \n#\x84\x99<D\xa2k\x94m\xca\xcb\xac\xc0\xfe<31\x1dE\t\xa7\xc2f\x08@%\x98\xd2D\xee\xf8\x19\xc5\x12\t\x02.9\xd9\xbe\x88:f\xfb`\xc2\xf7\xffY9a\xb0\x14?\x88_\x1cE\xd5DX\xb7\x94rO\xbb\xee\x91\x10\xa5\xe5\xc34\xbc\xcf\xc3SI\x89(W\xb4M\xfbz\x03\xf8\xc8\xd1\x04<\x9d\xd6\x8bE|\x88\x07D)1\xf3A\xc6=\x11\x15)#\xe0z\xcc\x8a3,+W"I\xc7\x1a\xa4\x93\xa0\x1f\x00\xbd\x06\x92Q\xb4\x92iJO\xf3g\x13\x14\x91\xde\xfc\xc6\x13\xc0\x88\xd1<\xf6\xd2\x88\xe4\xba\xfc\xe8\xdaj1\xfa\xf4\x8aN@\xab\xe8\x1a{\xebp\x852\xdfVO\x93\x00\xc3Cd\xdar\\IM\xce\xc4\x02&\x82x3R\xbehm\xfb\xb0[#T\xf1\x8fb\x1ec\xbaP\xf9\xc1\x13\xef\x8fb\xa0jD~\x0b\xf90\xca\'E\xb3h\xee\xa5\xbf\x1d9\x83x\x12\x9f\x0f\xce<\xc1\x1c\x17\x86\x80 \xea(u\xc6\xc9K\xe8bL`\xa4k\x84\xcc\xd6\x08\xa3\xdd\xe6\xff\xc9\x955a)^\x04\x133\x9ee\xa2\xa1\x85\xe0\xbb\xeb\x15f\x18\xdes\x89\x12\xaa4\xc9\x05\xa1\xfa\x98\xb8\xec\x85\x87k\x8e\x1e\x87U1\x1c\x15\xf3\x0e\x96C\xd5sxLS\xe5\x88[\x0e\x1b\xd0\xb0\xa89N\x91*\xc9\xb8\xfb\xd6\xa5\t\xad\x9e\xd7\xb0\xef\x19\x83\xb2\xf9\xa09\xb0<V\x92\xc5?\x15I\x03\xba\x8cZq\x1a\x16r\xd0\xb3\xa0\xad\'|{\x193\xb0\xe9\x11\xbb\xbc[\x9b\xd8\x17Ix\xea\xa2\x19\xa3^')

	fake.md5(raw_output=False)
	# '09e97db0258c41843f4cc7de9a39527b'

	fake.sha1(raw_output=False)
	# '26ef66a82ac6e3789990bcd6dfa3d7e403fab461'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# 'd8f9f1f4f9600d085c184035d7dd004f5c39a789ad6a4abe5bb41d54376112c1'

	fake.uuid4()
	# '1f7bdf78-160f-6b57-972e-1a30558aecc3'

	fake.language_code()
	# u'lb'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Martin'

	fake.name_female()
	# u'Dr. Ryan Lang'

	fake.prefix_male()
	# u'Prof.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Prof. Alexandre St\xf6ckli'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Victoria Frick-Schneider'

	fake.first_name()
	# u'Angelina'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Ronald'

	fake.first_name_female()
	# u'Adelheid'

	fake.last_name_female()
	# u'L\xfcthi'

	fake.last_name()
	# u'Weber'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'501.437.6863x0441'

	fake.msisdn()
	# '6964251048514'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'1211 Schwab Mountain Suite 816\nNew Hulda, HI 20641-5545',
	#     'birthdate': datetime.date(1923, 2, 11),
	#     'mail': u'gloorramona@hotmail.com',
	#     'name': u'Natalia Kunz-Sutter',
	#     'sex': 'F',
	#     'username': u'florent42'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'324 Laurin Glens Suite 377\nLeviside, MN 19911',
	#     'birthdate': datetime.date(2015, 3, 25),
	#     'blood_group': 'AB+',
	#     'company': u'Scheidegger, Ritter and Roos',
	#     'current_location': (Decimal('-69.465281'), Decimal('46.792806')),
	#     'job': "Politician's assistant",
	#     'mail': u'micha26@gmail.com',
	#     'name': u'Rudolf Fuchs',
	#     'residence': u'8933 Scheidegger Island Suite 078\nNew Laviniaport, PR 84882',
	#     'sex': 'F',
	#     'ssn': u'083-27-2970',
	#     'username': u'ischweizer',
	#     'website': [   u'http://www.bieri.com/',
	#                    u'https://www.schnyder.info/',
	#                    u'https://sutter.com/',
	#                    u'https://www.lanz.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'WacpxgywfFkjxHzlpzJB', Decimal('6.33512008737E+13'), 5412, u'deborahhess@hofer-brunner.net', u'royziegler@brun-blum.org', u'iYkpMcCQGGCAUgbfudie', datetime.datetime(1993, 9, 29, 15, 55, 22), 5336, u'http://sigrist-hermann.com/terms.php'])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'LAYbnyfPJxNxMVvSlPpU',
	#         u'sJKPNxyOJbIoEMonATDO',
	#         datetime.datetime(1970, 2, 24, 18, 54, 55),
	#         u'nQswFFgCwvdmtckHIVRu',
	#         u'ohdjDfIZwntgHYFFtSwX',
	#         2656,
	#         datetime.datetime(1987, 8, 30, 7, 5, 46),
	#         u'http://benz-hartmann.com/index.htm',
	#         u'ZtaGuphRZqGXfQFQEtni',
	#         u'InFXYdlqGcflHIpdxlLx'],
	#     {   u'assumenda': u'DDngxDauPMGZvOgTHrgL',
	#         u'blanditiis': 6340,
	#         u'deserunt': u'https://www.hunziker-gfeller.info/faq/',
	#         u'in': Decimal('-596934591.322'),
	#         u'magnam': 7042,
	#         u'nemo': datetime.datetime(1989, 9, 5, 6, 23, 41),
	#         u'non': u'gtqFkPsumErVXXJFdVuV',
	#         u'numquam': 2183,
	#         u'porro': 5610,
	#         u'sequi': datetime.datetime(1996, 12, 17, 1, 30, 44)},
	#     {   u'aspernatur': {   3: 3440,
	#                            4: [   Decimal('-398.201'),
	#                                   u'tYfykffOgRFMySAySjfx',
	#                                   u'http://www.bianchi.info/login/'],
	#                            5: {   3: u'EJIIRqvnagZoKPAtijMm',
	#                                   4: u'nFhtULJSmeQhnXiSeuJT',
	#                                   5: [u'lwSNRjbVpnhpvVgahymG', 1286]}},
	#         u'cum': {   6: u'CTDNGUVLGjqhRIeNXGPP',
	#                     7: [7573, -340034.2030449, u'mariam11@yahoo.com'],
	#                     8: {   6: u'pqtoGoyQHgdUhWBjCjqe',
	#                            7: u'hArwIlWgZafDBisrttQF',
	#                            8: [-4325309956963.63, u'DFHqZQepQPsqIhFLUieA']}},
	#         u'eum': {   0: Decimal('-82.79'),
	#                     1: [   8491,
	#                            u'xgmTZfaSOItSVwHDJlOW',
	#                            u'nrlSYTCQgeWEfiSIrujl'],
	#                     2: {   0: u'DCETAUONNHryCDGLezCd',
	#                            1: u'HXjhUXbTPTNzpMFLSJrg',
	#                            2: [   Decimal('5473137.11371'),
	#                                   Decimal('277764654.295')]}},
	#         u'maxime': {   7: u'lzlxSXqjGbvaftmjrbND',
	#                        8: [   u'fuchsdiane@geiger.com',
	#                               u'aGGGeGrtuoEhtHIBRXKM',
	#                               datetime.datetime(2014, 9, 9, 23, 50, 44)],
	#                        9: {   7: 6031,
	#                               8: 1990,
	#                               9: [   u'gCvUNPkpkgRxeMcaxUNc',
	#                                      u'kaufmannjulio@hotmail.com']}},
	#         u'minima': {   9: datetime.datetime(1991, 9, 11, 19, 20, 54),
	#                        10: [6395, u'nTdrugPPZdDeRbKPiMfb', 7201],
	#                        11: {   9: 702992634376.15,
	#                                10: u'zxbzVknvcWYIHekMRHkx',
	#                                11: [   datetime.datetime(1974, 12, 28, 17, 59, 6),
	#                                        4759]}},
	#         u'odio': {   5: datetime.datetime(2013, 9, 12, 21, 53, 11),
	#                      6: [   u'http://www.frick.com/',
	#                             u'upzoGPFbDGdbQIWwYYIY',
	#                             Decimal('1960.0')],
	#                      7: {   5: 8882,
	#                             6: 7630,
	#                             7: [   u'ctbVITTynvLGAmRkYYnr',
	#                                    Decimal('-4516521.156')]}},
	#         u'quidem': {   8: 7562,
	#                        9: [   u'http://zbinden.com/about.htm',
	#                               -7228419838.5,
	#                               u'gRaeDUTyxkmDpcCIBNru'],
	#                        10: {   8: u'gion68@buhlmann.com',
	#                                9: u'ewirth@hotmail.com',
	#                                10: [   8389,
	#                                        u'http://zimmermann.com/search/homepage.php']}},
	#         u'reiciendis': {   2: -34107962257012.0,
	#                            3: [   -249717165.0,
	#                                   u'qyOTZUtXjZbwgzRUdJBf',
	#                                   Decimal('7.50615477125')],
	#                            4: {   2: datetime.datetime(2017, 9, 9, 13, 43, 27),
	#                                   3: u'marinablaser@steiner.com',
	#                                   4: [   u'QRmhvRmNOGCjLrLGPIya',
	#                                          u'JpurlRyJvtLcLQYcOBXp']}},
	#         u'sunt': {   1: u'sjJhNQPxsHBZBgljVXBG',
	#                      2: [   4867,
	#                             u'wRBHXzDmFDRuIDToOtcq',
	#                             u'OBNhaXNCJhwKfAoPtqdL'],
	#                      3: {   1: 9409713928251.2,
	#                             2: 9914,
	#                             3: [   datetime.datetime(2015, 1, 16, 17, 9, 19),
	#                                    u'https://www.buhlmann-felder.com/app/blog/terms/']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime.datetime(2000, 7, 29, 21, 47, 4),
	#     Decimal('-1.88758344335E+13'),
	#     u'mschuler@hotmail.com',
	#     7088,
	#     -675.9,
	#     u'zieglerozlem@hotmail.com',
	#     1612,
	#     u'portmannibrahim@schneider.org',
	#     5647,
	#     329854833.4,
	#     u'FeqYpHKlTefsRbQCzGHi',
	#     379.0]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'wegli@yahoo.com',
	#     datetime.datetime(2013, 6, 18, 21, 14, 24),
	#     u'https://www.felder.com/search.html',
	#     8.223944,
	#     u'http://www.tanner.org/',
	#     u'vszkSVjMFiYdmQMoGSHV',
	#     u'baULOdRwxnczimMVZPks',
	#     -1243810802.939,
	#     u'sporrishqipe@gmail.com',
	#     Decimal('7808.33739778'),
	#     Decimal('-2395898.75768'),
	#     4517)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'WnLhPALAZqEkQFyIcZZS', u'https://stadelmann-kaser.info/faq.html', 6828, u'kARCmEUUgjxFzefgvsrJ', 5900, u'ernstsvetlana@gmail.com', Decimal('944134506.247'), 2965, Decimal('-6.63208257955E+12')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'accusamus': datetime.datetime(1973, 10, 19, 3, 43, 48),
	#     u'ad': u'PRpikzuSqxPIHFWPewZC',
	#     u'amet': u'grosspascal@koch.biz',
	#     u'autem': u'EEeOihjbPzkyidrXEycC',
	#     u'fugiat': u'emily65@gmail.com',
	#     u'impedit': u'ZHlwrmxXoNQSlgVtAwWh',
	#     u'minus': 429,
	#     u'quis': 3027,
	#     u'sapiente': u'dgcmbGanHMqVAWMZwBEu',
	#     u'voluptates': u'http://www.schneider-maurer.com/tags/tag/blog/terms/'}

	fake.pyint()
	# 3439

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'598-72-4346'

	fake.ein()
	# u'40-6349040'

	fake.itin()
	# u'900-72-7835'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 4.0; gez-ER; rv:1.9.0.20) Gecko/2016-10-04 16:26:34 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.37.(Windows NT 5.01; it-CH) Presto/2.9.186 Version/10.00'

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

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

	fake.user_agent()
	# u'Opera/8.19.(Windows NT 6.2; bho-IN) Presto/2.9.175 Version/10.00'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Windows NT 4.0) AppleWebKit/5310 (KHTML, like Gecko) Chrome/60.0.896.0 Safari/5310'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; yo-NG) AppleWebKit/531.37.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6531.37.7'
