
Language de_AT
===============

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

::

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

	fake.street_name()
	# u'Max-Jung-Ring'

	fake.address()
	# u'Paula-Lehner-Ring 37\n8505 Ebenfurth'

	fake.street_address()
	# u'Marcel-Jungbauer-Gasse 10'

	fake.postcode()
	# u'8099'

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

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

	fake.country()
	# u'Brunei Darussalam'

	fake.city_name()
	# u'Schwaz'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'438'

	fake.street_suffix_long()
	# u'Ring'

	fake.street_suffix_short()
	# u'ring'

	fake.city()
	# u'Friesach'

	fake.state()
	# u'Burgenland'

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

::

	fake.license_plate()
	# u'67-28198'

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

::

	fake.bban()
	# '0794431518708450'

	fake.bank_country()
	# 'AT'

	fake.iban()
	# 'AT528529702533559290'

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

::

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

	fake.ean13()
	# u'9043500727238'

	fake.ean8()
	# u'26052250'

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

::

	fake.rgb_css_color()
	# u'rgb(212,177,58)'

	fake.color_name()
	# u'Peru'

	fake.rgb_color()
	# u'71,218,106'

	fake.safe_hex_color()
	# u'#ff1100'

	fake.safe_color_name()
	# u'gray'

	fake.hex_color()
	# u'#779dfc'

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

::

	fake.company()
	# u'Geisler Inc'

	fake.company_suffix()
	# u'Inc'

	fake.catch_phrase()
	# u'Pre-emptive high-level adapter'

	fake.bs()
	# u'redefine cross-platform applications'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nIngrid Deng\n180085124162044 10/21\nCVC: 982\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'XPM'

	fake.currency_code()
	# 'RUB'

	fake.currency_name()
	# 'Ghanaian cedi'

	fake.cryptocurrency_name()
	# 'Zclassic'

	fake.cryptocurrency()
	# ('BURST', 'Burstcoin')

	fake.currency()
	# ('STD', 'S\xc3\xa3o Tom\xc3\xa9 and Pr\xc3\xadncipe dobra')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 17, 12, 53, 59)

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

	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(2000, 12, 5, 20, 39, 6)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2010, 11, 8)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 7, 13, 18, 29)

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

	fake.day_of_week()
	# 'Thursday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 4, 28, 20, 42, 43)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2006, 4, 18, 12, 46, 37)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1972, 6, 9)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 8, 9)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2014-03-19T15:54:21'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2014, 6, 30)

	fake.month()
	# '10'

	fake.year()
	# '1974'

	fake.day_of_month()
	# '11'

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

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

	fake.century()
	# u'VIII'

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

	fake.time_object(end_datetime=None)
	# datetime.time(19, 2, 54)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 1, 13, 0, 52, 54)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1981, 4, 11, 6, 58, 3)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 30, 22, 12, 28)

	fake.month_name()
	# 'April'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1350, 2, 3, 9, 27, 12)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(35, 60727)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/quibusdam/aliquid.doc'

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

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

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'alexander07@chello.at'

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

	fake.tld()
	# u'at'

	fake.email(*args, **kwargs)
	# u'idenk@wieser-riegler.net'

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

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'faq'

	fake.free_email_domain(*args, **kwargs)
	# u'chello.at'

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

	fake.ascii_email(*args, **kwargs)
	# 'konstantinlarawieser@itzlinger.org'

	fake.ipv4_network_class()
	# u'c'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'mdaume@wallner-huber.net'

	fake.domain_name(*args, **kwargs)
	# u'holzer.at'

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

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

	fake.slug(*args, **kwargs)
	# u'blanditiis-velit'

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

	fake.company_email(*args, **kwargs)
	# u'konradgastegger@felber.net'

	fake.uri()
	# u'http://www.wallner-berger.com/posts/tags/list/privacy/'

	fake.ipv6(network=False)
	# '4031:c792:72ed:9cf8:ac4e:9d2a:536e:a428'

	fake.free_email(*args, **kwargs)
	# u'uwinter@kabsi.at'

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

	fake.mac_address()
	# u'36:54:b5:d7:25:f0'

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

::

	fake.isbn10(separator="-")
	# u'0-323-25481-0'

	fake.isbn13(separator="-")
	# u'978-1-65586-840-5'

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

::

	fake.job()
	# 'Fish farm manager'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Architecto adipisci incidunt.\nDolorum ea ea ullam itaque. Temporibus ullam accusantium sapiente fugit.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Ipsam asperiores excepturi aliquid. Fugit enim eum blanditiis possimus non officiis.',
	#     u'Libero ad velit corrupti dolore vitae. Veritatis rem distinctio id.',
	#     u'Facilis voluptatem repellat quia similique neque. Harum dolores totam.']

	fake.words(nb=3, ext_word_list=None)
	# [u'odio', u'illum', u'ratione']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Doloribus illum nobis.',
	#     u'A ad totam dicta sunt.',
	#     u'Ipsum deleniti ab quisquam voluptatibus temporibus nihil.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Consequatur aut sunt enim. Quis eaque provident voluptatem quisquam recusandae dolores accusantium.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Distinctio exercitationem perferendis quam natus.'

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

::

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

	fake.locale()
	# u'vi_VN'

	fake.binary(length=1048576)
	# bytearray(b']}\xdf\xd5\x89\x99\xd0E\x0c\x11\x842\x8c[\x88>\xc2x\xf1\n\xf1\xa7\x92q&\x085\x99\x087\xc3bII*\xf1\x10$\xdb\x95Z\xb3\xc6\xc6\xa2\x8a g\x1e\xe1\xb5\x11\x08\xce\xca2\x1a\xe7\x00\xafp\xa2;\xd9p\x1aP\xb3\xa21\xa9pg\\i\x98\xe2\x01\xa2\x83d?\xc9\xb8\x8b\xbeE6\x93kA\x92\xcb\xb6\xd8\xceT\xf3`\xcf\x13!\xf7DM\xc6\xefI\xb3\xca\x13\x14$\xcf\x81Re\x149\x12<\xb0\xc2\xb7\xe97\xa0\xbdV\x9e\xfd\x93\xd7fJO\xf5\x14;\xf8\xcfJ$\xc1\xf4M\xe2\x1f\xdd+\xfd\xcb\x8e\xa7\xb71A\xb4\xdbfZ\xa6T\xa4\x95\x1agt\xad{Q\x9a\xc9\xf3\x16:\xaf*\xa1\xe9X9\xea\xe2\x8d\xf8\x99I\xda\x08l#\xe8\xf7\x9b\x8e\x16\xa1!\xe1\x17X=\xae\x96\xed\xb5\xb4\x83c\x82\x17\x95L\xbdJm\xc8\x919:PBH=\xfe&\xb8R\x95\xcf\xc2\xfcT#\x0e\xdac\xc1\xf9/\xed\xbc\xd7\x92jX\xd2y!.\x1dF\xa4>ke\x95\xc9\x7f\x97\x90X\xbe\xc3Y\x1fWS\xc2\x90l\xc4mz\xc2N\xc5\xe8F\x9a\x9da\r\xb8G\x07\x0c\xed\x8f)L\xb8\xbd\xe8\x8d\x05jg\xc6j\xed\xda\x9a\x05w\xdb\xbfRT\xee\x7f\'\xbe\x8c\x8c\xf1\x15\xeb!\x06b)\x06\xc6l\x11S\xa8<\xc3:\xdc\xdc\x0eV\xae\xc1\t\xfb\xf2\xadI>C\x17\xbe\x03\xae\x1at\x8c\x062\x86\xcbd\xda\xe3\xa3Ku\xd7R/t\x85zGR1\x0b\xf0K7V \x8c\xdd"\xf6>\x1c\x8b_\xef\x9c\x8fP]I\xf8Ork\x90|B\xea\x0f\xf9z\xd8i\x82\x9aX\xf6\xeb\x02\xfc\xef\x8a\xa9\x0bEw\xe6w\xd4\xd6\x12\x0e\x94\xa9qq4\xf0\xc5\x860\x94F.\x8c\xb8\xba\xea]\t\xcb\x85\x19\xd5\xd2O\xaf7m\x84\\%3\xc5I\r\x07s\xfaCk\xc4\xb0y\x80\xc8\x96s6%\xabT\xa33K\xee\r\xd8R\xce}!\xf27\x7f\x13\xe2\x7f\\\x1dA\xc4q\xf6\x9c8j\xa5\x0f\x9e\x89\xd2\x88Zme\xc0\xfd\xcd)\x97\x9c\xd5 vyWQ\ny<Yc:\xd0\x08\xf6\xeeX\x08L|J\x03\x99\x96\xd5T\xa0\x91\x9f\xc9\x05\xac\xbeB\xb1\x06\xb6i\x172\xc1\xe4\xf5\xc5\xad\xe2\xd5\x8c\x80\xa9a-\xcaS\t\xf2\xde\x18Zu\x90)\x14\xf6\xab\x82\xba\xdd\x99\xc5\x82\xf7\x1d\xc1\xf8\x11\xd1\xed\x90\xc3\x05\xbbk,\xea\xb0\xea\rF\xfa\xb3\x95\x90\xb6\xc1\xc5\x97\xe01bn\x16.\xb9\xaa\xb0\xb1\x10m\x84\xe0N\xda\x04M\x8d\xf4\xb8\xa2\x04\x7fA_\x9dK\r\xa5\xd2\xdd\x1c\'\xea0.v\x1a8\xf2\xb1\x83\x14\x84\x15Z\x07Y*\xa0\x06\xc2\x16\x0b\xe8\xcc\xd9Cb\x86\x82?l\xc4\x88\x99M\xbf\xaf\tf\xd89\x9d"\xff\xcd\x95\xc8u\x98f\x01\x0eo\x10\xb3\xbc\xca\xcco\xab\xf3\x92\x95\xf3A\xb7\x84\x9f-J\x80f4\xcb\x03E\xad\xa3itB6\xeb\x08\x94G\x9bD1X7\x85:\xc8w\x925\x9f\xb9\x10\xcc\xbb\xbd\x00)\x1d\x0652\xea\x9c6>\xef\'\x1d\xd0\x05T\x938\x9f\x89\xf4\xf8\xca\x1e\xcd\xd2-\xf8y\xa0\x89\x8e\x1a\x88Z\xd6\x86\xe1\x80u\xae\x1a\x17\t.]z\xc8\x1cv\x0f\xc1;\x0fr9&XX8\x07\xe3\xc2\xef\x11\x88\n\xe8G\xba\xdem\xea\x83\xe6\xcc2\xeb\r}\xc9n\xd9B\xa5\xb2=\x1f#Y\xe64\x82\x82\x01\xe9aQg$\x06b\x10\xb2\xab\x94\xd0\xfe\x1f]\xa1E\xe5u\xcf\x82\xe0\xfa\xf5i\r+\' \xa9\xc8\xc0c\x06\xf7\x91\x85\xf4\xf6\x07p\t\x86\x8bR\x01@LQ\x8f&\x99N\x06\xa2y\xde\x8f\x96l\xf7N@\xad\x98\xe5\x1e+\x06l+;\xfb\xbc\x14\x1a\xfb\n;\x83\xe1i\xbc\x18\x17\xc7\x0b\xfae\xd9b\xd9Gd\xd8\xe4\xd4\xf0\x0f\x85Bqk\x92$#\xadi\n\xc5\xce\x84J\xbe;\xc4\x89\xc5\xdc\x11\xe0&\xc2;F\xabFP\x830H2\xdfp0\xc1#\xe8\xd3;\xa0L\xbb`LK>\xc5\xb9X\xb7\xaeb\x94Ki\xfb\xa4\x05\x1c\xae2\x0794Z,Z\xc7\x06\xbd\xf5R+ty\x13\xb0\x0cC3\xdf\x8d')

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

	fake.sha1(raw_output=False)
	# '39a228038ed4208464f6e2204ffa4ce63c4ec13b'

	fake.null_boolean()
	# None

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

	fake.uuid4()
	# '1108174e-2431-514b-8572-c4a75d54ae6b'

	fake.language_code()
	# u've'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Baumgartner'

	fake.name_female()
	# u'Elias Illes'

	fake.prefix_male()
	# u'Prof.'

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

	fake.name()
	# u'Maximilian Riegler'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Sophie Schwarz'

	fake.first_name()
	# u'Julian'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Tim'

	fake.first_name_female()
	# u'Marcel'

	fake.last_name_female()
	# u'Wolf'

	fake.last_name()
	# u'Maier'

	fake.prefix_female()
	# u'Prof.'

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

::

	fake.phone_number()
	# u'1-252-990-1907x01336'

	fake.msisdn()
	# '4294699783782'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Wimmerstr. 893\n9193 Traismauer',
	#     'birthdate': datetime.date(2016, 8, 30),
	#     'mail': u'fransizkawolf@gmx.at',
	#     'name': u'Konrad Chum',
	#     'sex': 'M',
	#     'username': u'lena72'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Johanna-Winter-Platz 8\n3218 Mautern an der Donau',
	#     'birthdate': datetime.date(2000, 9, 1),
	#     'blood_group': 'AB-',
	#     'company': u'Maurer PLC',
	#     'current_location': (Decimal('47.052750'), Decimal('14.837824')),
	#     'job': 'Research officer, political party',
	#     'mail': u'konstantinlaraschmid@gmx.at',
	#     'name': u'Franz Denk',
	#     'residence': u'Chumplatz 25\n3156 Bad Aussee',
	#     'sex': 'M',
	#     'ssn': u'748-86-7864',
	#     'username': u'dmaurer',
	#     'website': [   u'https://www.haiden.net/',
	#                    u'http://www.stadler.co.at/',
	#                    u'http://www.gasser-winter.org/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'meWdAnNrGyCoIxNJxzTO',
	#     u'jVwCIIObQYGibjjdVdfF',
	#     129,
	#     9741,
	#     5230,
	#     u'https://www.pichler-grabner.at/explore/posts/category.htm',
	#     u'uOgQURtKVYDTpEdgUBBL']

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'benjaminauer@maier.net',
	#         Decimal('-16865698663.2'),
	#         datetime.datetime(2006, 1, 28, 16, 10, 30),
	#         6875,
	#         u'gcgpsNDDLacEfacTAuSJ',
	#         5398,
	#         Decimal('900905.24917'),
	#         u'KzhJRLyosPrSFxVaUCSS',
	#         Decimal('3.62649424427E+14'),
	#         u'qXeGnIdJCjErQkKKfoeg'],
	#     {   u'ab': u'jgfGtAbpZNurHEZNrybv',
	#         u'earum': u'XyswcviICzGAOBFxVhGw',
	#         u'inventore': u'LzKaMFlZTNgUqwQyfEGX',
	#         u'modi': 493,
	#         u'possimus': 46.695864315797,
	#         u'quasi': u'TTRTIyxLvCKVHXmhhtEE',
	#         u'quibusdam': 106,
	#         u'ullam': Decimal('70944599.4425'),
	#         u'unde': u'FvKnREbgXbRiLuIcqlTn',
	#         u'veniam': u'GaYGaYSNlQAXtctZMjbU'},
	#     {   u'adipisci': {   0: Decimal('3822.359'),
	#                          1: [   u'https://deng.net/search.html',
	#                                 u'https://www.capek.net/main/faq/',
	#                                 Decimal('5151952.76205')],
	#                          2: {   0: u'BoCuVMlCRFlOzzYLWvHa',
	#                                 1: u'kholzer@maier.at',
	#                                 2: [u'uESdmzsuWIvmuflRaCWG', 1472]}},
	#         u'atque': {   5: u'sqfhreiAvQmwAlIWtoHV',
	#                       6: [   u'https://www.gasser-brunner.org/',
	#                              5830,
	#                              2287932684.30847],
	#                       7: {   5: u'tKOaZCkNAsbRJYwNwuRM',
	#                              6: Decimal('-80028251.3066'),
	#                              7: [u'aJloUPyFtMYWRTWqXrVS', 73550610287.4205]}},
	#         u'corrupti': {   3: u'OHtHSuFZSzadAbjhaRZe',
	#                          4: [u'valentin12@mayr.at', 32438.71, 7908],
	#                          5: {   3: u'blJdXMEErTWhGyUDXqJX',
	#                                 4: u'QlesUaukbhFQOhGguHig',
	#                                 5: [   u'jCfxcbekUYmmKEpKODsb',
	#                                        Decimal('597610.413087')]}},
	#         u'cumque': {   8: u'http://schmid.com/',
	#                        9: [   datetime.datetime(2009, 12, 17, 9, 32, 28),
	#                               Decimal('8.82018462127'),
	#                               u'OKyDbgZKhgetpBnlYcyP'],
	#                        10: {   8: 976377368386378.0,
	#                                9: 2075,
	#                                10: [   Decimal('-811712711.58'),
	#                                        u'hannadienstl@riegler.com']}},
	#         u'fugit': {   7: u'xhnhhSailogpiNfZtJVy',
	#                       8: [   85760856702.0,
	#                              571567544.0,
	#                              u'TLdMUwzSebYrTrEdrMRI'],
	#                       9: {   7: 6366,
	#                              8: -410.851369,
	#                              9: [   u'https://haas.at/index/',
	#                                     u'sLHarTWnrxxxrWmEPbUm']}},
	#         u'nesciunt': {   2: u'OmQvFkQNVNnHGpBkmwUA',
	#                          3: [   u'KxOUwCZNMQwOojdyXppv',
	#                                 6341,
	#                                 u'https://www.cech-ferstel.co.at/register/'],
	#                          4: {   2: u'GLfKZEBzqtjtCyRLAghF',
	#                                 3: u'IERRyJPOQPULkEhYjVsc',
	#                                 4: [9368.62, 9863]}},
	#         u'non': {   4: u'hQBoAUOTxEFFobFZxzAY',
	#                     5: [   2349,
	#                            Decimal('3.07016381584E+12'),
	#                            u'lloBxhSLhJqDdCQXDUls'],
	#                     6: {   4: u'XzbmZKgFJWgGgkodbscf',
	#                            5: u'https://www.reiter.at/',
	#                            6: [u'sarah55@haiden-baumgartner.at', 8658]}},
	#         u'quasi': {   6: Decimal('6.63212640949E+13'),
	#                       7: [-3071147507.97, 4437, Decimal('-10577850.383')],
	#                       8: {   6: u'https://www.karner.com/login/',
	#                              7: u'miadaume@kabsi.at',
	#                              8: [   u'qmnCwyFrtMElYHdHyXJr',
	#                                     u'HkvNsxpgYpDerouqPGwI']}},
	#         u'qui': {   9: 5235,
	#                     10: [   291165966.206,
	#                             datetime.datetime(2007, 7, 27, 15, 54, 21),
	#                             u'http://denk.com/'],
	#                     11: {   9: u'KtXkNqChNXdNjuCQxSTk',
	#                             10: u'timbaumgartner@illes.org',
	#                             11: [   u'ukxxqDMNsquexFfDxNxX',
	#                                     u'https://wimmer.co.at/search.html']}},
	#         u'repellendus': {   1: datetime.datetime(1978, 12, 14, 17, 10, 7),
	#                             2: [   Decimal('-3964468.48266'),
	#                                    1754,
	#                                    81223242.7914198],
	#                             3: {   1: u'cMdvFFIDlOVkcmtKEJdg',
	#                                    2: u'TokTeuLQRuwqdOCfYzlb',
	#                                    3: [   -1393.46624,
	#                                           u'http://ebner-deng.org/wp-content/category/explore/login/']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'atZGUbqRNnSIvErHmHxV',
	#     3161,
	#     u'https://www.cech.co.at/blog/explore/blog/register.html',
	#     u'PrSPlzGMdYCjmQhlfLYz',
	#     6143,
	#     742866187083639.0]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   6634,
	#     u'xuXcrsvykoFupTNxNMbk',
	#     Decimal('-1885938.0'),
	#     u'schwarzolivia@itzlinger.co.at',
	#     u'UrdtcYZImzdapfkhDzBc',
	#     u'brunnerpaul@leitner.net',
	#     u'GNcKQVkoBHSLJOQQALdR',
	#     u'DmePdldJinnntqvCoVZB',
	#     u'gjIPGjJmMCmUZoaAesXZ')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([17143.5688507, u'tFIITZQYLEOrVurGruID', Decimal('-112692691939'), 3573674.70156, 1516, datetime.datetime(1977, 4, 20, 22, 25, 16), u'BcPRsurpOPGshJiUXVcA', u'oOssZXDHzxCngxRvrsNP', u'jUJsOeHAqFrBguFEbQAQ', u'xpcnuQbLAKyyOBPtbkQi', Decimal('635.69'), u'ATTAnZRNoBYzgsZdcchJ', datetime.datetime(1984, 3, 2, 11, 40, 59)])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'accusantium': u'https://www.lehner.com/homepage/',
	#     u'consequatur': u'http://www.deng-itzlinger.com/explore/faq/',
	#     u'nihil': u'OHIRsimNToOmHZAPFckh',
	#     u'odit': u'JoOxaUvxhcKJnyGazmkC',
	#     u'possimus': 1964,
	#     u'quidem': u'XRZorVOYoUDCSBOGCUZI',
	#     u'quis': 2483,
	#     u'reiciendis': u'XfyKYPEeQfytzAAXDeEH',
	#     u'vero': 2600}

	fake.pyint()
	# 2674

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'291-67-6283'

	fake.ein()
	# u'48-3995434'

	fake.itin()
	# u'939-76-6537'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_4; rv:1.9.5.20) Gecko/2016-06-10 00:07:04 Firefox/7.0'

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

	fake.opera()
	# u'Opera/8.62.(Windows 98; Win 9x 4.90; mni-IN) Presto/2.9.185 Version/11.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_0; rv:1.9.4.20) Gecko/2013-02-10 01:58:19 Firefox/3.8'

	fake.linux_processor()
	# u'x86_64'

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

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

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