
Language de_DE
===============

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

::

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

	fake.street_name()
	# u'Kambsweg'

	fake.address()
	# u'Schmiedeckeallee 248\n34950 Wanzleben'

	fake.street_address()
	# u'Scheibestra\xdfe 600'

	fake.postcode()
	# u'82176'

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

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

	fake.country()
	# u'Pal\xe4stinensische Gebiete'

	fake.city_name()
	# u'T\xfcbingen'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'132'

	fake.street_suffix_long()
	# u'Ring'

	fake.street_suffix_short()
	# u'allee'

	fake.city()
	# u'Berlin'

	fake.state()
	# u'Bayern'

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

::

	fake.license_plate()
	# u'SPN-TF-94'

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

::

	fake.bban()
	# '434814924858515511'

	fake.bank_country()
	# 'DE'

	fake.iban()
	# 'DE43838868678482691387'

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

::

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

	fake.ean13()
	# u'9015371013666'

	fake.ean8()
	# u'09571099'

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

::

	fake.rgb_css_color()
	# u'rgb(136,246,219)'

	fake.color_name()
	# u'MediumSeaGreen'

	fake.rgb_color()
	# u'48,222,0'

	fake.safe_hex_color()
	# u'#33dd00'

	fake.safe_color_name()
	# u'silver'

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

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

::

	fake.company()
	# u'Dowerg AG'

	fake.company_suffix()
	# u'AG'

	fake.catch_phrase()
	# u'Visionary 24/7 encryption'

	fake.bs()
	# u'mesh 24/7 users'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'Diners Club / Carte Blanche'

	fake.credit_card_full(card_type=None)
	# u'American Express\nChristina Oestrovsky\n349573876742020 01/23\nCID: 0685\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'TRX'

	fake.currency_code()
	# 'QAR'

	fake.currency_name()
	# 'Aruban florin'

	fake.cryptocurrency_name()
	# 'Gridcoin'

	fake.cryptocurrency()
	# ('ADA', 'Cardano')

	fake.currency()
	# ('SHP', 'Saint Helena pound')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 17, 20, 6, 41)

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

	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(2013, 12, 29, 1, 10, 47)

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

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 3, 6, 22, 1)

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

	fake.day_of_week()
	# 'Wednesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 5, 7, 7, 6, 11)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2010, 10, 10)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2003, 6, 10, 7, 58, 14)

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

	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(1988, 11, 16)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2009-09-29T03:32:36'

	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(2016, 9, 4)

	fake.month()
	# '08'

	fake.year()
	# '1971'

	fake.day_of_month()
	# '12'

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

	fake.timezone()
	# u'Asia/Aden'

	fake.century()
	# u'IX'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1982, 10, 4)

	fake.time_object(end_datetime=None)
	# datetime.time(1, 26, 48)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 6, 11, 13, 42, 34)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2010, 5, 18, 9, 38, 1)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '06:45:42'

	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, 8, 10, 22, 15, 3)

	fake.month_name()
	# 'May'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1502, 3, 11, 13, 10, 57)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(16549, 7160)

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

::

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

	fake.mime_type(category=None)
	# u'audio/mpeg'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/nesciunt/voluptatum.jpeg'

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

	fake.file_name(category=None, extension=None)
	# u'rerum.tiff'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'pwohlgemut@gmx.de'

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'britt61@gorlitz.de'

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

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

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

	fake.uri_extension()
	# u'.asp'

	fake.uri_page()
	# u'home'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'franz-peter51@pruschke.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'ottfried43@dowerg.de'

	fake.domain_name(*args, **kwargs)
	# u'geisel.org'

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

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

	fake.slug(*args, **kwargs)
	# u'harum-qui-unde'

	fake.uri_path(deep=None)
	# u'wp-content/tag'

	fake.company_email(*args, **kwargs)
	# u'bientamara@oestrovsky.de'

	fake.uri()
	# u'http://www.soeding.net/explore/main/'

	fake.ipv6(network=False)
	# 'afe0:dd61:2ec6:a877:2083:e9f4:5258:a114'

	fake.free_email(*args, **kwargs)
	# u'gregorgotthard@hotmail.de'

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

	fake.mac_address()
	# u'88:6e:04:9f:92:dc'

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

::

	fake.isbn10(separator="-")
	# u'1-366-16817-8'

	fake.isbn13(separator="-")
	# u'978-0-442-01137-6'

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

::

	fake.job()
	# 'Scientist, audiological'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Veritatis corrupti reprehenderit beatae expedita ad. Possimus eius consequuntur eaque animi. Corporis facere vero ullam.\nCum nam officiis quasi quisquam vel odio. Nemo ullam nobis nisi blanditiis ad.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Vitae voluptatibus velit dolorum modi. Eaque laboriosam hic aliquid a modi.',
	#     u'Nostrum sed totam ipsa nulla placeat. Fugit cum perspiciatis repellendus aliquam accusamus. Illum nesciunt illo error.',
	#     u'Laudantium quas minus nisi. Natus culpa voluptates vero.']

	fake.words(nb=3, ext_word_list=None)
	# [u'doloribus', u'natus', u'sit']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Harum culpa provident exercitationem error nostrum.',
	#     u'Commodi molestias et dolorem quod a.',
	#     u'Impedit quasi error qui quas asperiores illo itaque.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Recusandae nobis unde quas nemo. Ipsa beatae voluptatem veniam praesentium.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Sunt doloribus distinctio non voluptas asperiores.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'G2phbH#2#d'

	fake.locale()
	# u'sw_KE'

	fake.binary(length=1048576)
	# bytearray(b'\x1c$\xadr\rp\xeb\xf9\x1c\xb3\x03_\xb8m\x8c\xfe\xcb\x04\ta}\x9b\xab\xc9\x9f\t\xe2\x1f+X\x80\xa0\xd1\xec\xef^S\x1eI\x92\xfd#\xdb.7f_li\x11\xde\xb8\xc2Sz\xeb\xfeg\xe2\xec\xdfBA\x88cM\xcbk?1\x06P\xb8\xb7{\x006e\xe8\xc3\x8f:\x7f\x10\x1al\xd8^\x06\xa9GX\xea_\x10\xc5S\xfc\xf7\xb6@\xdd\x05f\x06yRR\x7f[Y\x80\xe94\x90Z\xcfKa{]\xfdQk\x1f\xe7q\x00\xc3\xf8\xaf\x1e\xeb\xf6\x1bXiQ\xc6KX\nq\xa0b\xc3\xe9\x90\xcc\x1e\xf1\xaa\xc5\'Q%{\xd4A\xc8\x88\x9c\xcem0a\xb7\xe9\x99\xb6"\x9f?\x04\xb0\x19"\x17\xabf\xee\x9fdE\x0c\xac\x17x%\x8b]<\x1f\xfed\xd2\x0f"\x80K\xed\xcdp\xb4\x03"\x9b*\r\xd3[?\x02\xb1r\xbf\xb9\xad\rq \xda\xf2C\x9cb1\x89\xdd\x7f\xe9.\x12F\xae\xe1\x94\xd0>\x94\xf2SM\x92\x18J\x86!L\x00\x83S\x1a\xf2a\x05\xa2\x02\xceW\xf8%{\xc8R-Pg\xc2zc\xb0y\xb4\x9eqi\x94\xdc9\x1f]!\xb0joZ:\x8e\x85\xa0\x91\xa1\x17\xea\xd6t\t\xbfl}!\xa1.\x1b\xb6\xa8\x9bf\xc2\x06\x84\xbfa\x9bF\xd6\x0e\xdcut\xcb\x17~\x99\x97\xad\x8c\x08\xe3\xf0\xed\xddt9\x17\xfa ;K/\x1ct\xc1eGFZ\xba\x01\xaft\xa5\x92|\x03\xb8\xc5 \xed2\x0c\x0e\xf4\x1d\xf2r\x97\xf8\xaf\xcavM\xccgpk\x90T\x9e\xc9\xab\x96X\x8fS&x\xc6\x00\xe0_Fl\x99p}\xaeQy6\xfd\x8e\xa5\x94 \xd7\xf6#c\x95\xbc-qJ\x9e\x0e\xb6\x05\xa9\xda\xe7\xe1@cR\xb0\xd8\x12B\x11\xad\xebb\xce\xcaF\x03\x05`#\xc6\xc2zs\xc1\xcd\xce\x8fl\xd8\x80\x15\x82\x0e%9\xd4Du=,&\xee$v\xf9&\xbaH\xed\xa6\x91\x9a\xaf\xdf\x8d|S\xc3\xe8\xf9\x97\xd7>\x0fv\x01.\r\xc74\x8a],\x8a\xe1!\x86\xe2\xf3D\xb7\xc5A\xd5\x8f\xb4\x85\xf5B\x8e\xaa\x89K3i\xd4`\xe8;(\x87e}\x00\xc4\xd7Z\r\xdb\x94\xd4\xf7\xdb\x81\xf8\x14c+x\xd9_\x0e\xbbyy\xa4@5\x9b\xf9\xd8\x06\x0e\x0c\x08\x02\xbef\x82\x92\x1ab\xb4?)\x90I\xb4M\xc0\x01\x1fj\xb5\x06\xba*\xb6E\xa5\xf2\xa1\x8c\x05\x97B\xcb\x83\xaa\xc8\xcb\x19\xacm\x1e|\xa1rl\x94\xdb\xfaj\x11\xaa\x84\xc8\x8a\xb0\x10D\xab\xb7O\xfb\xfds\xb7:\xef|\xf9\xd9\x835\x9cc<B"\x19D\xa69\xaeW\xfel\xa3G\x19\xcd\x08\xd0\xd6\xa5]\xdf\xba\x81\x84\x88\x1a\x97w,`\xe7\xaawa\xb4|\xee\xf1\x93\x0f[\xf7\xf2\x89\x81\xb5\xde\xb4v\x9d\\\x1b\xf3\n<\xac\xd1\xc2\x1fG[\xe3\xf0\xb8\xc1\x0f\xbbw\x0e\xe4\x93_\xa2\xf1t\xb3#M\xa9dp\xf0\xb5\x8b\x89\xc4\xe8F\x9d\x1d16\xaa\xc2\xce/\xa7j|\x0f \xd4;\x9c\x8a\x13\xb3\xe6I3QK<\xb1ZI\xeev\xd4\x08\xef\x8a\x08\xe4\x08\xbb\x89?~\xd0G\x13\xfb\x8cp\xde,<JF\xde\xaf\xdf/\x95g!\xb5\xfa\x86\xbaED%\xb1Y5Kd\xd6\xc0\x06\x16\xd7b)\x1b\xdbV\xb3\xbav\xa5\xbf\x85\xddF\\<\xf9{\xf2\x8cWG\xc4\xdd\x874~\x8b\xaa\xb7\xb2\xfb\xd6\xfb\x99\x15Q\xdb9f\x89\xc1\xa5K\x98#\x7f\xa4!C~X\x99\xfa\x94\x88\xc3\xa0\xb6c\xe6I\n\x9c\xddy\x9f\xa0\xfds\xeb[77\xce\xb1\xf3\xe4\x8f\xae\xb1\x17\xe3\x88\xd0\xce\x00\x1b\xb8\xad|\xcf\xec#\xe7\x0c\xc0\x1a\xee\xc7hO=\xa8/|x#\xe5\xbd\xff}\xf3\xed_#&m%\xf4\x87\xf6\xb7\x12C\x10h#\xc3\xb81\xc9\xda\x0b\xc4zY\x86\xf7\xcct\xf5\xa7\x18\x8a\xbabt\xe0S\xb5\x97\x0b\xbb`\xc7\xef\xc0\xb0/\x0e\x03\xf2\x9e\x96\xe2\xd7{\x02\xa4\xf8\xeb^\xfc\xff\xdb\x90\x19\xf5^B\x9b\x19\x1b\xd5T#\xaf\x80\x8a\xc6\x1c\x1a\x87\xeb\x05\xdf\x13\xa3q\xf3n\x08\xd1\xd6Mt\x00A\xda5#\x86\xad\xf6\xe4\xb7\x9e\xb0\xcf\xdb?6\x08\t\x0404\xaa\xc0\x15s')

	fake.md5(raw_output=False)
	# '4d09a1bbb5f283c42855e53059c83829'

	fake.sha1(raw_output=False)
	# '4efa1683eedd275bf3fbce9c0df2f9f859060541'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '0862cb320df22d36c1b949ea2bee6b3e2bb009fcc3a27d396d0228d0bf9d43a9'

	fake.uuid4()
	# '020aca2f-7ac3-8d9c-9c2c-1c0fc4c947b5'

	fake.language_code()
	# u'ast'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Gorlitz'

	fake.name_female()
	# u'Maximilian Ring B.Eng.'

	fake.prefix_male()
	# u'Ing.'

	fake.prefix()
	# u'Univ.Prof.'

	fake.name()
	# u'Prof. Paolo Langern'

	fake.suffix_female()
	# u'MBA.'

	fake.name_male()
	# u'G\xf6n\xfcl Bolander B.Eng.'

	fake.first_name()
	# u'Desiree'

	fake.suffix_male()
	# u'B.A.'

	fake.suffix()
	# u'B.Eng.'

	fake.first_name_male()
	# u'Ullrich'

	fake.first_name_female()
	# u'Bernhardine'

	fake.last_name_female()
	# u'Otto'

	fake.last_name()
	# u'Heidrich'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'+49(0)3195 42801'

	fake.msisdn()
	# '5439434977395'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Ehrenfried-Pechel-Gasse 3\n61821 Hamburg',
	#     'birthdate': datetime.date(1919, 3, 19),
	#     'mail': u'hermamatthaei@gmail.com',
	#     'name': u'Hans J\xfcrgen Hendriks B.Sc.',
	#     'sex': 'F',
	#     'username': u'leneroskoth'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Marlis-Hofmann-Ring 860\n73398 Starnberg',
	#     'birthdate': datetime.date(2012, 7, 24),
	#     'blood_group': '0+',
	#     'company': u'Girschner He\xdf GmbH',
	#     'current_location': (Decimal('-59.575838'), Decimal('118.153668')),
	#     'job': 'Surveyor, rural practice',
	#     'mail': u'stolzehans-juergen@web.de',
	#     'name': u'Ildiko Koch B.Eng.',
	#     'residence': u'Dietzgasse 05\n30789 H\xf6xter',
	#     'sex': 'F',
	#     'ssn': u'025-37-5043',
	#     'username': u'raedelsepp',
	#     'website': [   u'https://siering.com/',
	#                    u'https://stiffel.de/',
	#                    u'https://www.liebelt.de/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   Decimal('-3295804.2'),
	#     u'zheidrich@hotmail.de',
	#     u'vZJeSgMneKzgAsKDFcWQ',
	#     u'idavids@roht.de',
	#     9806,
	#     3692,
	#     u'thomasring@pechel.de',
	#     u'tOhrZfMhaqLUezWGFFOf']

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'PwpwlvUJJlllXyOEEjoJ',
	#         u'OmKIsRTOuWhuMbuvOoCa',
	#         u'sNOjoZtHkSJtRWIkqbWP',
	#         u'http://www.carsten.com/category/explore/search.html',
	#         u'JMIFBsGzaWXfcSwiEMBM',
	#         Decimal('64835673.0'),
	#         -621.1,
	#         7774.0,
	#         3501,
	#         u'lXxelnMGOoFMOIZwcAoB'],
	#     {   u'ea': 6375.14,
	#         u'minima': u'VsVgnnHfWTGNlCBGEsEj',
	#         u'recusandae': u'YpbGELbzXaOfKNyFHdwY',
	#         u'repellendus': u'uzlequtYllceDouUUGJm',
	#         u'saepe': u'TCZiKjVqCKOaAwjDnSri',
	#         u'sequi': 4709,
	#         u'suscipit': u'UITtwHpadPpDxWFbpggc',
	#         u'temporibus': u'IexavizPiPExUYVlShkM',
	#         u'tenetur': 7991,
	#         u'veritatis': Decimal('57248408.959')},
	#     {   u'ad': {   5: datetime.datetime(1985, 2, 27, 1, 41, 40),
	#                    6: [   u'OXfJIHZPzwSehQWxJMuC',
	#                           Decimal('315395534.94'),
	#                           u'CalWLRxGoCnwjalaItFW'],
	#                    7: {   5: u'haaseelli@googlemail.com',
	#                           6: Decimal('-14180165.1899'),
	#                           7: [   u'https://www.beier.com/explore/app/faq/',
	#                                  -948283032787259.0]}},
	#         u'beatae': {   1: -409202033.9,
	#                        2: [   u'bolnbachdaniela@web.de',
	#                               u'https://reuter.de/search.html',
	#                               u'https://loos.com/explore/terms/'],
	#                        3: {   1: u'http://dehmel.de/category/',
	#                               2: u'YTjFUpEBKWrOMmLpcRHd',
	#                               3: [9515, u'QXjpTisGBVgAgSAIviuS']}},
	#         u'libero': {   7: Decimal('90711076553.9'),
	#                        8: [   u'pNQxxZqxgUtGKiJXGGOd',
	#                               Decimal('299212717.857'),
	#                               2496],
	#                        9: {   7: Decimal('-50063428.3762'),
	#                               8: u'hhIHqgZMrArRZbOqmhhN',
	#                               9: [   1349,
	#                                      datetime.datetime(1982, 3, 19, 22, 55, 32)]}},
	#         u'maxime': {   2: u'https://www.ritter.net/terms/',
	#                        3: [   1444,
	#                               u'RtpfykrkmniUuafyynnA',
	#                               datetime.datetime(2018, 6, 27, 20, 2, 28)],
	#                        4: {   2: u'https://thies.com/blog/blog/category.html',
	#                               3: 8563,
	#                               4: [u'DcFEpWLSfnsrmYfMTPPv', 7425]}},
	#         u'molestias': {   8: u'https://www.heuser.com/author/',
	#                           9: [   u'EPrOIwbfYPzzRYDLsdDg',
	#                                  u'dvNGnwWdqejfocqUkgtC',
	#                                  5523],
	#                           10: {   8: datetime.datetime(2005, 5, 21, 5, 5, 19),
	#                                   9: 4287,
	#                                   10: [6895, 2494]}},
	#         u'odit': {   4: u'https://www.gumprich.com/tag/privacy.asp',
	#                      5: [   u'HAKdTXRyEFGImELvlfMB',
	#                             u'FJGrcaIOwBSrLjIKHXLs',
	#                             u'GYLvMUXpwkNoTqLCbHSQ'],
	#                      6: {   4: u'AXxcoWQLnKexMXhRpNnI',
	#                             5: 9653,
	#                             6: [   u'VvSyfiisuPFOqydBEVCD',
	#                                    Decimal('-1.36148408775')]}},
	#         u'perferendis': {   9: u'LBwMzmvMrZeerBBRlPqP',
	#                             10: [   u'PwXtOcogZrKDepipYAFC',
	#                                     -248549529047674.0,
	#                                     u'hDSzYaOcSKkDeeKqKbzA'],
	#                             11: {   9: u'https://www.klemt.com/homepage.php',
	#                                     10: 6803,
	#                                     11: [   u'http://klingelhoefer.com/main/category/register/',
	#                                             6350]}},
	#         u'placeat': {   0: u'SXZnsYwvcCDbLlSiAjdg',
	#                         1: [   3890,
	#                                Decimal('-7.8696046029E+11'),
	#                                u'bGlyoPPLIBrGtOeNzRJe'],
	#                         2: {   0: 5706,
	#                                1: Decimal('6888045546.79'),
	#                                2: [u'ZAdtEMrKfLHdURnSagwI', -2130.1653068]}},
	#         u'tenetur': {   6: 8263,
	#                         7: [   9683,
	#                                u'hLeSRalvrMYCmlZyWJUt',
	#                                -7463596611226.85],
	#                         8: {   6: u'neigenwillig@kobelt.de',
	#                                7: u'DBPRIxjgijRHqzmCmLOt',
	#                                8: [   u'ROvyVXeNrXnctQfnfhWQ',
	#                                       u'wiWPNNAPKVXpSdRIGZQF']}},
	#         u'voluptates': {   3: u'meyercornelia@moechlichen.com',
	#                            4: [   u'http://staude.de/tag/category/blog/search.html',
	#                                   u'ZhJqknAtzMUdhLfTcgwZ',
	#                                   u'hbaehr@gmail.com'],
	#                            5: {   3: 8954,
	#                                   4: u'https://johann.de/homepage.html',
	#                                   5: [u'UQIKCRuNFBoNSlsbFBdx', 8894]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   5368,
	#     3721,
	#     -8087682368.3,
	#     u'gkSRVaoCTpBbqoTgAeGe',
	#     u'krebsantonia@hotmail.de',
	#     u'ajkcUpXBGBTDuPyxoKcN']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   8868321568000.7,
	#     u'kJeSDEpXAhMSGaUlDmKE',
	#     u'cwliuDTyZUdwANFXFLhj',
	#     datetime.datetime(2003, 7, 6, 4, 30, 30),
	#     u'ZpysoiAzQQJJVNtyRiDs',
	#     u'GbqIsyMxdFbwaavpVdjD',
	#     u'WBGKwGkhPAUDCdaBCsZE',
	#     u'radischnathalie@wulff.org',
	#     u'QmZqRHRqjnbecIIoNADw',
	#     u'EbKfjFsXcppPJNWgxrph')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([datetime.datetime(2017, 1, 13, 11, 5, 15), u'WLsAJetpkhfAUjneXpiO', u'ZBmTNYguekfEkMurfYAm', 9061, Decimal('717372.751322'), u'https://www.van.net/category/', Decimal('-7791334894.69'), Decimal('-29211.8692'), datetime.datetime(2007, 3, 10, 14, 53, 58), 89, 405327648184406.0, u'bicLsnFPKUDLBGxWvjlV'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'animi': 1452,
	#     u'dolorem': u'rRNKsPhwXlabodXZtYAc',
	#     u'dolorum': u'olpfYPnhBfvxzbswjkwF',
	#     u'eveniet': u'http://www.kruschwitz.com/login/',
	#     u'fuga': 8527,
	#     u'fugit': u'nxKYLMpHXKMGayUMzoql',
	#     u'ipsam': 5343.79622,
	#     u'libero': -613557380.42,
	#     u'maiores': u'vPTChLgPotDGpEgSJZTQ',
	#     u'quasi': u'ngunpf@reising.de',
	#     u'reprehenderit': u'kgalhMzDsfXckENDdnZJ'}

	fake.pyint()
	# 9462

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'293-51-8912'

	fake.ein()
	# u'15-8803078'

	fake.itin()
	# u'975-81-2564'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 4.0; wal-ET; rv:1.9.2.20) Gecko/2017-04-17 14:34:00 Firefox/7.0'

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

	fake.opera()
	# u'Opera/8.16.(Windows 98; cmn-TW) Presto/2.9.188 Version/11.00'

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

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

	fake.user_agent()
	# u'Opera/8.26.(X11; Linux x86_64; mn-MN) Presto/2.9.162 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 6.0) AppleWebKit/5341 (KHTML, like Gecko) Chrome/36.0.880.0 Safari/5341'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_9 rv:5.0; ak-GH) AppleWebKit/534.4.4 (KHTML, like Gecko) Version/4.0.3 Safari/534.4.4'
