
Language en_AU
===============

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

::

	fake.state_abbr()
	# u'SA'

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

	fake.street_name()
	# u'Catherine Glen'

	fake.address()
	# u'683 James Tollway\nEast Steven, VIC, 2559'

	fake.street_address()
	# u'424 Gina Driveway'

	fake.postcode()
	# u'2916'

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

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

	fake.country()
	# u'Israel'

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

	fake.secondary_address()
	# u'28 /'

	fake.street_suffix()
	# u'Triangle'

	fake.city_prefix()
	# u'South'

	fake.city_suffix()
	# u'borough'

	fake.building_number()
	# u'0'

	fake.city()
	# u'Lake Elizabeth'

	fake.state()
	# u'Western Australia'

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

::

	fake.license_plate()
	# u'545-DPEB'

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

::

	fake.bban()
	# 'PSGK6026737122110'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB61YRVU7389038064498'

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

::

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

	fake.ean13()
	# u'6236280058323'

	fake.ean8()
	# u'63020120'

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

::

	fake.rgb_css_color()
	# u'rgb(190,120,58)'

	fake.color_name()
	# u'Chocolate'

	fake.rgb_color()
	# u'9,167,60'

	fake.safe_hex_color()
	# u'#550000'

	fake.safe_color_name()
	# u'purple'

	fake.hex_color()
	# u'#86090e'

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

::

	fake.company()
	# u'Sanchez, Kelley and Sanders'

	fake.company_suffix()
	# u'and Sons'

	fake.catch_phrase()
	# u'Open-source bifurcated definition'

	fake.bs()
	# u'incubate B2C technologies'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Discover\nMary Williams\n6585754371997257 02/22\nCVC: 270\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'EMC'

	fake.currency_code()
	# 'SHP'

	fake.currency_name()
	# 'Omani rial'

	fake.cryptocurrency_name()
	# 'Dogecoin'

	fake.cryptocurrency()
	# ('IOTA', 'IOTA')

	fake.currency()
	# ('SRD', 'Surinamese dollar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 4, 17, 38, 21)

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

	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(2002, 4, 15, 3, 35, 24)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2015, 9, 17)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 5, 17, 38, 32)

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

	fake.day_of_week()
	# 'Saturday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 8, 5, 19, 45, 31)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2015, 8, 31, 19, 4, 14)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1971-12-04'

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(2012, 9, 23)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 6, 14)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1983-09-13T03:23:01'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2003, 8, 27)

	fake.month()
	# '04'

	fake.year()
	# '1970'

	fake.day_of_month()
	# '14'

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

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

	fake.century()
	# u'IV'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1997, 5, 12)

	fake.time_object(end_datetime=None)
	# datetime.time(6, 1, 4)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 1, 10, 20, 47, 38)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1997, 7, 4, 9, 6, 44)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 7, 1, 2, 48)

	fake.month_name()
	# 'June'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(504, 5, 3, 15, 12, 53)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(2593, 29584)

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

::

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

	fake.mime_type(category=None)
	# u'application/font-woff'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/iure/aperiam.webm'

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

	fake.file_name(category=None, extension=None)
	# u'reprehenderit.wav'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'susan91@hotmail.com.au'

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

	fake.tld()
	# u'org'

	fake.email(*args, **kwargs)
	# u'alexanderdavis@yahoo.com.au'

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

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'privacy'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'rebeccawilson@benjamin.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'maystyler@schultz-hall.net'

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

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

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

	fake.slug(*args, **kwargs)
	# u'cum-eaque-officiis'

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

	fake.company_email(*args, **kwargs)
	# u'wardnicole@conway.biz'

	fake.uri()
	# u'https://clark.net.au/tag/login/'

	fake.ipv6(network=False)
	# 'd2d8:e3e4:469b:95d2:dbfa:efa4:ff70:d33d'

	fake.free_email(*args, **kwargs)
	# u'nguyendaniel@yahoo.com.au'

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

	fake.mac_address()
	# u'b6:67:16:a5:44:fc'

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

::

	fake.isbn10(separator="-")
	# u'1-71696-769-4'

	fake.isbn13(separator="-")
	# u'978-0-518-47497-5'

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

::

	fake.job()
	# 'Tour manager'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Fuga temporibus incidunt deserunt enim quas. Eos explicabo expedita impedit atque perferendis doloribus.\nNeque rem commodi veniam laboriosam inventore occaecati. Illum quisquam officia.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Nulla corporis enim iure. Velit magnam cupiditate libero hic molestias.',
	#     u'Voluptatem veniam velit deserunt rerum. Esse ex quaerat fugit necessitatibus fuga nihil est.',
	#     u'Modi voluptatibus voluptates ad impedit totam. A voluptas eos eos modi quisquam optio. Accusamus quae autem laudantium nesciunt. Unde nesciunt repellat repudiandae.']

	fake.words(nb=3, ext_word_list=None)
	# [u'delectus', u'quod', u'culpa']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Odio illum cumque.',
	#     u'Nostrum cupiditate sint doloribus.',
	#     u'Maiores vel soluta.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Ipsam perspiciatis dignissimos enim autem. Explicabo voluptatibus excepturi nisi modi porro. Dicta beatae at culpa quas dignissimos.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Accusantium delectus dolorum assumenda.'

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

::

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

	fake.locale()
	# u'vi_VN'

	fake.binary(length=1048576)
	# bytearray(b'0,\xd9\x84\xec\x0b\xa9\xd1\xdak\xe5Qi>\xa6G\xc1\xf2\x15\xe2\xac\x8a7\xe4.p\xddj\xd7\xe22\xe5\xcb\xd9\xe7[\xdf\xef\xf1\xack!\xcd\xcaC\xf7\xa2P\x06+eO0\xdb\xed\xf9;\x974\x86\x99\\\x88\x9b;\x9c\x1b\x9ep\xfb\x8c\xda\x84Kr\xebhN|Hd_\x1f\xc1\xc1\xf4\xb6:4sEFg\xa5x\x91[\xe0hc\x9aF\x8a=\xf94\xb5\x01\xd7\\\x82\xe7\xf0\xd9\xdbm\xda\xae\xa3\xe6O\xe2\xe2O\xed\x0b7\x12m\x04$roCx\xcaA\xadg\x88\xff+T\x89Lz\xe8\xc0\xc0`.t\xbdy\x7f\x7f(4u\xc6e?\x01\xe5\n\x11C\xe0/\xbed\xaa\xec"\xdc`\xb2\x08\x8d\xa9\xd2\xa7\xeagH\x9d\xcb\xaeu\xd1\x90H\x11\x9bW\n:\x8f\xe4\xb2\x89\xd9\xbc=D\xce\xc6\xc3{S\xdae\x0b7\x02\x8c\xf5\xc1:u\xbf\xd2\xfc\xf0\xbeG\xa5EO:m/2\xc7~/\xea\x82\x8d/\x1f\x18\x8f\xd2Y\xa3d\x08G\x07h\x969K\x00\xddr\x08<\xc2`\x19\xffV!\x83^\x8aKOo\x03Gb\xb9Qn\x9c\x0f\xf8\x1cg\xcf\x83\x1aq\x9f\xceX\x93\xf9\xfc\x8b\x1c\x93\x10\xdek^nu\x07\xb2\xacb\x94K\xcd7WZn\x16\xf4\xe8\xc6M\xf3U\xfa%\x90\x86u\x04\xf6\xd6q\r\x11\x8d+\x95\x80\xec\x18\xdfoJ\xcb\x9f\xe2;Hp\xd6(\xca\xbf\xd9Ik\xe9\xcb\xb0\x02\x8a\xfb\\\x05\xa7\x84\x8d\xe2\xa7Y\xda\xe7&6\xdeC\xf2\xa2Bk\xd4\xce\xdeJr\xab2\x05\x18\xb7\xd4-U\xa3r&:\xa2\x12\xf72]\xc3\xc7\xc2\x9c\xb8\xe0\xd5\x1d\xa9\xb5\xe5.\x12\xaa\x17k\xc2Et\x94\xa4\xf4@"\x05\xc1\xdbf\xcc\xc9\xcf\x91\xadJ\x81\'6\xf8\xa2U\x90\xd9\xb2\xdd[\x15B\xc8,\x14\xff,]\x9a\xf5~`S7>\xeb\x97\x018TS\xb2\xca+\x97\xcf&\xacW&\x9eAo\x13\xa3\xcc>\xee\x0e\x06G\xb4\x11qv\xf8=\xe9\xe3v2$\x99_R\x11\x94J2\xa8\xf2\x0c\xc56)q\x8c~\xbe#\xaaB\x8e\xbb\x9dx\xee\xfd4\xb2\x0b\x0b+\x08EBU\x93\x87\x1b\x85X$\xd9\xbd\x9d\\\x10\x8fs\x14\x93w\xc6\xd0\xab\xb3\x8e\xde\x06\xdf\xe9\xde\x8f\x08b\x89ukP\xb5\xdd\x0bc\x91\x93in_\xda\x8d\xb8\x11\n\xd8\x1b\xa0f=\x18\xf7s\x1e:z\x97\x9ec\xe7_\tAE\xb1y\x88_\xf4i\x01\xeeW\xfe\xd3\x03\xfb92\x82\xd8\xecg\xe3\r\x8a\xc8\xcbhEu\xf8n\xc0\xf0\xf0\xe9s\xccP{\x08+]{\xb2D\xe3N\xd9R\x18u\xf6RV|\x886\x96,\xdc\xb6M\xe2\xdbR"\xa7\xb5c\x82\xda\x00zF\x87\xc60\x1b\xaa\xca\x86\x9b\x13H\xcf\x17\xf1H\x87T\xb8\xac\xb6=Rq\xad\xefs(T\x02\x08\xe9\xa5"\xeb\t\xd0%\xb2\x06\xe3;\x97\x15\x11\xe8\xc9\xe3\xcd<\xdd\x0f\xafX\x98\xf6\xab\'.\xb2&#\xab#\xacb\xcd\xd1\xa8$\xb0E\xd4K\xd4\xd4\xe6D\xea\xe8\x91\xe8\xe6\x1f\x18E\xab\xedG\x84j\x0f&\xc6\x1c1C!\x83vq\xbf\xd1\x98\x10\xd5`\xe8\x1d\x1ee\xd9\xa0\x10\x1dn\x0c\x08\x13I\x89 \xa0\xc2\xea\x9c\xa6HF4\xa0\xcap)\x831\xfd\x97\xc1q\x1a\xf9,d\xeb\xd3\x8e\x8c\x03\x03\x99\x10}\xfc?\x8a\x97\x9c.\xf1\xd9vK\x0f\xa5\x9d0s\x8dc6\xa7y\xa1\xd3\x8e~A\x89\xa7\xf8EtU1\xc279\x17C`\xa6"\x81\x9dt\xda\xb2\xd8\xc5R?S\xde\x10\xb6\x91\xea\xfa$\xac\xe4}\x16G\x8b\xfe\xecu\xb21\x1e\xf4\xfbK\xd4\xc5\x9f\xe8*\x04r\x1fb\x0b?ID\xdc\x93)\x9f\xaa1\x85\x17\xd8\xc9\x9aE\x99\x07T\xc5\x14\xe7w4\x86\x8a\x19.\xcfF\xc9\x99\x19\xd5\xe8D\xa4\x8d\xdf\xf5\xfetP\xbfv5\xdeQ\xa7\xaf\x03\xe0\x0cRMs\x18\xd6\xf6\xfe]t\xfa\x8b\xd5\x98t\xf9\xbe%\x8a\x19B\x04\x00\xb07\xcb\n\x07\x82A\x8e\xbe[+\xfe\x06I\xa1\x10\xc4\xfaj\xe2?\x1b\xc2\xbd\xfeX\x91b\x109\r\xc0#\xfb\x1d\xd5>\x16\xe5\xb4\x9e\xbd.\x9e\xcacp}\xdc')

	fake.md5(raw_output=False)
	# '524eccb658367c630496feed92f17089'

	fake.sha1(raw_output=False)
	# '08600ede41b509e901f000c61b19609d882d92eb'

	fake.null_boolean()
	# None

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

	fake.uuid4()
	# '2f3234ec-1f76-11c8-6154-d224f1d04f2c'

	fake.language_code()
	# u'yi'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Scott'

	fake.name_female()
	# u'Diane Davis'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Caroline Jordan'

	fake.suffix_female()
	# u'PhD'

	fake.name_male()
	# u'Rodney Garza'

	fake.first_name()
	# u'Kyle'

	fake.suffix_male()
	# u'MD'

	fake.suffix()
	# u'MD'

	fake.first_name_male()
	# u'Michael'

	fake.first_name_female()
	# u'Melody'

	fake.last_name_female()
	# u'Shannon'

	fake.last_name()
	# u'Love'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.area_code()
	# u'2'

	fake.msisdn()
	# '0626328269541'

	fake.phone_number()
	# u'07-9156-9584'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'7 Latasha Roadway\nWilliamfort, VIC, 2961',
	#     'birthdate': datetime.date(1905, 10, 12),
	#     'mail': u'vmendoza@hotmail.com',
	#     'name': u'James Walker',
	#     'sex': 'M',
	#     'username': u'juliewhitaker'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'37 Daniel Turn\nWest Theresaton, WA, 2512',
	#     'birthdate': datetime.date(1928, 5, 5),
	#     'blood_group': 'B+',
	#     'company': u'Diaz-Charles',
	#     'current_location': (Decimal('36.281683'), Decimal('-105.503271')),
	#     'job': 'Warden/ranger',
	#     'mail': u'bmccann@yahoo.com',
	#     'name': u'Gina Garcia',
	#     'residence': u'946 Robert Cutting\nNew George, VIC, 2990',
	#     'sex': 'F',
	#     'ssn': u'871-96-9056',
	#     'username': u'valerieanderson',
	#     'website': [u'http://anderson.com/', u'http://harris-moore.org.au/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'AhNWfmqJTgGtkfibRUyL', 4872, u'https://chen-schultz.com/', u'tOMNPCkKoBKggGeTLeLo', u'kqWdDrBFunGTwunKkZGF', u'HQGmQsPmGlAutQZIZeOt', u'UdssdeQVHNKLoUdyuAFs', 6810, u'https://lewis.org.au/register/', 7007])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'walkerrichard@english.biz',
	#         Decimal('-109892178.469'),
	#         Decimal('55176.0'),
	#         u'dcooper@clark-mullen.com.au',
	#         -566300.201,
	#         u'sgRlIOaKdqLFeuZhtDov',
	#         u'uFGjbMDbFKnIszuKTtJZ',
	#         Decimal('1.79560804556E+12'),
	#         136376376409.0,
	#         8714],
	#     {   u'aliquam': datetime.datetime(1977, 1, 22, 18, 58, 4),
	#         u'commodi': u'https://wang-campbell.net.au/terms.jsp',
	#         u'facere': 933145236.6,
	#         u'facilis': u'noahchristensen@rivera-brown.com.au',
	#         u'ipsa': Decimal('-3.68261370671'),
	#         u'labore': -630672.1471013,
	#         u'magnam': u'LzuBZVHdWrJfTkwujhzy',
	#         u'non': u'tLDFLNxKiesCEXDaNgUE',
	#         u'ullam': 4070,
	#         u'unde': u'vAfbAzeVWwzatmcQRSzs'},
	#     {   u'accusantium': {   6: u'mdceXNgKFxwtjuFREewf',
	#                             7: [   datetime.datetime(1998, 3, 24, 6, 22, 32),
	#                                    datetime.datetime(1982, 3, 21, 13, 33, 37),
	#                                    u'kturner@griffith.net'],
	#                             8: {   6: u'zpFlyTQAayovWazdHOiR',
	#                                    7: u'fjXuZAQxFhhAyPLzFpEB',
	#                                    8: [   Decimal('-784227.881391'),
	#                                           Decimal('-33407627320.9')]}},
	#         u'alias': {   4: u'QMtIyteJSnZduCWBsIDu',
	#                       5: [   u'dipWyaGQXleTqlKEmhVM',
	#                              Decimal('-869251.91443'),
	#                              -275895073234.398],
	#                       6: {   4: 3817853628.7,
	#                              5: 5382,
	#                              6: [   Decimal('-48.0'),
	#                                     datetime.datetime(1990, 10, 23, 17, 37, 14)]}},
	#         u'animi': {   3: 3689,
	#                       4: [   -50896196387.85,
	#                              datetime.datetime(1981, 9, 3, 6, 5, 32),
	#                              datetime.datetime(2001, 9, 21, 20, 22, 4)],
	#                       5: {   3: datetime.datetime(2014, 7, 10, 17, 39, 54),
	#                              4: 5545,
	#                              5: [   datetime.datetime(1976, 5, 12, 5, 43, 49),
	#                                     u'rleEwTMBFyvXetBWmjgX']}},
	#         u'asperiores': {   1: Decimal('-50024163501.4'),
	#                            2: [   u'DaKtQVQMXiNNeRLNiRno',
	#                                   datetime.datetime(1975, 8, 22, 1, 54, 18),
	#                                   u'jimenezbrandi@nguyen-carpenter.com.au'],
	#                            3: {   1: u'santoskevin@baker-watson.org.au',
	#                                   2: u'https://www.alexander-jenkins.com/index/',
	#                                   3: [   u'pgonzalez@elliott.com.au',
	#                                          -60.2623824401]}},
	#         u'consequatur': {   7: u'ewatson@johnson.net',
	#                             8: [   Decimal('-84745606.7987'),
	#                                    Decimal('73934.31'),
	#                                    u'pLXOFmGzejfzIhaEaSNJ'],
	#                             9: {   7: u'TjSTXbZukYFlUBShyCsS',
	#                                    8: u'https://brown.com.au/list/search/',
	#                                    9: [u'joshuapratt@smith.edu', 5415]}},
	#         u'laboriosam': {   5: 4141,
	#                            6: [   u'https://dudley.biz/privacy.php',
	#                                   u'oADpVDUbbznafabACCRO',
	#                                   u'http://www.dickson-wang.net/list/author/'],
	#                            7: {   5: u'DopJPMJSuQgFgTERSGFa',
	#                                   6: u'yEzJPclJGRRgezdpAZIb',
	#                                   7: [2349, -23638304015957.0]}},
	#         u'minima': {   9: Decimal('91951715129.7'),
	#                        10: [3522, 5606, u'HyGaERLRnwAKfuqguFGc'],
	#                        11: {   9: datetime.datetime(2018, 6, 16, 14, 9, 34),
	#                                10: u'TrRQVAISbbWtQIKesqRg',
	#                                11: [   u'WGKXYwOZMEylOHKZjBUf',
	#                                        Decimal('-6803.6')]}},
	#         u'modi': {   2: 4527,
	#                      3: [   u'iguerra@hotmail.com.au',
	#                             Decimal('1.18824859163E+12'),
	#                             -2414.15],
	#                      4: {   2: u'thompsonjeffrey@yahoo.com',
	#                             3: 90,
	#                             4: [   u'https://www.sanchez-strong.edu.au/',
	#                                    73504970222.0]}},
	#         u'officia': {   0: u'PaWusaceBidjbELhnoCB',
	#                         1: [8728, u'rhkJeaxriPrYRdQMoOPF', 1060],
	#                         2: {   0: u'iTCogAIWvYVhjIYfNpJm',
	#                                1: u'https://www.davenport-stevens.edu/categories/main/category.html',
	#                                2: [   u'XshWllHKJwrIFfKuJmkI',
	#                                       Decimal('-2.19')]}},
	#         u'quia': {   8: datetime.datetime(1989, 8, 7, 1, 26, 51),
	#                      9: [   331767303520.58,
	#                             u'MmxzfzXkPUeopOdFnZuY',
	#                             u'SrVUliZZQODTCAhjZFnY'],
	#                      10: {   8: u'NtkzUHujVByKUUNhgnjW',
	#                              9: u'IGalGjOIfhGDinfLINWu',
	#                              10: [Decimal('3882574.81267'), 9894]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'ExlEvMzyBXRxIbuxKQQB',
	#     Decimal('7.34166536811E+13'),
	#     u'YjsNhdRwYOwbpaOQEsTL',
	#     u'gkyxbMddDmhWAfKRYhYT',
	#     u'petersmelissa@gmail.com',
	#     u'http://www.fischer.org/blog/search/',
	#     u'https://www.ford-rivera.edu/',
	#     u'https://www.mclean-reid.edu.au/posts/index/']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-85211300140.3'),
	#     u'GLjqKFFLhvYPWYwQybWS',
	#     u'HCLrLLkMekxSTtfZEflV',
	#     datetime.datetime(2001, 1, 15, 8, 59, 1),
	#     u'gcross@hotmail.com.au',
	#     64.717385518583,
	#     u'WkINZeEjMCFwTCmolWFq')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'QzqmlHssCSWfUjqrwwwH', u'epRdmbDoLgwvNvhuFvZv', 5319, u'sqRUVyYBhbYfUkPqnClG', Decimal('31034016.3'), u'charlenemunoz@santiago.com', u'https://perry.org/list/tag/author/', 844233355.1, 1719, 8602])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'assumenda': 8425,
	#     u'aut': datetime.datetime(1985, 3, 19, 16, 46, 43),
	#     u'consectetur': u'PPhluXpReNTgArBiFQks',
	#     u'culpa': u'RioiFuQzMhdQgtpWzLsn',
	#     u'cum': u'QPUHPjlPISJxtVbFoEje',
	#     u'exercitationem': datetime.datetime(1971, 10, 19, 13, 25, 35),
	#     u'incidunt': 8273,
	#     u'ipsam': datetime.datetime(1977, 4, 24, 5, 6, 4),
	#     u'magni': u'olsonjared@hernandez-henry.org',
	#     u'omnis': Decimal('-95329179158.2'),
	#     u'unde': u'ECXpbhafphySyJyhltgl',
	#     u'veritatis': u'XXfZNfphhaCKgrlGSEGQ'}

	fake.pyint()
	# 4905

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'638-98-2949'

	fake.ein()
	# u'76-9169731'

	fake.itin()
	# u'977-91-8205'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2017-12-02 23:30:31 Firefox/3.6.17'

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

	fake.opera()
	# u'Opera/9.98.(Windows NT 5.01; ckb-IQ) Presto/2.9.183 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 95'

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows CE; fy-NL; rv:1.9.2.20) Gecko/2017-03-09 20:18:09 Firefox/3.8'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5362 (KHTML, like Gecko) Chrome/43.0.882.0 Safari/5362'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_3 rv:5.0; sr-RS) AppleWebKit/532.7.5 (KHTML, like Gecko) Version/5.0.4 Safari/532.7.5'
