
Language en_TH
===============

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

::

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

	fake.building_number()
	# u'68879'

	fake.street_address()
	# u'1521 Patcharaporn Glens'

	fake.postalcode_plus4()
	# u'20829-1475'

	fake.city_prefix()
	# u'Port'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'New Todsawunburgh'

	fake.zipcode_plus4()
	# u'41685-4582'

	fake.state_abbr()
	# u'NY'

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

	fake.street_suffix()
	# u'Rest'

	fake.city_suffix()
	# u'mouth'

	fake.military_dpo()
	# u'Unit 4598 Box 5585'

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

	fake.country()
	# u'Korea'

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

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

	fake.postalcode()
	# u'38158'

	fake.address()
	# u'5055 Polauaypon Shoals\nPongpanitchland, PW 79205-0222'

	fake.state()
	# u'Vermont'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'Prakalpawong Springs'

	fake.zipcode()
	# u'27555'

	fake.postcode()
	# u'98457'

	fake.military_apo()
	# u'PSC 7582, Box 8153'

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

::

	fake.license_plate()
	# u'572 DJW'

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

::

	fake.bban()
	# 'PJHB9936738913240'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB68GCGR0524881362462'

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

::

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

	fake.ean13()
	# u'7822867861760'

	fake.ean8()
	# u'25961201'

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

::

	fake.rgb_css_color()
	# u'rgb(132,4,73)'

	fake.color_name()
	# u'PaleVioletRed'

	fake.rgb_color()
	# u'51,91,169'

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

	fake.safe_color_name()
	# u'teal'

	fake.hex_color()
	# u'#27363f'

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

::

	fake.company()
	# u'Posalee, Youprasert and Benchapatranon'

	fake.company_suffix()
	# u'and Sons'

	fake.catch_phrase()
	# u'Implemented exuding frame'

	fake.bs()
	# u'enhance world-class bandwidth'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'American Express\nChaifah Sittisaowapak\n343456589352434 05/28\nCID: 5025\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'SRN'

	fake.currency_code()
	# 'LTL'

	fake.currency_name()
	# 'Lithuanian litas'

	fake.cryptocurrency_name()
	# 'Omni'

	fake.cryptocurrency()
	# ('KOI', 'Coinye')

	fake.currency()
	# ('KRW', 'Western Krahn language')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 6, 10, 5, 22, 37)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2019, 5, 15)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(1993, 2, 27, 22, 2, 52)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2010, 4, 22)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 1, 9, 29, 12)

	fake.past_date(start_date="-30d", tzinfo=None)
	# datetime.date(2019, 5, 10)

	fake.day_of_week()
	# 'Saturday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 4, 11, 6, 51, 1)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2011, 11, 13)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 6, 8, 1, 51, 17)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2008-07-13'

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2019, 5, 15, 4, 20, 45)

	fake.date_object(end_datetime=None)
	# datetime.date(1977, 3, 20)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2019, 1, 24)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2005-10-10T13:50:46'

	fake.future_date(end_date="+30d", tzinfo=None)
	# datetime.date(2019, 6, 13)

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2002, 5, 26)

	fake.month()
	# '08'

	fake.year()
	# '2018'

	fake.day_of_month()
	# '04'

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

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

	fake.century()
	# u'XVIII'

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

	fake.time_object(end_datetime=None)
	# datetime.time(7, 52, 8)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 1, 8, 2, 11, 19)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1973, 11, 2, 10, 42, 43)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '18:33:13'

	fake.date_this_month(before_today=True, after_today=False)
	# datetime.date(2019, 5, 4)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 4, 22, 12, 45, 56)

	fake.month_name()
	# 'January'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1478, 6, 17, 4, 43, 52)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(2669, 12399)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/fugiat/deserunt.mp3'

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

	fake.file_name(category=None, extension=None)
	# u'quaerat.css'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'patcharapornsittisaowapak@gmail.com'

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'dsiripaiboo@hotmail.com'

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

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'register'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'nattawun18@thantananont.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'nutcha59@sireelert-sorattanachai.net'

	fake.domain_name(*args, **kwargs)
	# u'kitprapa-sooksawang.com'

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

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

	fake.slug(*args, **kwargs)
	# u'mollitia-tempora'

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

	fake.company_email(*args, **kwargs)
	# u'srisoontornchalisa@charoensuksopol.com'

	fake.uri()
	# u'https://www.wannapaitoonsri.biz/main/wp-content/blog/faq.html'

	fake.ipv6(network=False)
	# '266e:942d:d5f:949c:851a:64c0:398c:79ce'

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

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

	fake.mac_address()
	# u'fa:77:32:09:9c:d5'

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

::

	fake.isbn10(separator="-")
	# u'0-9696085-5-1'

	fake.isbn13(separator="-")
	# u'978-0-7174-1136-8'

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

::

	fake.job()
	# 'Higher education lecturer'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Nemo unde dolorum. Odio cumque quidem eius non magnam iste.\nSaepe aliquam pariatur quia. Nihil id atque corporis dolor animi aliquam. Incidunt fuga laboriosam dignissimos amet porro omnis a.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Porro minima ex eos earum est earum. Aspernatur ea adipisci numquam id. Libero illo harum eius in nulla.',
	#     u'Fugiat commodi iusto. Officia quam illum dolorum iure sunt.',
	#     u'Delectus fugiat numquam eveniet architecto eveniet nihil. Repellat qui error consequuntur.']

	fake.words(nb=3, ext_word_list=None)
	# [u'quos', u'reprehenderit', u'hic']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Doloribus excepturi tempore quas ut facere optio officiis.',
	#     u'Neque voluptatibus illo sint esse.',
	#     u'Possimus unde nihil impedit aliquid.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Placeat maxime facere sunt a corporis. Odio ipsum blanditiis quo ab quae quos. Saepe officia iste amet quae.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Odio ipsum beatae.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'%0I+_dLt#+'

	fake.locale()
	# u'fr_FR'

	fake.binary(length=1048576)
	# bytearray(b'!\xeb\xbc\x8d\xdb\x9c:g0\x14\x00\x1c\x10@\x88\xdb\x8ar\xb3\xa8\x97T\xff\x11\x9b\xee\xd8\x91*\x96;\x95~4\xc4\xd4\xb2 .\x07\xa0*zYO\xc7D\x11\xd0\xe6gQ\xcb\xa7\x98\x8a\xf4\xe7\x08\xed\xa0T\x1cs4\xe9\x9a\xcd\xe0\xe7\x8b\x1ff\x92]\xb2\x04D\xa9\xf9\x89\xc7\xe8P\x9b\xe5\xd3_\xa7\xfa\xe8\xc3\x16\x96\x87!eb\xbc\xe5\xefvS\x9f\xe3\x04Dog\xd0t\xad@\xce\xd2\xbc\t1\x0eT\x90\x9b\x19\x98z\xf6\xb50\xe0x\x00\xc8\x85@\x94X\x1f\x7f.\xc5\x9b|\x8d\x06\x1dU\xdf\x88\xa7v\x9c\x845\x84\xc7\x8f\xd8\xb7q\x7fS\x14\x06\xb5\xd4\xaf\xa1\xc6r\x0f\xea\xff\x16\x07l\x1d\xe7}k\xbc&\xc4%JO\xadq\x0f2\x1df\x02\x1d7fQ/\xd0\xa3\xd65t\xc2\xa5\xb3\x08#9\xe8|h\xd2\xce\x97\xcf\x9d\xbf0\xda\xb70\xdd/N>\xb80R\xb6<\xf2\tH\xef+\x85\x01\x0c\xfb.~p\xa57-\xae8|(\x84\xb8\t\xd7\xcdZY`s\xc3`;\x16\xfc\xaf9K\xde,\xa4.o\xdcW]1\xa8vd.\xb6\xff\xcb\xd9\xb0m\xb0\x8d^g|\xc9Q\xebJ\x03\xc2\xd5\\;\x9a\x88=\xc8O\x05\xd65G\x90(\x93\xb8\xf2\x90rkni\xd2\x85\xf0\x06\x15H5J\n\xa2\xa0G\xa0\xa5\xd6\xa2\xaa\xb2,~}#\x1e\x0b\xeb\xa3\x13\x00\x07\x89\x86\xba\x80 \xed\xa71\xb2l<+\xd2\x18\x05\x04\x0c\xb8I\xdcK\xc0D6\x9b\x97\xd0\xb6\x80H\xe9\xe1\x9c\xbb\xb5\xbb\xf3\x97\xb6,\x13R\xb5\xabs6g\xc5\xd9\xe1Ne\x11\xca\xd5g4\xdeH\x9a\x0c\x84~\x178\x07\xf7f\x0c\xab\xddWtcP\xeb\xe1:\x83\xbd7\xfc{g\xf9\t@V\xd1\xe6b\x9c\xc9u\x9d\xd8\xc0\xd1x\x0e\xb4U\x91\xf2\xe5gd\xfew\xc8\x90\x16\xfa\x94\xbfA\xf8\x8a\x8f\xbfk\x19[\x16\x89\x1e\xb5q\x0c\x19F\x97\xf2\xcc\xd0\xe8\xa9\xa1\x9c\x7fs\xea\xe1\xdca\x1bH\xc0\xf7kE"\x9c\xd0_17\xcb\xab\x04h\x16x\xf3\x9b\x15b\xd6\xa4\x1a\xc6\x08\x19\x1f\xadiq\x8e\x86,\x91\xd4/\x0e0N\x05\xa9\x14\xb4\xc5\r.\xad\x15\x0b\xf0\x9c\x165!\xc4&\x06\t\xef\xf3\xf2-\xe1\xa1\xb7@\x8d\xa280\x98RA+5\xcdbL\x86X\xb9\x82T\x0b\xdc\xa0J\xfb\xeeMLe]jwU\xc3\x1fr\xe5\x92m\xd4<\xba\x99\xb9\xbeGq1\xd0\x1b\xf5rD\x19\xcf\x99C\xba\x98=\xc1\xa6Q\x05\xbd\x1e\xa9\x9a\x8e\xaf\xf1\x18\x0cTN\x80]\xda\xda\x8eTj_\x1c\xe7\x1e\x8f\xa4\xb6<V\x8a\x80\xf8o\xac\x8f\xd8r\xf9\xc3}`\xde\xe5\xfa\x82\x97\x89$\xb0.=\xf8\xab\xac\xb7od\x1fm\x1a\x97\x82\x1c\xbb\xcd\x11l\\\xec\x80\xdbF\xfe\xf1\x87\x87?\xc2\xafm\xa3\x94\xa0y\xf0\xc9_\x1e\x15\xc1Q/|2\x0c\xd4\x17\x184F\x0f\xb3\x83\xee<\x86U@\x90\rX:_\xd5\x8dp\x94K\r\xc8\xe6\x1c|%+\xfew\xfc\xb5\xf7\xa2C\xce\xf9I\xaaky\x14-ZO\xf8\xe3t\xd6\xe9\x87F\xb9\x8e\x9bS(_\xa7\xf8+\x0bg\xf6\x0f\x1b\xbao\x9c\t\x00\x82\xcd\x1f\x17\xcdG\x8f\xbbzR\xf2\xfb\x9f\xc4\x1e\xbf\xec\x9b\xe4W\xfdM)\x03\x077z(W\xf8\x18\xb6]D\xd8\x98\xaa\xea\tV\xe2\xd6\x80R\xf5B\xc7\xe9;\x97=\n\x8f\xbf\xff\xc3J\xa3\x1b\xd3@B\xc2)Ht:\x99.)\x06\xefM[\xe0\x06\x82\x84\x93\xdd\x08\xedl.1\xab\x9d\x86\x84\x17\xb0\x1c&\x02\xeb\xe4pJ\xa2L\x8b4\xb6\xe8f\x00\x96\x8d\x85\xfai\x0c\xcc>\x08*\x838\xbfl\xaa]\xa7\x14u\xba\xefn\xe1kQ\xb1\xea\x12\x12d[\x902\x02\x0e\xcf@\xf1\xbdB\xbb|\xcd\r\xb0\xc3\xc1\x17\xc9\x88\x81\xf7\xb1A\x91k\xf7\x80\x8b\xce\x99o\xfe\xfb\xc6\x05@3\x872\xac\xabO\x91\xb0\xadp*\xd3\x90\xf6\xfd\x8e\x1e\x7f\x012 \xfd\xcbPrL\x80\'7*\xb7\xe2\x1a\xb0\x93\xce\xdb3\x0e\x8e\x0e\x1d0\xa46\x94\xdd8z!d\xeb\xa2\xcdM\xe6Jza\x83\xe5\x9av,')

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

	fake.sha1(raw_output=False)
	# '263dd09d8219a356a8c3e00d028a98fc72c23a1b'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '507dce8efa906cd60dbd03aebd60da2d4bd4c6ee820b5865e1ea04a79a4c59c2'

	fake.uuid4()
	# '727049ff-d924-d315-48c4-c285cff249f3'

	fake.language_code()
	# u'uz'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Trikasemmart'

	fake.name_female()
	# u'Atit Norramon'

	fake.prefix_male()
	# u'LT COL'

	fake.prefix()
	# u'SUB LT'

	fake.name()
	# u'Pak Anekvorakul'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Puntira Methavorakul'

	fake.first_name()
	# u'Ratchanon'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Pattapon'

	fake.first_name_female()
	# u'Todsawun'

	fake.last_name_female()
	# u'Tungkasethakul'

	fake.last_name()
	# u'Kittakun'

	fake.prefix_female()
	# u'FLT LT'

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

::

	fake.phone_number()
	# u'1-196-660-0532x514'

	fake.msisdn()
	# '2997217809598'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'8568 Pianduangsri Hills Apt. 112\nKongsrifurt, NH 93987-7525',
	#     'birthdate': datetime.date(1925, 10, 24),
	#     'mail': u'prayoonhongpeem@hotmail.com',
	#     'name': u'Chayapat Lertsattayanusak',
	#     'sex': 'M',
	#     'username': u'sooksawangsorawut'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'3356 Pintusorn Tunnel\nLake Pattatomporn, DC 66894',
	#     'birthdate': datetime.date(1934, 7, 30),
	#     'blood_group': 'A+',
	#     'company': u'Kamalanon, Trikasemmart and Trikasemmart',
	#     'current_location': (Decimal('56.5119605'), Decimal('-22.144421')),
	#     'job': 'Agricultural engineer',
	#     'mail': u'boonpungbarameepakjira@gmail.com',
	#     'name': u'Chayanin Methavorakul',
	#     'residence': u'Unit 1826 Box 4732\nDPO AP 05864-9803',
	#     'sex': 'M',
	#     'ssn': u'122-49-9802',
	#     'username': u'patcharaporn02',
	#     'website': [u'https://charoensuksopol.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'JyQamCGStUvEjtXgNazi',
	#     u'awssnvHqmDjfxPJSJTIV',
	#     -73435.190029,
	#     u'iONdcecGibwheBnBNzTc',
	#     u'http://www.chaisatit-suraprachit.biz/index/',
	#     6443,
	#     4686,
	#     7859,
	#     datetime.datetime(1971, 10, 15, 15, 37, 39),
	#     24332497439.0,
	#     u'UmXnzoMVNkbIzREzTYUX']

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'QegENvUOmnEnLKdKmfvS',
	#         datetime.datetime(2012, 1, 18, 15, 15, 56),
	#         Decimal('7.71221019028E+13'),
	#         7347,
	#         u'YdiyxVxwtLTPeDYzNQew',
	#         Decimal('3.21478488945E+12'),
	#         u'fTjljZUIfgpEazsXFlpm',
	#         5403,
	#         u'obdIVMZTxPQiZWZOIGmM',
	#         u'https://kamalanon.net/register/'],
	#     {   u'architecto': u'https://www.tianvarich.com/home/',
	#         u'autem': datetime.datetime(1985, 5, 18, 9, 54, 9),
	#         u'deserunt': 8575,
	#         u'dolorum': u'https://www.choeychuen-norramon.org/search.html',
	#         u'exercitationem': 5290,
	#         u'non': 4491,
	#         u'odit': u'permchartjinjuta@neerachapong.org',
	#         u'quia': u'bzwHQzuuJbAcSGHWxZsw',
	#         u'quibusdam': u'dpianduangsri@chaisatit.net',
	#         u'veritatis': u'http://titipatrayunyong-benchapatranon.com/'},
	#     {   u'a': {   1: u'jNKzVenBduSdNcBSdvAN',
	#                   2: [   u'http://www.pitanuwat.com/wp-content/homepage/',
	#                          u'chaisatitpattamon@polauaypon.com',
	#                          Decimal('-25.64324806')],
	#                   3: {   1: u'IoidNOHinLVWsYkfSTsv',
	#                          2: u'DsQUVTWuZlhLCzGKUZKi',
	#                          3: [   u'wVocJHEMovMWNgYCIHlJ',
	#                                 u'GgNlfnCIoZxiYUVIiTMt']}},
	#         u'deserunt': {   5: u'lUXWbDkQTOntPSMhVFZf',
	#                          6: [   1555,
	#                                 u'http://www.prachayaroch-polpo.com/index.html',
	#                                 3626],
	#                          7: {   5: u'khHwKrkgKWqHVCWJOiwR',
	#                                 6: u'hiDQDTkovnrEOAUAsrKR',
	#                                 7: [   u'kulnunpikatsingkorn@krittayanukoon.net',
	#                                        8370]}},
	#         u'error': {   8: 7729,
	#                       9: [   u'dhSfNwGlJtEgnstfyWZV',
	#                              1058,
	#                              u'http://bunlupong.biz/'],
	#                       10: {   8: u'AlDYGLhrlbmagaJvQWKa',
	#                               9: u'rPkqacZKlYxgdYoCtvKD',
	#                               10: [   datetime.datetime(2007, 3, 30, 2, 29, 35),
	#                                       Decimal('-39.19973')]}},
	#         u'ipsum': {   0: Decimal('53471600.0'),
	#                       1: [   u'MqxDfjJqLViMYbMLRPlX',
	#                              u'IqEVTVUiAITJgOtZXRYk',
	#                              u'boqBkJORoirtmAJKglFV'],
	#                       2: {   0: 6441,
	#                              1: Decimal('71906201.1'),
	#                              2: [   u'dkhDnwUtgiqDkMKbyygJ',
	#                                     u'http://tianvarich-titipatrayunyong.org/app/homepage.htm']}},
	#         u'iure': {   4: u'ByZaqVyZejfjRBBcGrab',
	#                      5: [   u'QvnauIkbEIQwdGGVzrax',
	#                             7364,
	#                             u'MDwJnAyiyccBKkChPzOm'],
	#                      6: {   4: u'http://www.chaihirankarn.biz/',
	#                             5: u'AUCTsaiJFFNcuhHIvQMx',
	#                             6: [9954, -13512769.45812]}},
	#         u'magnam': {   2: 7630,
	#                        3: [   u'PrjSEzonMREQljcwsoBJ',
	#                               datetime.datetime(1973, 11, 11, 0, 19, 7),
	#                               u'ZgTbfPSSvkYGQBZWILXR'],
	#                        4: {   2: u'gCXKDeTvYdawJWBLBEyF',
	#                               3: datetime.datetime(2013, 8, 23, 6, 22, 56),
	#                               4: [   u'http://kumsoontorn.com/list/list/blog/privacy/',
	#                                      2887]}},
	#         u'minima': {   6: -276614661.246629,
	#                        7: [   u'VYzyYGQYQzKuVmugNEMQ',
	#                               u'MlZGfqnCCrpuRBDTtoVK',
	#                               u'xaTxVkpVfMMxDyxqifXC'],
	#                        8: {   6: u'https://www.kamalanon.net/main.jsp',
	#                               7: u'YlbPxBxFRxEWKyblIXIl',
	#                               8: [   u'https://www.thantananont-srisoontorn.com/list/category/app/terms/',
	#                                      datetime.datetime(2014, 8, 3, 6, 59, 2)]}},
	#         u'nostrum': {   7: 9128,
	#                         8: [   u'KybdEwPrFvyfbutvaAgK',
	#                                datetime.datetime(1994, 7, 6, 17, 50, 25),
	#                                7572],
	#                         9: {   7: datetime.datetime(1971, 6, 21, 22, 7, 45),
	#                                8: u'titipatrayunyongparin@suraprachit.com',
	#                                9: [4054, -80557583252090.1]}},
	#         u'tempore': {   3: u'phenphitcha15@pothanun.biz',
	#                         4: [   Decimal('-581.0'),
	#                                Decimal('-9581307.26097'),
	#                                datetime.datetime(1997, 4, 26, 8, 19, 35)],
	#                         5: {   3: u'WRmaPNdIqeznnAoqaJGr',
	#                                4: u'tseXWxEbwSTDhNEGncGZ',
	#                                5: [   u'aKvMJMPquSXqrVamhLrc',
	#                                       u'qUoUGVREUXWuuBQAEmub']}},
	#         u'voluptatem': {   9: u'http://sireelert-polauaypon.info/',
	#                            10: [   u'ychowitunkit@gmail.com',
	#                                    u'darinchaihirankarn@posalee.net',
	#                                    u'http://www.vethayasas.com/category/posts/author/'],
	#                            11: {   9: 72.7903,
	#                                    10: u'LeHYhKXVIQGzEhDDsABP',
	#                                    11: [   datetime.datetime(1985, 6, 10, 0, 42, 33),
	#                                            Decimal('-29099335.58')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   Decimal('923.788'),
	#     u'jNifscQAmdnimikAJaPj',
	#     u'PYmevYgcCNSfuFTExdaS',
	#     datetime.datetime(1989, 11, 8, 3, 49, 25),
	#     u'wlZIEyiRmSmPFbPxTKMj',
	#     -522336286.0,
	#     u'mHDQxaeeadYUMYVuPGaz']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   datetime.datetime(2013, 1, 29, 22, 14, 39),
	#     u'qoYTaCcmVqXIdWVDmaFS',
	#     u'https://www.prayoonhong.com/privacy/',
	#     2853,
	#     u'EbDYzdwgFIhMvZnSKmFG',
	#     u'mQqfGXhRkdeKzVKAxLqo',
	#     Decimal('941303880396'),
	#     u'wNifkYOouMOsuPEFVdfY',
	#     u'RMCMopXsJyqaSYwLXxoQ',
	#     1435,
	#     Decimal('74789031072.2'),
	#     u'hjhDvGQwhzcpGOhCGSFN',
	#     6181)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'uvGqKPsrOsUaxwsXULII', u'dFGZrgQzrGEaioXSXSzg', 2637, 207, u'czumOJNZMQPkPvrzGibR', u'phubesneerachapong@hotmail.com'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'corporis': 7013,
	#     u'eaque': 8901,
	#     u'facere': 3784,
	#     u'in': 7324,
	#     u'iste': Decimal('3.53'),
	#     u'iusto': u'zQnZsecWnpOszrzdTOMt',
	#     u'quae': 3891846.6,
	#     u'reiciendis': 8329,
	#     u'sequi': u'http://www.krittayanukoon.com/author/',
	#     u'voluptatum': u'uMnQkfosJfISlrPrvIjH'}

	fake.pyint()
	# 6686

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'032-53-4405'

	fake.ein()
	# u'50-2215172'

	fake.itin()
	# u'987-86-3724'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.5.20) Gecko/2010-01-06 03:08:28 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.27.(X11; Linux i686; zu-ZA) Presto/2.9.168 Version/12.00'

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

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

	fake.user_agent()
	# u'Opera/9.83.(Windows NT 5.2; cv-RU) Presto/2.9.174 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 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/5341 (KHTML, like Gecko) Chrome/25.0.861.0 Safari/5341'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; fo-FO) AppleWebKit/531.31.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6531.31.3'
