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

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

::

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

	fake.building_number()
	# u'38396'

	fake.street_address()
	# u'500 Morena Street Apt. 675'

	fake.postalcode_plus4()
	# u'09005-3867'

	fake.city_prefix()
	# u'Lake'

	fake.military_ship()
	# u'USCGC'

	fake.city()
	# u'Port Margarethachester'

	fake.zipcode_plus4()
	# u'19690-5727'

	fake.state_abbr()
	# u'HI'

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

	fake.street_suffix()
	# u'Fall'

	fake.city_suffix()
	# u'side'

	fake.military_dpo()
	# u'Unit 8416 Box 4562'

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

	fake.country()
	# u'Saint Vincent and the Grenadines'

	fake.secondary_address()
	# u'Suite 838'

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

	fake.postalcode()
	# u'89806'

	fake.address()
	# u'64582 Mettler Bridge Suite 607\nMeyerberg, WI 39565-5336'

	fake.state()
	# u'Illinois'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'W\xfcthrich Springs'

	fake.zipcode()
	# u'79536'

	fake.postcode()
	# u'64527'

	fake.military_apo()
	# u'PSC 1979, Box 3953'

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

::

	fake.license_plate()
	# u'SXM1764'

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

::

	fake.bban()
	# 'TFND6562023268436'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB23LFEW3006475740809'

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

::

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

	fake.ean13()
	# u'2299729823221'

	fake.ean8()
	# u'41453612'

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

::

	fake.rgb_css_color()
	# u'rgb(146,255,194)'

	fake.color_name()
	# u'LightYellow'

	fake.rgb_color()
	# u'199,212,119'

	fake.safe_hex_color()
	# u'#cc7700'

	fake.safe_color_name()
	# u'gray'

	fake.hex_color()
	# u'#b77c61'

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

::

	fake.company()
	# u'Iten and Sons'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Decentralized mobile parallelism'

	fake.bs()
	# u'exploit sexy functionalities'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Maestro\nGisela Z\xfcrcher\n585442152864 04/26\nCVV: 228\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'NEM'

	fake.currency_code()
	# 'BBD'

	fake.currency_name()
	# 'Israeli new shekel'

	fake.cryptocurrency_name()
	# 'Bitcoin Cash'

	fake.cryptocurrency()
	# ('EOS', 'EOS.IO')

	fake.currency()
	# ('USD', 'United States dollar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 30, 9, 57, 41)

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

	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(2016, 10, 21, 0, 19, 53)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 9, 20)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 10, 4, 19, 53)

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

	fake.day_of_week()
	# 'Saturday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 5, 6, 15, 35, 23)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 1, 27, 12, 57, 5)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1991, 6, 25)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1992-08-24T12:37:32'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2013, 1, 3)

	fake.month()
	# '11'

	fake.year()
	# '1996'

	fake.day_of_month()
	# '21'

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

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

	fake.century()
	# u'I'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1931, 9, 21)

	fake.time_object(end_datetime=None)
	# datetime.time(21, 52, 50)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 3, 0, 5, 9)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1977, 7, 18, 10, 36, 5)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '09:31:59'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 23, 8, 24, 25)

	fake.month_name()
	# 'February'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1419, 11, 27, 5, 30, 1)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(13064, 13659)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/repellendus/nostrum.js'

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

	fake.file_name(category=None, extension=None)
	# u'sequi.odt'

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

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

::

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

	fake.image_url(width=None, height=None)
	# u'https://dummyimage.com/418x434'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'edin43@gmail.com'

	fake.url(schemes=None)
	# u'http://geiger.net/'

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'post'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'kaserannette@zurcher-benz.com'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'arlindkalin@schweizer-hermann.com'

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

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

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

	fake.slug(*args, **kwargs)
	# u'nisi-saepe-rerum'

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

	fake.company_email(*args, **kwargs)
	# u'kristijan44@frey-wehrli.com'

	fake.uri()
	# u'https://martin.net/main.asp'

	fake.ipv6(network=False)
	# '88ab:9f33:7ffe:91d2:db84:d746:90af:a6c2'

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

	fake.ascii_safe_email(*args, **kwargs)
	# 'winklersilvia@example.net'

	fake.mac_address()
	# u'4a:19:86:9d:dc:86'

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

::

	fake.isbn10(separator="-")
	# u'0-610-57565-1'

	fake.isbn13(separator="-")
	# u'978-1-56247-365-5'

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

::

	fake.job()
	# 'Engineer, materials'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Ipsum et alias ipsum. Beatae quas fuga temporibus dolore beatae error. Iure recusandae ex laudantium qui incidunt.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Nisi voluptatem eum. Saepe suscipit eveniet modi deserunt. Numquam earum dicta consequuntur sapiente modi.',
	#     u'Ab necessitatibus saepe veniam. Dolores excepturi ut. Ut quidem deleniti iste.',
	#     u'Ex aliquam voluptates ut. Sunt dolorum tempora dolore. Nobis aliquam fugit nemo.']

	fake.words(nb=3, ext_word_list=None)
	# [u'deserunt', u'earum', u'animi']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Animi molestias error quidem.',
	#     u'Exercitationem ipsum odio dolorem repudiandae omnis delectus.',
	#     u'Ad quasi id ullam unde.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Dicta ipsum ducimus molestias quidem. Dolores ratione doloremque iusto perferendis minus error tenetur.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Praesentium libero nam itaque veritatis architecto.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'Er4$uLfb%H'

	fake.locale()
	# u'quz_PE'

	fake.binary(length=1048576)
	# bytearray(b'.v\x1e\xd6,\x10(\xd5\x80#A\xfe\xcf0\xedz\x15\x1f\x00\x82e\xd7\x13\x87\x84$`\x9f\x07\xfc\xd8\xb1\x19\xee\x9a\x0e.\xb3\xd1h\x15M\x11\x1eq\x94\x8aG\x89\xe9\x85%\xba\x8ey\xe4\x9b\xd2\x81\x94\x7f\x1f\x91\xa3\xd9\xc9\x04\xf7\x89\x82\xa8\xb9q\xa2\x1c \xec\x02\xf8\xb93\xd4\x93\x1cZ\xc5\x800\xb5\x1c\x87\xac<,\x1c0\xfd\x08\xacpC\xee\xe8r\x02\x87\x8a\xc7\x0f\xedX\xea\xcf1\xca\x06 |^\xee\xc7\xc9\x7f\xbeE>\x19\xed\xde\xe8\xf8=\xcc\xa0\rc\x02o\x19p>%vJ\xc9j\xae\xac\xe2\xb1\xd38\xfd\x95\x04;\xbb1\xa5M?\xeaNc\xf2m$\x1b\x92\xf6\xd6(3\x11\r\x1c\x9d\x11\xfa\x93\xbcf\x10\xfb\xdah\x83\x89\xa2t\x15\x96\x98\xd6/\x8fs\xe5m\xf0=\xdau\x8e\x0e[\xad\x9c\x90\n\x8a\x11jE\xea*Q\x8c\xfe\x98\xf0uM\xf7\x06\xd7!\x96\xdf\xbe\x96;(\xaa\x86\xd5c\xd1D\xc6K`\x8cO"\xf7\x15\x121j\x8b5Mw\xaeE\x1d+w+\xbf7\xf2\\xt\xe3Z_\x9f\xa6\xa0\xd6\xb4\xc5\xcc\x98\xd4\x0f\xb8\xa0\x18\xf5a*\xbaA\x04d\x1d\xfd54"3?\xdb\xe2\x90\xd9\x11\x83\xb8=\xd7\x89 \xe5\x86z\xbbM\xa1Q\x1e]?\xa3\xc7[PQj\xc8\x05\x04\xf0\xa5K-W\x08\x9d\x12\x82f\x10\x14\xd0\x90\xef\xa2\x9ajx\x8b\x19\x0eMW\x9c\xd3B#\xc4\xe2[\x82\x17\x02\xc44MM\xc2u \x1ey\x19\x8b\xf7\x8c#\xea,7\xb1\xa5\xf6\xa6\xfe\xab\xef\x84h2\x942\xcf&\x8f\xf2\xce\xa0\xd3*\x18\x05}f\xf5\x18\x9f\xeel1s\x8b\x10\xf928\x8f\x1c]\xb4\xdb\xee\x08\x91\xab\x82JN \xa7\xf9\xdc\xfdH\x07\x1d\xf1\xfd6\x10\t\xc8\xd1\x88Al\xe1\x86]_\xdfU$\xf9\xdd/\xce\xf8\xaf\xc9\x9f\x88t\x0c J\xf5\xf0O3M=\xcb\xedD;k\xc6T\xf6\xcaf\xa1Yh(F\xef\xff\xf3}+K\xcb\xebx\x83\xe4wy\x00\xd8T\x1a\x8fA\x0b\xfb\xd7\xe0j\r\xf9\x01Wo\x04\xca\xbdiQm\xc1v\xed\x1a\xab;\x8d\xb5q8(\xf2\xc6\x99\xd5\xe0\xd7T\xe2\xc1?\x10\x88\x05mD\x8a\xa3\xb0\xcc\xbb\xa9\x15\xabO\x9a\x05_\x9f\xc7\xc6\r^\xec\xd9/G\x9f\x9b\xec\xa2\x8a\xc85\x9cCR\xdd\xe5\x01\xce\xc3\xed(\x8d\xb2A\xe0\x14 \xb8\x98\x94-\xe4\xffq\xe3\xfb\x11Kv\xb0\xb4\xa2Q\xab\xa8\xc4\xe5\xddg\xff\xb4\xa1\xd5\xb9\xe1d:d\x89\x1cpk\x92\x8e3\x1f\xdf\x9a{\xbd\xb2s\x8e\x80\x1dx\xe0\x8c\nq\xf9\x13\x9a&\x93W\xf9\x8b\xb8\x81\xa5\x83\x84\t/ \x9a<\x9c\xcd\xd0\xaa\x07\xe5\xbc\x17\x83\x92\x10\xeb\x9c\x1d\x12\x1b.f\x1e$\xf1\xbfD\x7f\xe2\xb4A\xe6\x83\xef*\x90\xc5\x80]$\xb9\xe7\x15u!j\xf5\xe5iE\xb8];p\xb2C\xa8\xae\x97\xfb\x89\xca\x0f\x80\xaf0\xf8\xef\xa8 \x9e\xf6\xe1\xc3\x1a\xd9\xc3\x1b\xf5\x9d\x92\xc7\xbd\xcfV\x9c{\x14f;\xcd\xb3\xba\xee\xef\x86\xf1\xa7\x92\xe1@\xfe\xd9\xbd\xde\x13\xb7\x12\xb9#\x12\x16\xe8\xa3\xf6(6(i\xb8&\x03#\x9f\x86\xbco\xd4\xf8\xef\xbc\xb7\x8b\xce\xd4Z^|5@\x1a\xa9*\xda\xe5\xd4\x17q\xed\x9c\xf1\x05\x1e\xe7N\x7fs\xc5\x10O\xc8\x02\xf3,KC\x85\x9e\x8b\xb1\xf9\xa7Qc\x16R\x14\xc2\x0c^\xc5\xd3\xc0\x8c\x1a3S\x16\xffj\xf5\xa02\xdcc\xf9~\'q[\xb3\xe9\xde\xf6\xda\x16\xf9\xdf~\x9c[W\xe6\x86\xdb\'\xc0\x8d\xc1\x0c\x88\xf4\x128V=3\x0fB\x99N\x83\xe8\xc4\x1b5FWn\x10\xa1r\xab\xce\xc8\'-g\xdeV\x83\x0c\xbd\xc7@Y{W\x02\x9d\xabY\x90X1\xde\x988T\xc1/\xc9\xf9h\x04\xa5\xd1\xb1Q\xaf\x84\xaf4:?\xc7\xb0\xb4Y\nv\\\xdf\xba\xd6\xbfgP#\x07 \x10\t>\x17\xb6JL\xda\xe1\xfe\x06\xbe\x13o\xd3\xe0\xd1IH4%\x9aR\x05\xab\xec\x1b\xb2\x1co\x1bv\xf6\xd7\x8f\\-\xe6\xe0\x8d\x9a\x08\xa8a.\xf7v\xaf\x18q\x95\xca\\$\xd4\x86\xf0\x9be\xca\xb2]\x16B\x95H\xcf')

	fake.md5(raw_output=False)
	# '7a465db962650e41932f4310dd97033a'

	fake.sha1(raw_output=False)
	# '74159bcbc3f82e537217a302572dd46a08ecd83f'

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# '5d3b7675-672c-8674-c71f-158dbf840826'

	fake.language_code()
	# u'fa'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Rey'

	fake.name_female()
	# u'Cornelia Roth'

	fake.prefix_male()
	# u'Prof.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Carlos Moser'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Heidi Gfeller'

	fake.first_name()
	# u'Sarah'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Jetmir'

	fake.first_name_female()
	# u'Emina'

	fake.last_name_female()
	# u'Schnyder'

	fake.last_name()
	# u'Knecht'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'(642)940-7906'

	fake.msisdn()
	# '0723422135869'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'PSC 6015, Box 2982\nAPO AP 06584',
	#     'birthdate': datetime.date(1964, 4, 19),
	#     'mail': u'yasinkoch@hotmail.com',
	#     'name': u'Kujtim Berger',
	#     'sex': 'M',
	#     'username': u'stettlerkarsten'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'77322 L\xe1szl\xf3 Alley Suite 198\nSouth Veronicafort, TN 40691',
	#     'birthdate': datetime.date(1993, 2, 26),
	#     'blood_group': 'A+',
	#     'company': u'Roth-Sigrist',
	#     'current_location': (Decimal('1.971138'), Decimal('158.615471')),
	#     'job': 'Chartered certified accountant',
	#     'mail': u'eglielke@yahoo.com',
	#     'name': u'Eileen Walter',
	#     'residence': u'USCGC Kohler\nFPO AE 85078',
	#     'sex': 'F',
	#     'ssn': u'608-39-4699',
	#     'username': u'stockermaria',
	#     'website': [   u'http://www.steffen.com/',
	#                    u'http://www.sigrist-schmidt.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'hunzikergazmend@gmail.com',
	#     u'TYcUwyklnZKJJUOSRcHB',
	#     datetime.datetime(1988, 6, 6, 18, 39, 42),
	#     8850,
	#     Decimal('-7263.60549'),
	#     datetime.datetime(1999, 10, 31, 15, 29, 48),
	#     u'JPEweqWusYmtYicDiRyq',
	#     Decimal('383973763.278'))

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'https://www.stocker.com/home/',
	#         29005910.230975,
	#         184.3269,
	#         9318205478791.6,
	#         8175,
	#         u'HoqfQVFEKWiGcSoDlfNr',
	#         8646,
	#         54690.316737,
	#         u'PVIiTERfPfqgTcPhafPQ',
	#         u'https://www.siegrist.com/post/'],
	#     {   u'ab': datetime.datetime(1999, 1, 4, 0, 11, 17),
	#         u'dolorem': u'apvvnWVwUuMqTcWrWApA',
	#         u'ex': -191797484.591038,
	#         u'excepturi': -10.4642,
	#         u'ipsum': 9533,
	#         u'minus': 6272339315.9,
	#         u'nam': datetime.datetime(2010, 12, 2, 12, 17, 22),
	#         u'quasi': 1552,
	#         u'quos': Decimal('-8.75401418999E+14'),
	#         u'ratione': 4016},
	#     {   u'ad': {   7: -273.777535616,
	#                    8: [   u'bnlryXWtGGGDgDqjjaLU',
	#                           u'iKvYtWvDqVJQbYYSoASn',
	#                           u'https://www.wehrli.com/tag/main/blog/author/'],
	#                    9: {   7: u'IMepsszSUUmrALPJaiVt',
	#                           8: -24674572.6069,
	#                           9: [   u'OdOFgefYvfYHqPkvuLEc',
	#                                  Decimal('-466.616203347')]}},
	#         u'at': {   6: -16.978964,
	#                    7: [   datetime.datetime(1997, 3, 4, 19, 58, 25),
	#                           u'IeqOmcHTCcFbhiuwIFIs',
	#                           u'oGiSxxWKqXTgBmaCQdKt'],
	#                    8: {   6: 8178,
	#                           7: u'http://schurch.info/category.html',
	#                           8: [u'wMLpYixsCUhmadCISDjv', 6125]}},
	#         u'exercitationem': {   0: -969675115791.67,
	#                                1: [   u'PHhFZnYtLgIrjHdkqNlz',
	#                                       1242,
	#                                       u'KEXSJmkSTbEVWWvnTTjs'],
	#                                2: {   0: u'nppoMyNTIlkHTSMwFyfJ',
	#                                       1: u'esthhQlHbOQXORIPbkRU',
	#                                       2: [   u'HQcyCcaUQizNcfrxSxMD',
	#                                              u'https://eichenberger.com/category/']}},
	#         u'id': {   3: 9965,
	#                    4: [   -3787.3609272062,
	#                           u'https://www.albrecht.com/list/list/terms/',
	#                           7298],
	#                    5: {   3: u'PvQjNQbLoIbxOyTDYRGv',
	#                           4: -138803807.0,
	#                           5: [   4023,
	#                                  datetime.datetime(1974, 4, 14, 4, 5, 25)]}},
	#         u'iure': {   1: u'DLpWfrOHcYLJhQtxfcyq',
	#                      2: [   u'clarissawinkler@hotmail.com',
	#                             Decimal('-74.38597894'),
	#                             u'BXfPIzamzLuxGTvwijRQ'],
	#                      3: {   1: u'ELQqXGMiMmqOhHnOGAod',
	#                             2: Decimal('-4884.0'),
	#                             3: [   u'nzuexbYfwNYomvJjszxV',
	#                                    datetime.datetime(1999, 9, 8, 12, 38, 47)]}},
	#         u'minima': {   8: datetime.datetime(1989, 10, 20, 11, 36, 47),
	#                        9: [   u'uwDQwTvBRxIOOraATQHe',
	#                               datetime.datetime(2002, 12, 31, 15, 36, 38),
	#                               u'MQGpFkDUSQXQinUqKLmn'],
	#                        10: {   8: Decimal('850140.883996'),
	#                                9: datetime.datetime(2013, 4, 28, 18, 10, 31),
	#                                10: [   u'xsOtaAElVFIfunyxVpNm',
	#                                        u'hschwarz@yahoo.com']}},
	#         u'nesciunt': {   9: u'qiJOeMKfRYOkFuRzOAeM',
	#                          10: [   -8983528489410.0,
	#                                  u'OrLyVRtepntrjtVhqTJy',
	#                                  datetime.datetime(2008, 12, 6, 1, 56, 7)],
	#                          11: {   9: Decimal('9.88967360373E+12'),
	#                                  10: u'JXtwCdfjlguYpBtURbpb',
	#                                  11: [   u'hidktIerlgwLXCiRsQYt',
	#                                          Decimal('-67717957499.3')]}},
	#         u'nostrum': {   2: u'ljenni@hotmail.com',
	#                         3: [   u'nevioschlatter@gmail.com',
	#                                u'dxvrrcuzsXnOuhOnkulu',
	#                                u'NkjPslEMMmkxfeZZQVpk'],
	#                         4: {   2: 3557,
	#                                3: Decimal('-9.48754976195E+13'),
	#                                4: [5920, 4902]}},
	#         u'omnis': {   5: 4586,
	#                       6: [   Decimal('-61785.2111185'),
	#                              1746,
	#                              u'https://lanz.com/home/'],
	#                       7: {   5: u'https://www.zbinden.com/explore/author/',
	#                              6: Decimal('483123.1'),
	#                              7: [u'UEteAZvlglyjntoqaxFh', 6236]}},
	#         u'sunt': {   4: 73322120679019.3,
	#                      5: [   u'nMbbMkXPHjujpPlBbKSL',
	#                             u'zJisFGRmyPDMUFBOYwBv',
	#                             2256],
	#                      6: {   4: u'PSEaFQxHKMCmKmabuBrV',
	#                             5: u'rweber@felber-hodel.org',
	#                             6: [   u'jAYmPKbEeUgOewuJmdGc',
	#                                    u'alexwyss@gmail.com']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   1288.4584173,
	#     u'AUMZagSXiVcVpfymPHup',
	#     u'dUvPryewOeGwrclyipcu',
	#     u'SPMmOlDrClvQBBFFCSWo',
	#     426449658013269.0,
	#     632,
	#     u'mQOqJzBYTIpdSuPPLkxl']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-8275799580.7'),
	#     8867,
	#     Decimal('5283283.652'),
	#     datetime.datetime(2014, 11, 14, 11, 24, 25),
	#     u'dvPAKawjmjCpDDMSVxnl',
	#     u'UvSHTsoHMfwRehaAnRcY',
	#     u'zEGEkTbjlXuoHVvWJEwU',
	#     u'HtoyUWziScVTvjqwEZqf',
	#     u'eblum@hotmail.com',
	#     u'jtkReXPjsKALkWDgtSSo',
	#     -423429713.57508,
	#     u'mosermedina@gmail.com',
	#     u'qCzvcudrXUyPVxnkNxcK')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'BfIzDpRLioRWOkIKYWMZ', datetime.datetime(2005, 3, 19, 4, 18), 8039, 6225.62674, 5577, Decimal('-3.267261873'), 7660, u'pxSxZLjFmHhcaeyuppKm', u'http://www.tobler-zbinden.com/register.jsp', u'VBKzMPOuvClKiVqveipj', Decimal('-63145897.6651')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'autem': u'mNCuKhxUJzAmjxVBGnNH',
	#     u'dolorum': u'mdteBUPNFRODVYqwXVTV',
	#     u'fugit': u'https://www.vogel.info/',
	#     u'nihil': datetime.datetime(1994, 7, 3, 22, 47, 40),
	#     u'numquam': datetime.datetime(1978, 2, 14, 0, 17, 13),
	#     u'quam': 653860.8477241,
	#     u'veniam': 5623,
	#     u'vitae': -1484313466836.9}

	fake.pyint()
	# 9421

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'670-09-8912'

	fake.ein()
	# u'02-2965707'

	fake.itin()
	# u'930-83-1830'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 5.2; mni-IN; rv:1.9.0.20) Gecko/2011-12-06 16:26:10 Firefox/7.0'

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

	fake.opera()
	# u'Opera/8.21.(X11; Linux x86_64; ce-RU) Presto/2.9.180 Version/12.00'

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

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

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

	fake.linux_processor()
	# u'i686'

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

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/533.21.7 (KHTML, like Gecko) Version/5.0.2 Safari/533.21.7'
