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

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

::

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

	fake.building_number()
	# u'67154'

	fake.street_address()
	# u'15658 Niracha Knoll Suite 645'

	fake.postalcode_plus4()
	# u'39078-4746'

	fake.city_prefix()
	# u'North'

	fake.military_ship()
	# u'USNV'

	fake.city()
	# u'Polpoton'

	fake.zipcode_plus4()
	# u'65791-2919'

	fake.state_abbr()
	# u'WY'

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

	fake.street_suffix()
	# u'Via'

	fake.city_suffix()
	# u'fort'

	fake.military_dpo()
	# u'Unit 7839 Box 6015'

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

	fake.country()
	# u'Andorra'

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

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

	fake.postalcode()
	# u'97507'

	fake.address()
	# u'7863 Methavorakul Gardens\nNew Chaifah, AR 11113'

	fake.state()
	# u'Georgia'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Apisara River'

	fake.zipcode()
	# u'11057'

	fake.postcode()
	# u'12516-0470'

	fake.military_apo()
	# u'PSC 6187, Box 7335'

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

::

	fake.license_plate()
	# u'KBU 887'

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

::

	fake.bban()
	# 'UYAA6516298066279'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB06SMDH7606272446909'

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

::

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

	fake.ean13()
	# u'7257884670277'

	fake.ean8()
	# u'38322037'

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

::

	fake.rgb_css_color()
	# u'rgb(175,218,64)'

	fake.color_name()
	# u'DarkSlateBlue'

	fake.rgb_color()
	# u'14,148,123'

	fake.safe_hex_color()
	# u'#aaee00'

	fake.safe_color_name()
	# u'purple'

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

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

::

	fake.company()
	# u'Pitanuwat, Sireelert and Anekvorakul'

	fake.company_suffix()
	# u'and Sons'

	fake.catch_phrase()
	# u'Re-contextualized secondary ability'

	fake.bs()
	# u'seize scalable schemas'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Maestro\nPattapon Kittakun\n501895881222 03/25\nCVV: 836\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'EMC'

	fake.currency_code()
	# 'JMD'

	fake.currency_name()
	# 'Mauritian rupee'

	fake.cryptocurrency_name()
	# 'Nxt'

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

	fake.currency()
	# ('MNT', 'Mongolian tugrik')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 5, 5, 45, 25)

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

	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(1989, 6, 6, 12, 9, 29)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2011, 11, 1)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 8, 0, 35)

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

	fake.day_of_week()
	# 'Sunday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 5, 26, 23, 56, 21)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1998, 10, 3)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2003, 1, 24, 22, 25, 28)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1992, 3, 24)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1973-07-28T06:07:29'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2002, 7, 23)

	fake.month()
	# '10'

	fake.year()
	# '2012'

	fake.day_of_month()
	# '08'

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

	fake.timezone()
	# u'Asia/Seoul'

	fake.century()
	# u'XVI'

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

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

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 3, 19, 2, 43, 38)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1984, 9, 12, 8, 8, 2)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '17:40:35'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 18, 13, 44, 57)

	fake.month_name()
	# 'December'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1376, 5, 19, 14, 56, 38)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(11133, 57546)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/assumenda/eum.mov'

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

	fake.file_name(category=None, extension=None)
	# u'praesentium.webm'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'xlertsattayanusak@yahoo.com'

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

	fake.tld()
	# u'biz'

	fake.email(*args, **kwargs)
	# u'wannapaitoonsrisitiwat@choeychuen.info'

	fake.url(schemes=None)
	# u'http://www.kamalanon-losatapornpipit.com/'

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'main'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'mvinyuvanichkul@bunlupong.org'

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'aunyaporn33@pitanuwat.com'

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

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

	fake.domain_word(*args, **kwargs)
	# u'methavorakul-siripaiboo'

	fake.slug(*args, **kwargs)
	# u'magnam-itaque'

	fake.uri_path(deep=None)
	# u'app/tags'

	fake.company_email(*args, **kwargs)
	# u'ssireelert@choeychuen-sooksawang.biz'

	fake.uri()
	# u'https://www.sukhenai.biz/'

	fake.ipv6(network=False)
	# '657:f0b:9632:42cf:e77e:a598:7272:8e85'

	fake.free_email(*args, **kwargs)
	# u'pianduangsriprames@gmail.com'

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

	fake.mac_address()
	# u'1d:40:1e:0e:b0:d8'

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

::

	fake.isbn10(separator="-")
	# u'0-538-43168-7'

	fake.isbn13(separator="-")
	# u'978-1-249-73591-5'

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

::

	fake.job()
	# 'Copy'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Quaerat aliquid facilis quis consequuntur tempore enim. Itaque delectus neque nobis nostrum delectus perferendis consequuntur.\nCommodi vitae pariatur laudantium. Itaque ab velit officia.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Inventore sit fugit perferendis nesciunt accusamus nihil. Excepturi vitae voluptate cupiditate explicabo sed.',
	#     u'Illo ipsa consectetur laboriosam veritatis. At omnis corporis sed veniam et odio.',
	#     u'Minima harum non sed laudantium sapiente doloribus. Impedit ex deserunt soluta cum. Rerum similique soluta.']

	fake.words(nb=3, ext_word_list=None)
	# [u'ea', u'eos', u'libero']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Laboriosam quo vitae.',
	#     u'Provident architecto nobis ullam labore.',
	#     u'Mollitia et unde sit nobis nam incidunt.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Vel iusto reiciendis ipsum non. Eos explicabo deserunt eaque atque hic repellendus. Velit harum commodi sequi nemo qui.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Perspiciatis doloribus aspernatur numquam esse nisi culpa.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'X@zB0dGt^E'

	fake.locale()
	# u'ff_SN'

	fake.binary(length=1048576)
	# bytearray(b'\x7f\x9a2\x0e \x13M\xaf\xba\r`\x80\x84;\x87<]R\xdf)\xefL\x1fd:w\x04\xf1F\xb0 Xp\x00\xea?8\x90\xd6~\xc51\xe8Y\xbf0\xc2\xaa\xf2ujb\xc0\x970s\xd3\xfa\x82\x17D\x01\xdd\x12\x1e|\x83}BPh\x0b\xc9\xde\x8a(\xb7\xfb)\xa1\xc8r\xa0\xce\xf6\xe6C\x08\xa5\x8c\xa58\x07e&V0\xcd\xa1:P\xd72\x99`\xac\x16\xbbT\xdaU\xe6+\x0c*\xa3\xf3\n\xac\xf5\x14&\x0c\'&2 V\xcar\x9c<\xf3\x9a*\xb8\x82LW&\xce,s\x8d\x0fc[\x18\xc5\x8cK\n+\xcbG\xb3\xafZ\x18&\x0c\x87"t\xa9U\x86mG\xe5T&$\xfd\xb2\x0b\x93/B\xa4o\xdd\xb64\x94\x9d\x1b?\xa2G\xdc\xe7\xdeXa`\xbba\xa6ou\xffcW\'\xf3\xf0\xcf\x17\x0fSZ\xe8\xe1\xfb\xd3\x97Ok\xc1\x0f\x0b4\xb2B\x88\xf4\xf1":\xa5\x8e\xc3\xec\xe7\x07\x0f\xeb\x00\xd5\x94\xe6\xee\t&\x8e\xe6\xaaz\xadE\xfe\xd6A\x02\xcd\x9ff\xfe\xf75XH\x9c\x90\x91\xea\xa3\x92,\xf5\xf0\xd0\x0f(s\xc3\xb5\xdb\xf9 \xf7\x8d\xe8\xcb\tL\x10\xa9\xa2H\x93Cv\x1bM0\x8d\xc5\x9e(\xb7\x8dc\xed\nx\xe8\xe5\xfc\xa4$\x04\xc0vY\xcb\x88t\x9a\xe7\xb6\x88\xe9\x93"yy\xe9y8\xc6\x7f\xd8A*\x88{\xb0\xa28\xdc(\x1dGGs\n^\xb2\x05\x1c\xaf\xc0\xe6W\xd4\xb6\x82G\x16@\xbc\x85A\x1dR\xa2[H\xeb\xc99\x0b\xe6/\xbb\x04\xa8\xb9\x82\xe2\'a\x02\x80\x04\xafs\x87{\xa3 \xfa\xbf\xb8-$\xba\x03K\x80\xc3\x97\xcd\xacm\x86\x96p\xb3\xa5R\xafE\xb7!f9\xe3_\xfd\x1e\xea)\xf5G\x9f\x18\xe3\xcf\xe9\xf0\x88\xd8E\xa2\x15\xbe\xf3\x91\x8c\x94~\xb2\x9c\xefu\xc9\xe9\x7f\xe1\xc5\x1c\x98\x86._\x92!\x87\xae\xd8\xe5\x11\xe5\xcd\xee\xc7\xe6\xf7\x9f$\xa4H\x08\xaf4hji\xab\x87L&\x87\x97\xfc\x0c\xff\xd6\x9cjvK\xc6\xcci\xea*\x19\x7f\x9a4\xc3XJeeZ\x9d}\xfa\xd0\xe6\x93q\xbc\xb6\xe7\x9f\x81a\x8e\xadO\x91\x12\x89\x8b\xa6"\x98"\x12\xbf\xca\xe3\xee\x13\xf6\xf0f\xf7\x91:\xa6\x82\x89\x16\nr\xdb\xb6\xf0D+\xc9v[\x07<iD\x14B.tLXu\x92\xdfp\xf4\x7f\xa3s6?\xbd\xd1\xeb\xc3g6\x11b\x9cV\xf2\xa8\xc4\xa4\xf3\xe0\xe0\x94\xc2\tGu\x1ch\r\xfc\x1e\x85$\x176\xfbp\x05\xbf\xe3\xd9iJK\xdbB\xe1\xceA\x0f\xaa\xd0\x9f\x99x\x9e\x03\xb9{_R\x7f5\xd9.\x10tPW@o+\xa4\xffY\xfe1Ca}\xbb\x9a:\x95i\x8b\xb2\x81\xd8ASr\xc9\x94\x00\xca \x8b\x9a6\xd7\xfa[\x99y\x98T\xdc\xaf\xc4\x0b\xd3/>~\x83\xbc\xe7\xb1V\x05 \x95\x14\xb0\xa0\xe8\x8d\xa9\x16\x0c\xc9\xc16+PZ\xc3L\xa5\x96*\xf6\xd1\xc6\x9c\xbaj\x9f\xf2\x15\xa18Z^\xf3\x13\xbd}\x0c?\xe9\xbf\x98\x9f\xca\xed\xac\xde\x18\xedO{\xbd\x19Q\xa9\xc9\xfeQ\x98\xd3o\xdaU\xf1IW\xcfPx\x8ff\xb0\x91a\x1c\xed0\x0e\xb4mq 1j\x87\xdcs\xe1\x9e\xdb=\xd8\x7f\x15v(q\xa2P\xd6\x1c\x93\xa2&\xc73\x86uJ\xf2\\\xbe\x80\xfd\xde\x13h\xbb\xa9k\xd1,\xda\xadI\x0e\xda H\xecnWN\xa5\x111\xf4\xb7D\xfa`1W\xc5=qM\x9b\x89F&\x12\xae;,\xdf5\x06\x81GF-\xaan\xc4R\x83\x0b\x11\xce\xf0N\xbb\x8c\x96\x86>\xfb0rQ\x17\xcf>(t\x10\xa7\xdax\xb7\xb57mz\x01\xd8C\xf5G\x16]\x8b\x98\xc4K\xfc\xa2:\xd4\xacu\xf1\x13\x9e\xaf\xf8\x83\xfb\xcc\xc2\x1d\xbd\xaf\x8a\x14\'=\x9a\x81w\xb9\xefX\xaf\xd14&\x91\xd4)\x12X\xc2\x1b\x88z\x12\xde\x9e\xeb\xb7~hV\t\xa7%\x07\xa1t\x05\x8d_\x0e\xb65](\x97~\x90\xe3\xaf,\x90B4\xf4\rn\x7f:\x15\xe1\x1a\x0c.v3Md\x91\xc2\xf8\xcf\x81RL8\xd6nn\x86\x14\xf9t5\x9c\xb9@b7\x96\xba\xa5\xd1E:\xa9\xd3\xc5\xa1.\x86\xc3')

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

	fake.sha1(raw_output=False)
	# 'c607de467f2873b86b6937cad174aa2f26f81cae'

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# '9f0dccb8-1071-907b-1ef4-d3213b3cc719'

	fake.language_code()
	# u'gv'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Polauaypon'

	fake.name_female()
	# u'Sarunporn Youprasert'

	fake.prefix_male()
	# u'SUB LT'

	fake.prefix()
	# u'SGT'

	fake.name()
	# u'Nutwadee Bunlerngsri'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Thanatcha Polauaypon'

	fake.first_name()
	# u'Prames'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Niracha'

	fake.first_name_female()
	# u'Teetat'

	fake.last_name_female()
	# u'Pitanuwat'

	fake.last_name()
	# u'Kitprapa'

	fake.prefix_female()
	# u'FS 2'

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

::

	fake.phone_number()
	# u'226-882-2275x2385'

	fake.msisdn()
	# '0391789547875'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'5687 Pasuk Drive\nChaihirankarnfurt, NJ 18008-4847',
	#     'birthdate': datetime.date(1976, 7, 6),
	#     'mail': u'wasinsittisaowapak@yahoo.com',
	#     'name': u'S M 3 Nutcha Sooksawang',
	#     'sex': 'M',
	#     'username': u'aunyaporn02'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'7893 Parin Radial Suite 665\nEast Nutkrita, FM 34209',
	#     'birthdate': datetime.date(1924, 5, 8),
	#     'blood_group': 'A-',
	#     'company': u'Kamalanon and Sons',
	#     'current_location': (Decimal('-1.684584'), Decimal('107.713413')),
	#     'job': 'Engineer, manufacturing systems',
	#     'mail': u'anekvorakulchayapat@hotmail.com',
	#     'name': u'Sittikorn Kumsoontorn',
	#     'residence': u'355 Srisoontorn Fields Apt. 885\nTungkasethakulshire, NM 86199',
	#     'sex': 'F',
	#     'ssn': u'052-60-3137',
	#     'username': u'bunlupongnutwadee',
	#     'website': [u'http://www.kongsri.net/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   -43477380.85,
	#     Decimal('6098.19509102'),
	#     2170,
	#     u'hxkgADBVVKakNPCfMhtR',
	#     u'vXRZIwexAFiIdsVnlSKe',
	#     datetime.datetime(2009, 4, 4, 8, 22, 50))

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

	fake.pystruct(count=10, *value_types)
	# (   [   4186,
	#         u'XyYexCsBgmtlsqsJOhJY',
	#         u'mvethayasas@hotmail.com',
	#         u'https://www.permchart-bunlupong.com/search/category/category/register/',
	#         u'vTOVIOinyXzmbEXuTkRx',
	#         u'JzWyDINfjUkYllyEDRGu',
	#         u'VPxbkgTpYFVFiBIOBmit',
	#         -976760.872,
	#         u'XMfXciwiVEIHAMsccOde',
	#         u'uQcXwmwSKKaOWBxiByaf'],
	#     {   u'animi': u'mWhnbDakCInCTizKwmcy',
	#         u'consequatur': -998636472868.9,
	#         u'debitis': u'https://sujjaboriboon-benchapatranon.com/tag/wp-content/main/register/',
	#         u'iure': datetime.datetime(1992, 3, 1, 19, 59, 14),
	#         u'nisi': -84.21957942479,
	#         u'nostrum': u'vjBoGGyduMvrVFmhJNmB',
	#         u'repellendus': u'http://www.kumsoontorn-benchapatranon.com/blog/categories/author/',
	#         u'tempora': u'pawanmethavorakul@krittayanukoon-neerachapong.org',
	#         u'temporibus': 974,
	#         u'voluptatum': Decimal('22.25698279')},
	#     {   u'adipisci': {   7: 7243,
	#                          8: [   u'uTIIWMtTRfMyaNrCplfr',
	#                                 u'GTTEzwrhBnUnKPQFKlyT',
	#                                 u'https://www.chaihirankarn-pongpanitch.com/categories/tag/homepage.html'],
	#                          9: {   7: u'iASlIhTmYtrHNxHYfwNv',
	#                                 8: datetime.datetime(1981, 1, 2, 16, 38, 11),
	#                                 9: [   u'NmZBrNNNJavSnBuKFaxK',
	#                                        u'aaZnVAZeFWdHguCHZKtb']}},
	#         u'corrupti': {   6: u'uYpXZHXlfIGoGGUgIgGK',
	#                          7: [   354,
	#                                 Decimal('8.43844651162'),
	#                                 u'agFtoBhypxaPvxqdPjyp'],
	#                          8: {   6: u'https://krittayanukoon-wannapaitoonsri.com/index.php',
	#                                 7: 232742.1518353,
	#                                 8: [9863, 1.1463]}},
	#         u'dolore': {   8: u'losatapornpipitchalisa@matinawin.com',
	#                        9: [   datetime.datetime(2005, 9, 14, 22, 32, 44),
	#                               u'chayapat49@gmail.com',
	#                               Decimal('43584232924.4')],
	#                        10: {   8: datetime.datetime(1997, 12, 16, 22, 50, 40),
	#                                9: 99898266.0,
	#                                10: [3667, u'https://kitprapa.com/index/']}},
	#         u'in': {   1: Decimal('35098.375316'),
	#                    2: [   u'TFVukMQQcrZfrUNtNPbP',
	#                           u'rKzNRtztbbGoGioHypMG',
	#                           85011305.7169],
	#                    3: {   1: 9102,
	#                           2: 1705,
	#                           3: [   Decimal('62.54481485'),
	#                                  u'scharoensuksopol@gmail.com']}},
	#         u'labore': {   0: u'nANJTDVYAfrfLQCOufbj',
	#                        1: [   u'tunradee21@prachayaroch.com',
	#                               Decimal('47923.29'),
	#                               u'pornchanokpothanun@titipatrayunyong.biz'],
	#                        2: {   0: u'vCmLwKcIwEVfAwNVEtnM',
	#                               1: u'CoVAoNvvVcWIOfSUiJrX',
	#                               2: [   datetime.datetime(2016, 2, 8, 3, 22, 55),
	#                                      u'http://www.pianduangsri-bunlupong.biz/']}},
	#         u'laboriosam': {   9: 8770,
	#                            10: [   1406,
	#                                    u'asrWepawPbrnXFTEzoaF',
	#                                    u'SGVYrzijsMXVsHDBVwPm'],
	#                            11: {   9: u'aIwBULjGLogRplXydzwT',
	#                                    10: 250,
	#                                    11: [   u'https://prakalpawong.net/',
	#                                            Decimal('33932061995.8')]}},
	#         u'odit': {   4: u'pjSKbDKwLomhdiRXrjxf',
	#                      5: [   7414,
	#                             u'zmtHMZdtbgLKNIpXgcUx',
	#                             u'EoKeWPusMXEPGdCRRION'],
	#                      6: {   4: u'LUfPqUOpeXEsAFQnRNrO',
	#                             5: 858,
	#                             6: [   1741,
	#                                    u'http://todsapornpitakul-pichpandecha.info/homepage/']}},
	#         u'quia': {   5: u'qAijWbnosKfBoyyIxoUk',
	#                      6: [u'supasitsooksawang@chomsri.com', 852, 6395],
	#                      7: {   5: 8451464.5,
	#                             6: datetime.datetime(1986, 5, 21, 7, 41, 4),
	#                             7: [   u'nutkritabunlupong@pongpanitch.com',
	#                                    Decimal('-9648.95457164')]}},
	#         u'voluptatem': {   2: u'VjulLDZtuHDRWQRtqmoT',
	#                            3: [   Decimal('64091351.4884'),
	#                                   8119,
	#                                   datetime.datetime(1973, 2, 19, 9, 22, 6)],
	#                            4: {   2: datetime.datetime(1999, 6, 28, 3, 46, 20),
	#                                   3: 3270,
	#                                   4: [   datetime.datetime(1999, 10, 19, 11, 17, 16),
	#                                          u'nirachapongpanitch@suraprasert.com']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime.datetime(2013, 9, 4, 22, 48, 39),
	#     4186,
	#     u'epqsagrbGdYMdiEvjhVE',
	#     u'htlEsahOpxtcvgWVbqVI',
	#     datetime.datetime(2007, 4, 8, 16, 48, 30),
	#     u'todsapornpitakulprames@sorattanachai.biz',
	#     u'puntira72@sujjaboriboon-prachayaroch.net']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-1909826.22249'),
	#     u'JOivnFufGaitoXaChCNJ',
	#     datetime.datetime(1976, 11, 10, 14, 48, 52),
	#     u'bhTlomZfILHHYSMoALzq',
	#     datetime.datetime(2006, 4, 19, 16, 47, 9),
	#     u'neerachapongkamolchanok@hotmail.com',
	#     u'STMGvSgITVQYmqGocuOu',
	#     u'lwjuoEpwPItQDkNRhdpO',
	#     u'https://phusilarungrueng.com/register.html',
	#     u'KmMyjhrMvMBcIekhkVwn',
	#     u'http://prakalpawong.org/index.php',
	#     543)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([-5686467836.97, u'YKufhxvmOFZvlKdIslht', datetime.datetime(2015, 5, 28, 16, 38, 13), u'OMQyUWHuSXQmOuyBFAOV', 88975272877.0, datetime.datetime(2018, 1, 17, 14, 59, 47), 2225, u'dsorattanachai@bunlerngsri.com', u'https://www.norramon.com/category.html', datetime.datetime(1978, 4, 7, 23, 33, 46)])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'a': 8656279.4,
	#     u'ab': u'pIeFrndCbhNVgYTtImCe',
	#     u'amet': Decimal('4.99899557572E+13'),
	#     u'esse': u'http://www.methavorakul-youprasert.com/',
	#     u'mollitia': u'https://kittakun.net/category.html',
	#     u'omnis': u'xPJkpTzBTrJtVeoZRINB',
	#     u'vitae': -945667700968.0}

	fake.pyint()
	# 4122

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'451-84-1936'

	fake.ein()
	# u'59-7068427'

	fake.itin()
	# u'933-94-6870'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1; rv:1.9.3.20) Gecko/2017-03-18 12:50:28 Firefox/12.0'

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

	fake.opera()
	# u'Opera/8.90.(X11; Linux x86_64; zh-CN) Presto/2.9.182 Version/10.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; pap-AN) AppleWebKit/533.23.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B116 Safari/6533.23.1'

	fake.linux_processor()
	# u'x86_64'

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

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

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