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

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

::

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

	fake.street_name()
	# u'Marcel-Just-Gasse'

	fake.address()
	# u'Theresa-Jahn-Ring 0/3\n5458 Oberwart'

	fake.street_address()
	# u'Brunnerweg 4'

	fake.postcode()
	# u'6072'

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

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

	fake.country()
	# u'Pakistan'

	fake.city_name()
	# u'Zwettl'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'2'

	fake.street_suffix_long()
	# u'Platz'

	fake.street_suffix_short()
	# u'str.'

	fake.city()
	# u'Feldkirch'

	fake.state()
	# u'Wien'

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

::

	fake.license_plate()
	# u'DE-3709'

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

::

	fake.bban()
	# '6752395610414244'

	fake.bank_country()
	# 'AT'

	fake.iban()
	# 'AT805605273673783595'

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

::

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

	fake.ean13()
	# u'3868569216044'

	fake.ean8()
	# u'70152838'

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

::

	fake.rgb_css_color()
	# u'rgb(164,52,222)'

	fake.color_name()
	# u'Crimson'

	fake.rgb_color()
	# u'195,109,208'

	fake.safe_hex_color()
	# u'#338800'

	fake.safe_color_name()
	# u'silver'

	fake.hex_color()
	# u'#9b89d6'

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

::

	fake.company()
	# u'Huber Inc'

	fake.company_suffix()
	# u'LLC'

	fake.catch_phrase()
	# u'Digitized multi-state standardization'

	fake.bs()
	# u'monetize out-of-the-box metrics'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nNico Binder\n4990782344978538 02/25\nCVC: 973\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'POT'

	fake.currency_code()
	# 'DJF'

	fake.currency_name()
	# 'Uruguayan peso'

	fake.cryptocurrency_name()
	# 'Vertcoin'

	fake.cryptocurrency()
	# ('NEM', 'XEM')

	fake.currency()
	# ('BOB', 'Bolivian boliviano')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 2, 4, 12, 56)

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

	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(2014, 9, 11, 1, 26, 34)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 2, 12)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 11, 13, 41, 56)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 9, 25, 0, 38, 9)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 6, 5, 1, 30)

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

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 10, 58, 30)

	fake.date_object(end_datetime=None)
	# datetime.date(1990, 11, 17)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 7, 1)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2009-05-22T02:27:08'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2004, 11, 27)

	fake.month()
	# '05'

	fake.year()
	# '1980'

	fake.day_of_month()
	# '08'

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

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

	fake.century()
	# u'XIV'

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

	fake.time_object(end_datetime=None)
	# datetime.time(9, 27, 6)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 6, 14, 3, 24, 43)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1985, 9, 14, 23, 48, 33)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 4, 16, 29, 50)

	fake.month_name()
	# 'March'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1996, 11, 17, 8, 52, 19)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(1430, 22092)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/commodi/laudantium.key'

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

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

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

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

::

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

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'oliver53@schmid.net'

	fake.url(schemes=None)
	# u'http://fuchs.co.at/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'login'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'leomayr@gmx.at'

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'benjaminmayr@karner.org'

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

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

	fake.domain_word(*args, **kwargs)
	# u'jungbauer-karner'

	fake.slug(*args, **kwargs)
	# u'neque-iure-quas'

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

	fake.company_email(*args, **kwargs)
	# u'vwinter@berger.com'

	fake.uri()
	# u'https://eder.co.at/tags/list/terms.php'

	fake.ipv6(network=False)
	# 'ff7e:6bba:55ac:1813:135a:a38f:6b79:e6ed'

	fake.free_email(*args, **kwargs)
	# u'oliver89@gmx.at'

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

	fake.mac_address()
	# u'cf:55:28:35:cc:cc'

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

::

	fake.isbn10(separator="-")
	# u'0-17-656656-2'

	fake.isbn13(separator="-")
	# u'978-1-971138-61-9'

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

::

	fake.job()
	# 'Psychologist, counselling'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Placeat provident suscipit optio.\nIllo autem ab. Animi quis quas. Magnam ex accusamus eius hic.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Veritatis officia ut ducimus accusantium repudiandae dolor.',
	#     u'Porro praesentium doloremque.',
	#     u'Ipsa veniam eligendi ex quibusdam aliquam. Unde dignissimos illum culpa eos. Ipsa cumque porro labore maxime ex.']

	fake.words(nb=3, ext_word_list=None)
	# [u'optio', u'recusandae', u'quisquam']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Eum ut labore atque dignissimos aspernatur.',
	#     u'Tenetur voluptatum explicabo error.',
	#     u'Excepturi beatae ex perspiciatis expedita laudantium hic beatae.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Molestias quaerat quae molestias. Velit ipsam veritatis eligendi dignissimos tempore.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Blanditiis natus vero adipisci quaerat.'

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

::

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

	fake.locale()
	# u'is_IS'

	fake.binary(length=1048576)
	# bytearray(b't5\xcd\x84\xcc\xb1\xcc\xb6S\xc0\x12:\xfce}L\x19\x0c\xc8n\xfcz\xd6@\x0c\xe8\x89V~\xf5~\xdb\x93\xd0\xf0\x84\x9e\x0e\xdb\x8b.\xa88;l\xff\xb4\xd3LY\x0eD\xd55%\x15R\xdb\xdb\x97\xbdS$\xd0\xe3\x18\xd9\xa2&>\xaf\x8b\x07\xc3\xc7\x9aj\x1d\xda\xfd\xed^l\xe2\xe5\xaf\x12\x06\xac?\x9c\x12\xdc\x0f\x1ea\xd4\x87\xab\xce\xee\x9a\xe5l\xca\xb6\xb9k\xcd?\xf0lL\x00>\x85\x92\xc1\xae\xefe\x1c\xf5\xb2S;i;\'\xf8\x99\xa2\xda\x8d\xd5\xaa\xec\xafge%\xe2\xd9_-\xf8\x04\xa9\xf9\xdd\n\xaa\xf3\xb3\xa5}\xad\x1e\x07\x9b\xfdA\xc37,7l\x0f\x9f\xff\xba;-\xe2`\xc0h\x8d\xe4\xc0m\xbe\xed\xfc\x12\x1a\xc4\xae\x0b\x97\x8d\x08\xc8\x84\xba\xdc\x86$\xfcX;\xfe`\x91o\xa4|\x83\xe3\xc5C\x1a\xc5r}E\x07.\xb1%<\xea\xe2\xc9f\x87~\xa5\xde\x1bC\xec(\xaf\xf2\xefn\x7f\xb5\x9a\xf9Vt3\x1abY(\xe4\xc2\'\xa5v\xc3\xf3n\xcd\x17K\xcf\xa4\x0c\x8f\xa1\x1a-\xab\xd9b\xa2\xda;\xba8\x00g\xdbK\xb5\xcf\x91\x19sH\xe5"\xff\xe4\x1d\xd4\x1d\xf3\xe5\x1d\xf8\x8d{/\xa49f3\xfd\xe5f\xf9\xf9\xb0\xffNA\xefr=\x84\x85\xb9\xcb\xc2\x94x\x9e\xc6\x83\xf4\x94\xb3\xba\xbc\xbc\x13\xd2\xb8\xd6\xbc\xc0\xb7\x96\x00\x96R-\x1f,\x95\xd0p}m\x1e\xda\xed\xb0\x95ii\xc3C\xcf\x93/\x90\xde\xaf$\xce\xccb\xc9\xdd\x12&e)\xfd\xbe!\xfa\xdb\xf4\xb6@x\xb5Jo\x19\xb3w\x94\xdf@\x1d.\xc2\xac\xf4l#\x8d\xc3\xb0\xee\xd4n\xdc\xd3\xb7t*\x11\xd7\x88\xec`\xc5\xd6\x14o]\x93\xedLkh\xf2^\xe8\x91>c\xd6\x98K{LF\xda\x178p\x93\x94G\xea\x1b\x82"\x0fU\x07\xb3\xe1\x9c0\xc2\xec\xf6\x18J\xc9=:\x1e\x82\xba\x97\xc4Kw"\x140\xe4\xcfc!\xbdNT6E\xde\x91!\'b\xfdP\xfc\xfbY5C\xa8TA\xcd\x0b\x1f\x95\xb8L\xce\xbaJ\xc3\x8b-\x1d\x1e\x0bN\xb2d<\x9cB\x06g\x9b\xc60\x07\x86\x98\x82M\xbe\xe4&n\xf9,\xa5v\xee\xa3\xea\xd0\x98,)$\x04\x91>\xe7\x03\xdco\x96u\x02>\xc8\x8f\xa0\x02\xc6\x10l\x9b\xe0\x14\xde\xf8\xfa;\xd7\xfe\x87\xb1\x91\xaav2\x99i\xb8HW*\xc6-\xef\xa4\xbf\x1f\xab\n@\xe3\xf0\xa6\xe0_\xec\xd6z\x92\xa9ID^\xda\xcf\xb8\xea\xf1\xfa}[\xfa`\x12\xbe\xb5%4*a\x06\xc2c%\x95\x90\xa8O\x1by\x0c\xc3\xa1Fg:\xf8\x17.\xd6\x8b\xc4\xb0\xe5N[3\x0e\xf0d\x92\xf3=\x99\xc9\xc5\x8f\x9d\x1d\xb7\xe8\x1a\xa8\x8aI\x83\n\x97\x00\x10\xb9~\n\xf7A\xfb\x82\x0fd\x0f\xde\x0f\xc3V\xd7\x9f\xb0\x01\x1c*N3\xae\xc1B\x08\xd4\xa0b\xe2\'T\x87J\xd3g\xd4\x08\xc7\x1b\xea\xa0\xfcF\x01p\x0e\x8e\x80\xdacp+w\xf7-\x89\xac\x83\xf7^K\xc9\x19=\xaam\x1c\xf1K\xc4\xdb#\xd9\xa0\xb1*\x02g\xabq\xce\x87=\x1a\xbd\xd7\x8e\x95Ke\xf5\xfe\x88!\xb4\x8fo\xa1#\\\xb6\xec\x9d\x93\x04\x17\xa0^\x1a\x11\xe9\x82?\xee18\xb5Qj\xa5ln*2\x17\x1dZ\xe1&3\x88Y\x98\xc2Q=\xe7@\x08\x0f\xbd\xe3\xf9D\xbb\xb1\x05\xfa\x8f\xc1.\xbe\x9f\xd3E\\\xbbE\x96\xa2\xaa\xca\xe9`\xff\x1c\x01\xd4\xff\xe9\r1T\xc3\x8d\xbb\xa9\xb32F\x9e+\x04\xad\xc8\xe3\xeeT\xc7\xf4\x12\x1f\xd4r\x8d\xef"q\xcd\xb3f\xbf\x03H3\xc3y\xa6\x11\x08\xb2\xbbpD\xf7\xab\x85\xf5.\xa3\xb4\xe0\x15\xa3\xe3I,\xbd\xe8\xcf\xfcu4\xfc\x86A\xc0(Cv\xf8<\xc47S\xb4SP\xdc\xf3\x1b\xc1\xf7\xc8\xf9\xb8\xb7\x0bE\xbc\xe2EL\xa9\xe1\xae\xfb,1\xf4\x8cBFC\xe9\xd0\x12\xfd|\x06\xce+\xbd\xef^f\xc3\x8f\x08\xec3\xff\xcd\xa7\xee\xb3\x01\xe29d;\xc0\xdf\xc9\xe2p\xe0\x0e[\x8a\xe57\x15\x1dC\xcc\xdc\xc5\xefT7\xc3\x8bO\xce]J\xd5>\x8b\xc5\x12\xe5\x8a\xe14\xcf\xb9\xc8k\xe0\x8a\xcf*k\x00\x11\x12\xc4OX')

	fake.md5(raw_output=False)
	# '7625133948becbf11138739c3d56038a'

	fake.sha1(raw_output=False)
	# '676d341a87986e3f7b80709ec4d3539f37d6633a'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '0ea847a9961fb658d8c812a678da42a9e55249a974d4a72d10cc592be7e42de4'

	fake.uuid4()
	# '1c17b9f8-f9cd-0883-c9a4-5c4e7db2edae'

	fake.language_code()
	# u'zh'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Cech'

	fake.name_female()
	# u'Laura Koller'

	fake.prefix_male()
	# u'Dipl.-Ing.'

	fake.prefix()
	# u'Dipl.-Ing.'

	fake.name()
	# u'Gabriel Weiss'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Alexander Steiner'

	fake.first_name()
	# u'Fransizka'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Fransizka'

	fake.first_name_female()
	# u'Andreas'

	fake.last_name_female()
	# u'Gruber'

	fake.last_name()
	# u'Schuster'

	fake.prefix_female()
	# u'Dipl.-Ing.'

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

::

	fake.phone_number()
	# u'(674)759-8005'

	fake.msisdn()
	# '3494358813372'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Fischergasse 8\n3770 Salzburg',
	#     'birthdate': datetime.date(1942, 2, 3),
	#     'mail': u'lehnerjasmin@chello.at',
	#     'name': u'David Cech',
	#     'sex': 'M',
	#     'username': u'julianebner'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Olivia-Stadler-Gasse 91\n5202 Weiz',
	#     'birthdate': datetime.date(1953, 9, 16),
	#     'blood_group': 'B-',
	#     'company': u'Fasching, Karl and Pichler',
	#     'current_location': (Decimal('46.800492'), Decimal('12.559118')),
	#     'job': 'Orthoptist',
	#     'mail': u'samuel05@kabsi.at',
	#     'name': u'Christian Steiner',
	#     'residence': u'Dominik-Lang-Stra\xdfe 816\n4090 Gleisdorf',
	#     'sex': 'F',
	#     'ssn': u'759-23-1083',
	#     'username': u'maxcech',
	#     'website': [   u'http://www.leitner-moser.net/',
	#                    u'https://www.schwarz-cech.com/',
	#                    u'https://fichtner.net/',
	#                    u'https://www.schuster.org/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'PcPYZnyxqrMqWJYXAnnq', u'eKvqtAydbsTJidWHwMuj', u'CXUhTAgrkbfAuSJmjSpV', 2417, u'xeMkYHMRVvowJkbaSMIO', u'vwibqbKIgGhOsdKGeeVK', datetime.datetime(2001, 1, 13, 22, 16, 31), u'gZBoFIBueWTpCRTJjJKe', 85652075.9])

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

	fake.pystruct(count=10, *value_types)
	# (   [   Decimal('-67054761469.2'),
	#         6287,
	#         datetime.datetime(1985, 10, 22, 9, 44, 20),
	#         2470,
	#         u'tgTaLmziNLasNuXIaRTf',
	#         1561,
	#         u'TCqfNQdTvVyPaOLkGMjM',
	#         6666,
	#         Decimal('9.85216251304E+12'),
	#         Decimal('6.83702051343E+12')],
	#     {   u'ab': u'XmQhXdflzSGrbKNJfGIx',
	#         u'alias': u'ltsfggJqkcqANaHNsBfy',
	#         u'autem': u'https://www.fasching.co.at/',
	#         u'consectetur': -3265429789361.6,
	#         u'eaque': u'MjtvgCMrojLqklbrbzmL',
	#         u'modi': u'qgrabner@cap.org',
	#         u'nesciunt': 4380,
	#         u'recusandae': u'fMEzHHmMFEepIdJsFMBv',
	#         u'totam': u'FtbEwyksCuQebnDQJpts',
	#         u'vero': u'BrLTpNQEFrcDupRkNNEV'},
	#     {   u'delectus': {   2: u'rJAmqCunToOxrqjQQRxQ',
	#                          3: [   u'https://www.gruber.at/category/',
	#                                 datetime.datetime(2007, 1, 28, 23, 24, 4),
	#                                 6341],
	#                          4: {   2: u'http://hofer.co.at/tags/post.php',
	#                                 3: 2997,
	#                                 4: [   u'OjFFTRBngFCLUtnuHrzv',
	#                                        u'LSIHrlCQwMFBJrtUNZOg']}},
	#         u'dolor': {   5: u'https://www.wieser.com/category.html',
	#                       6: [   u'vbZIlJyzTyxhndVZLAet',
	#                              -12739732876.651,
	#                              u'isabeljakob44@gmail.com'],
	#                       7: {   5: 762,
	#                              6: -149224.10973086,
	#                              7: [   927147.1,
	#                                     datetime.datetime(1977, 10, 8, 19, 48, 49)]}},
	#         u'error': {   3: 55031573202.854,
	#                       4: [   u'sKpniYAeujAzlRCEecOu',
	#                              5376,
	#                              u'https://www.holzer-jung.com/wp-content/posts/index.htm'],
	#                       5: {   3: -9053.784,
	#                              4: u'xprrHlypQmoJGRcCmDhQ',
	#                              5: [   datetime.datetime(1974, 5, 25, 4, 43, 30),
	#                                     u'EvQxqbxvDNmfInmHKRvK']}},
	#         u'in': {   4: u'skhmmUehEesXmJQVkgql',
	#                    5: [   u'http://www.egger.net/blog/home.php',
	#                           u'MArUCyHllxulhQfLDBPS',
	#                           u'http://schmid.co.at/'],
	#                    6: {   4: Decimal('-4.08309639779E+14'),
	#                           5: 9577,
	#                           6: [   datetime.datetime(1997, 3, 31, 14, 25, 18),
	#                                  datetime.datetime(1987, 2, 14, 14, 20, 18)]}},
	#         u'nihil': {   9: u'MHYXzgMiiFApslHINaJA',
	#                       10: [   u'https://itzlinger.net/',
	#                               u'zggBspITQRDIJDcbYYRr',
	#                               u'DLoeTojTXzRLIVILshmm'],
	#                       11: {   9: u'QhKRQoCrcdjcCIctbOFu',
	#                               10: u'https://www.illes.at/main/list/category.htm',
	#                               11: [3695, u'AtAogosReZOeWhdEWaej']}},
	#         u'quis': {   1: u'wRRqsekVecnYqMhBCHpz',
	#                      2: [   u'WsrKrqmfsQYcEbgSaLpU',
	#                             datetime.datetime(2008, 9, 13, 11, 56, 37),
	#                             u'BcOKBAHZHNSTMyjcYboe'],
	#                      3: {   1: 36,
	#                             2: u'uZiisjPyOQscZWjmJXZF',
	#                             3: [   u'YTharQbMMMMyaaJxSnru',
	#                                    u'kYHwsLoSSUTUSbvlvdom']}},
	#         u'quo': {   7: u'http://weiss.com/list/main/index/',
	#                     8: [   Decimal('33307736996.3'),
	#                            u'MvyaaVKupqgkMOadMHFO',
	#                            1162],
	#                     9: {   7: u'CGCeCXFwysxBMSrGJjFe',
	#                            8: -389947073185.4,
	#                            9: [   64.949785,
	#                                   datetime.datetime(1999, 1, 17, 13, 47, 54)]}},
	#         u'similique': {   6: u'HUUQSKapPXqybwshLpHL',
	#                           7: [   datetime.datetime(2016, 12, 31, 8, 18, 15),
	#                                  Decimal('-244301.12474'),
	#                                  datetime.datetime(1993, 2, 6, 22, 24, 15)],
	#                           8: {   6: 479732312.521,
	#                                  7: u'https://wimmer.co.at/category/category.php',
	#                                  8: [u'bKYhrttLsfkPTxqGFwGf', 9079]}},
	#         u'sit': {   0: 7862,
	#                     1: [   46.5795,
	#                            u'UerwKfIycsgzWfRVtXHw',
	#                            Decimal('5.23774446099E+13')],
	#                     2: {   0: 430928492.938346,
	#                            1: u'eggertim@gmail.com',
	#                            2: [8264, u'tbaumgartner@gmail.com']}},
	#         u'voluptatem': {   8: 1620,
	#                            9: [   9320,
	#                                   u'https://www.dienstl.org/register/',
	#                                   u'BemHgCwHIVwpRoeRRTao'],
	#                            10: {   8: u'AFgxHoWeCGeSFjAJBpvm',
	#                                    9: 50233398.650714,
	#                                    10: [7457, u'GOJbNQcvuDpJpwXoObzW']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'HbLiHpflnvbcGdLjHLuF',
	#     734,
	#     -322545.3,
	#     9052,
	#     Decimal('28443.1190823'),
	#     datetime.datetime(2002, 7, 11, 4, 21, 29),
	#     Decimal('7.65762073956E+12'),
	#     datetime.datetime(2016, 11, 25, 12, 47, 3),
	#     4434]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-1319946909.4'),
	#     u'qwinter@gmail.com',
	#     datetime.datetime(1989, 8, 15, 0, 33, 41),
	#     u'SqmeWadATShDGgpLlTOb',
	#     8334475586.5139,
	#     u'WgJVGcVOGrGhqDwxYWBf',
	#     25948253814.0,
	#     7994,
	#     u'baorNogZUNBpHVESoLxg',
	#     u'VNupvkiSTWBdZhBmfMfa')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([Decimal('9.23302583996E+14'), Decimal('8.36256687353E+13'), u'CUSsSJNnZIKwEwppUZng', u'ynZGAIBSlLIYnCMkGdOp', u'XZaSFtjQOVbsnhSNOYJZ', u'RPfriCwhWUcnjFhsMDeR', u'CMmIUNHDBmCPNfzXeWvM', 2482, datetime.datetime(2010, 6, 30, 13, 50, 43), 9436, u'GulrdCBaPaRJDaVVsOJG', u'qhyuPOEMtAyANEHTUcpv'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'eum': u'iEiLWchGTmQlBbtBZIbz',
	#     u'molestiae': u'GcSBwnqncnjyRNkcfOPs',
	#     u'quam': datetime.datetime(2002, 3, 25, 2, 54, 1),
	#     u'quas': Decimal('-68405133240.7'),
	#     u'velit': u'wuPmQIZMAYXasjTzwEaA',
	#     u'voluptatem': u'KenMLOySWAxRcjnkZAzY'}

	fake.pyint()
	# 6164

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'175-17-8713'

	fake.ein()
	# u'27-7656713'

	fake.itin()
	# u'964-73-1288'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_4; rv:1.9.5.20) Gecko/2012-04-09 15:21:57 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.83.(X11; Linux i686; ks-IN) Presto/2.9.170 Version/12.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5352 (KHTML, like Gecko) Chrome/26.0.850.0 Safari/5352'

	fake.linux_processor()
	# u'i686'

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

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

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