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

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

::

	fake.state_abbr()
	# u'QLD'

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

	fake.street_name()
	# u'Harris Right Of Way'

	fake.address()
	# u'183 Adin Break\nGwynethshire, TAS, 2970'

	fake.street_address()
	# u'2 Stephania Run'

	fake.postcode()
	# u'2812'

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

	fake.country()
	# u'New Zealand'

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

	fake.secondary_address()
	# u'Apt. 575'

	fake.street_suffix()
	# u'Sound'

	fake.city_prefix()
	# u'South'

	fake.city_suffix()
	# u'ville'

	fake.building_number()
	# u'13'

	fake.country_code()
	# u'TN'

	fake.city()
	# u'Pacochaside'

	fake.state()
	# u'Northern Territory'

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

::

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

	fake.ean13()
	# u'8256709050712'

	fake.ean8()
	# u'47251403'

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

::

	fake.rgb_css_color()
	# u'rgb(215,110,195)'

	fake.color_name()
	# u'SkyBlue'

	fake.rgb_color_list()
	# (254, 19, 142)

	fake.rgb_color()
	# u'255,15,59'

	fake.safe_hex_color()
	# u'#77ff00'

	fake.safe_color_name()
	# u'aqua'

	fake.hex_color()
	# u'#46f6af'

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

::

	fake.company()
	# u'Wintheiser, Sporer and Bernhard'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Reduced 24/7 data-warehouse'

	fake.bs()
	# u'cultivate 24/365 initiatives'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 13 digit\nLoree Leuschke\n4693024189456 06/17\nCVC: 671\n'

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

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

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

::

	fake.currency_code()
	# 'NOK'

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

::

	fake.date_time_ad()
	# datetime.datetime(1931, 8, 28, 3, 47, 44)

	fake.month()
	# '05'

	fake.am_pm()
	# 'PM'

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

	fake.iso8601()
	# '2011-07-03T18:58:01'

	fake.date_time()
	# datetime(1971, 10, 24, 7, 36, 7)

	fake.month_name()
	# 'August'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 3, 2, 16, 48, 5)

	fake.unix_time()
	# 265942266

	fake.day_of_week()
	# 'Tuesday'

	fake.day_of_month()
	# '07'

	fake.time(pattern="%H:%M:%S")
	# '02:58:32'

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(1995, 10, 23, 2, 32, 43)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 2, 7, 26, 33)

	fake.year()
	# '1986'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None)
	# datetime(2015, 11, 5, 8, 51, 50)

	fake.date_time_this_century(before_now=True, after_now=False)
	# datetime(2010, 8, 12, 9, 36, 16)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2011, 12, 22, 20, 17, 43)

	fake.century()
	# u'V'

	fake.date(pattern="%Y-%m-%d")
	# '2004-09-14'

	fake.time_delta()
	# datetime.timedelta(15220, 29105)

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

::

	fake.mime_type(category=None)
	# u'video/mp4'

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

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

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

::

	fake.ipv4()
	# u'67.18.119.170'

	fake.url()
	# u'http://www.reingerhackett.org/'

	fake.company_email()
	# u'ikoepp@vandervort.net'

	fake.uri()
	# u'http://www.baileyhartmann.net/tags/explore/wp-content/post/'

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

	fake.image_url(width=None, height=None)
	# u'https://placeholdit.imgix.net/~text?txtsize=55&txt=223\xd7192&w=223&h=192'

	fake.tld()
	# u'org'

	fake.free_email()
	# u'owalter@yahoo.com'

	fake.slug(*args, **kwargs)
	# u'a-sunt-est-dolor'

	fake.free_email_domain()
	# u'gmail.com'

	fake.domain_name()
	# u'spinka.info'

	fake.uri_extension()
	# u'.jsp'

	fake.ipv6()
	# u'c1b0:ac81:33ad:b1ee:f404:3e6c:68b2:62be'

	fake.safe_email()
	# u'schneider.verena@example.com'

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

	fake.uri_path(deep=None)
	# u'blog/main'

	fake.email()
	# u'ardell.graham@stoltenbergfranecki.org.au'

	fake.uri_page()
	# u'terms'

	fake.mac_address()
	# u'87:2e:8c:a4:06:e5'

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

::

	fake.job()
	# 'Leisure centre manager'

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

::

	fake.text(max_nb_chars=200)
	# u'Omnis iste occaecati voluptatibus voluptas ad. Vel sed amet quo et eum et. Distinctio dolor qui a vero beatae eveniet.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'Facere dolores sunt dolores nulla.'

	fake.word()
	# u'et'

	fake.paragraphs(nb=3)
	# [   u'Assumenda et cum aut ut ex. Dicta aut vero voluptatum non consequuntur deserunt beatae. Et sint aut ducimus voluptates iste ratione non ex.',
	#     u'Ut ipsa reprehenderit dolore necessitatibus. Neque necessitatibus voluptates eaque assumenda voluptas aliquam. Vero cupiditate dolorum ipsam deleniti sint debitis tenetur. Ullam vero voluptatem voluptates perspiciatis quo esse distinctio.',
	#     u'Ipsam molestiae atque sunt laboriosam est. Cum qui a maiores aut rerum voluptas. Voluptas consequatur qui a sunt illum.']

	fake.words(nb=3)
	# [u'voluptas', u'placeat', u'unde']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'Quae aspernatur quia et exercitationem sunt neque sunt. Molestias enim reprehenderit et ut voluptas libero. Quis quasi enim labore asperiores iusto.'

	fake.sentences(nb=3)
	# [   u'Quis sed vel unde ducimus.',
	#     u'Molestias in non aut.',
	#     u'Omnis et maiores ipsum ut a enim quia.']

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'6KQCgx$sDn'

	fake.locale()
	# u'es_GM'

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

	fake.sha1(raw_output=False)
	# '79d7bb6f2946122d635a6d514f97017144207dda'

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# '17e50352-b8ca-48bf-b91b-03f29c1cdafc'

	fake.language_code()
	# u'en'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Koelpin'

	fake.name_female()
	# u'Vernetta Koepp'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Miss'

	fake.name()
	# u'Bambi Shields'

	fake.suffix_female()
	# u'PhD'

	fake.name_male()
	# u'Ingram Lindgren'

	fake.first_name()
	# u'Vina'

	fake.suffix_male()
	# u'III'

	fake.suffix()
	# u'DVM'

	fake.first_name_male()
	# u'Eldridge'

	fake.first_name_female()
	# u'Adeline'

	fake.last_name_female()
	# u'Upton'

	fake.last_name()
	# u'Senger'

	fake.prefix_female()
	# u'Ms.'

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

::

	fake.area_code()
	# u'2'

	fake.phone_number()
	# u'0414-492-924'

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

::

	fake.simple_profile()
	# {   'address': u'Apt. 475\n 65 Tamela Triangle\nSt. Maddox, NT, 2925',
	#     'birthdate': '1992-09-03',
	#     'mail': u'zavion.reilly@yahoo.com',
	#     'name': u'Mr. Liston Murazik',
	#     'sex': 'F',
	#     'username': u'minnie.gislason'}

	fake.profile(fields=None)
	# {   'address': u'5 Beahan Brace\nEast Marytown, SA, 2935',
	#     'birthdate': '1981-04-02',
	#     'blood_group': 'B-',
	#     'company': u'Pagac Inc',
	#     'current_location': (Decimal('-49.842540'), Decimal('-88.566682')),
	#     'job': 'Manufacturing systems engineer',
	#     'mail': u'jessika88@yahoo.com',
	#     'name': u'Delwin Hirthe',
	#     'residence': u'1 Ryan Gate\nPort Joe, NT, 2989',
	#     'sex': 'M',
	#     'ssn': u'150-64-4475',
	#     'username': u'ethelyn87',
	#     'website': [u'http://www.darestracke.org/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   2287,
	#     u'Voluptatem esse.',
	#     5685,
	#     u'Quos qui voluptas.',
	#     u'http://hammessawayn.com.au/tags/categories/main.jsp',
	#     datetime(2006, 6, 12, 15, 5, 36),
	#     46824096940.11,
	#     u'http://robel.net.au/post.html',
	#     datetime(2010, 5, 2, 18, 16)]

	fake.pystr(max_chars=20)
	# u'Ut et non voluptas.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   Decimal('398161577.0'),
	#         u'Commodi quibusdam.',
	#         u'gerald67@hotmail.com',
	#         u'Voluptatum.',
	#         u'Sit et similique.',
	#         u'A necessitatibus.',
	#         u'Ratione laboriosam.',
	#         u'Libero repudiandae.',
	#         -6612.18643,
	#         u'Quas fuga maxime.'],
	#     {   u'aliquid': u'Rerum nesciunt.',
	#         u'eaque': Decimal('59550033.7573'),
	#         u'eligendi': 9387,
	#         u'et': u'Rerum corporis.',
	#         u'ex': datetime(1988, 10, 5, 8, 4, 29),
	#         u'impedit': datetime(2007, 4, 16, 11, 21, 1),
	#         u'quaerat': u'bauch.ellery@cummeratakshlerin.org',
	#         u'ut': u'http://www.gislasonbashirian.com.au/main/category/tags/homepage.html'},
	#     {   u'commodi': {   3: datetime(1977, 12, 14, 10, 5, 25),
	#                         4: [   u'http://www.schaden.net.au/post.htm',
	#                                u'Totam eos non iste.',
	#                                u'Aut aliquam aperiam.'],
	#                         5: {   3: u'pwest@gmail.com',
	#                                4: u'http://padbergoconnell.biz/wp-content/tags/main/homepage/',
	#                                5: [   Decimal('-3.3032777'),
	#                                       datetime(2005, 11, 6, 21, 42, 2)]}},
	#         u'est': {   5: u'Veritatis ut quod.',
	#                     6: [   u'kassandra52@hotmail.com',
	#                            769526022.11206,
	#                            u'judie.nitzsche@cronin.edu'],
	#                     7: {   5: u'In molestias labore.',
	#                            6: u'Aut tenetur sint.',
	#                            7: [   datetime(1975, 10, 21, 17, 44, 37),
	#                                   144.2299]}},
	#         u'et': {   6: 9217,
	#                    7: [   u'zdicki@mohr.org',
	#                           u'Dolorem expedita.',
	#                           datetime(1991, 7, 24, 16, 47, 54)],
	#                    8: {   6: u'Repellat impedit.',
	#                           7: 56745445.4061484,
	#                           8: [   u'http://www.leuschke.biz/search.html',
	#                                  u'http://www.hirthe.edu.au/blog/posts/faq.html']}},
	#         u'ex': {   9: u'Nobis nihil a.',
	#                    10: [   -86234156381.935,
	#                            u'Ut sint possimus.',
	#                            u'Voluptate doloribus.'],
	#                    11: {   9: datetime(2010, 6, 11, 22, 2, 33),
	#                            10: u'http://schmidtkutch.net/categories/faq.jsp',
	#                            11: [6321, 7664]}},
	#         u'libero': {   0: u'ananias.hilpert@gmail.com',
	#                        1: [1789, -3324.9, u'alexia72@hotmail.com.au'],
	#                        2: {   0: u'In eveniet.',
	#                               1: 686,
	#                               2: [   u'Voluptate amet rem.',
	#                                      u'Temporibus vel.']}},
	#         u'occaecati': {   7: Decimal('-350326474.817'),
	#                           8: [-9253999629447.2, 1947, u'Quod quia dolor.'],
	#                           9: {   7: u'Blanditiis quos.',
	#                                  8: u'Blanditiis.',
	#                                  9: [u'Reprehenderit.', -1759275918005.1]}},
	#         u'quia': {   2: 2690,
	#                      3: [   Decimal('-19089753336.3'),
	#                             datetime(2005, 3, 24, 20, 7, 59),
	#                             datetime(1970, 3, 22, 7, 16, 51)],
	#                      4: {   2: 952,
	#                             3: u'Porro nam mollitia.',
	#                             4: [   u'Pariatur et eos.',
	#                                    u'http://stromanhuel.net/homepage/']}},
	#         u'quos': {   8: 437,
	#                      9: [   u'aaltenwerth@kemmer.net',
	#                             441918590934767.0,
	#                             u'Aliquam nesciunt.'],
	#                      10: {   8: Decimal('9.37690815475E+14'),
	#                              9: 8521,
	#                              10: [u'In eos odio.', u'Cumque quas iste.']}},
	#         u'sapiente': {   4: 4769,
	#                          5: [u'Ullam modi.', Decimal('2120635.0'), 8447],
	#                          6: {   4: u'Neque dolores.',
	#                                 5: u'http://www.raynordach.biz/tag/posts/author.php',
	#                                 6: [u'Quod eos rerum ut.', 842]}},
	#         u'suscipit': {   1: u'Vero et blanditiis.',
	#                          2: [   datetime(2012, 8, 1, 1, 31, 43),
	#                                 u'Necessitatibus.',
	#                                 u'Pariatur natus enim.'],
	#                          3: {   1: 352,
	#                                 2: Decimal('63818230.0'),
	#                                 3: [   u'http://www.harber.com/explore/search/app/author.html',
	#                                        u'kirk.bruen@keeling.net']}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'colie.vonrueden@yahoo.com.au',
	#     Decimal('37551389958.0'),
	#     datetime(1996, 12, 11, 1, 50, 26),
	#     5690,
	#     u'Vitae perferendis.',
	#     73442661.74,
	#     datetime(1972, 5, 24, 8, 42, 40),
	#     u'Consequatur eveniet.',
	#     u'Omnis placeat.',
	#     -291053509574824.0,
	#     u'http://www.harrisrutherford.com.au/blog/explore/search.html']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   6720,
	#     datetime(1977, 12, 9, 5, 58, 36),
	#     u'Consequatur sed.',
	#     u'Dolor praesentium.',
	#     u'Doloremque ut fugit.',
	#     u'Quam quia magnam.',
	#     6283,
	#     -209.4454787686,
	#     u'Ab impedit labore.',
	#     u'Ullam mollitia iste.',
	#     u'Aut facilis totam.',
	#     u'http://www.murazik.edu/tags/tags/privacy.html',
	#     u'Nihil aspernatur.',
	#     u'Sint at labore sed.')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([514, 4.9628263883, u'http://www.emmerichframi.info/login/', u'Hic repellat vel.', datetime(1971, 11, 25, 22, 54, 24), Decimal('8555738.859'), u'Eos ratione nisi.'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'ad': u'Illo deleniti.',
	#     u'atque': 150135431988.86,
	#     u'consequatur': Decimal('-96091781396.7'),
	#     u'cupiditate': -27238.648584,
	#     u'eius': u'Eius blanditiis.',
	#     u'explicabo': datetime(2011, 5, 31, 21, 59, 6),
	#     u'in': Decimal('-1771870.57471'),
	#     u'nihil': u'http://www.harber.biz/home.jsp',
	#     u'non': u'bjacobi@hotmail.com',
	#     u'omnis': u'lorine88@hotmail.com.au',
	#     u'quasi': Decimal('100.881302'),
	#     u'similique': 759.8}

	fake.pyint()
	# 4061

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

::

	fake.ssn()
	# u'142-65-4439'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_0; rv:1.9.2.20) Gecko/2011-12-01 18:57:24 Firefox/3.8'

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

	fake.opera()
	# u'Opera/8.71.(Windows 98; en-US) Presto/2.9.171 Version/11.00'

	fake.windows_platform_token()
	# u'Windows 98; Win 9x 4.90'

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

	fake.user_agent()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; it-IT) AppleWebKit/533.24.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6533.24.7'

	fake.chrome()
	# u'Mozilla/5.0 (Windows CE) AppleWebKit/5310 (KHTML, like Gecko) Chrome/15.0.882.0 Safari/5310'

	fake.linux_processor()
	# u'i686'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; en-US) AppleWebKit/532.3.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B111 Safari/6532.3.4'
