
Language th_TH
===============

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

::

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

	fake.building_number()
	# u'311'

	fake.street_address()
	# u'02502 \u0e28\u0e31\u0e01\u0e14\u0e32 Common'

	fake.postalcode_plus4()
	# u'28230-7346'

	fake.city_prefix()
	# u'Port'

	fake.military_ship()
	# u'USNV'

	fake.city()
	# u'\u0e21\u0e31\u0e19\u0e15\u0e23\u0e32\u0e20\u0e23\u0e13\u0e4cport'

	fake.zipcode_plus4()
	# u'31644-5376'

	fake.state_abbr()
	# u'NE'

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

	fake.street_suffix()
	# u'Loop'

	fake.city_suffix()
	# u'view'

	fake.military_dpo()
	# u'Unit 5572 Box 4637'

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

	fake.country()
	# u'Northern Mariana Islands'

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

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

	fake.postalcode()
	# u'80712'

	fake.address()
	# u'034 \u0e41\u0e19\u0e27\u0e1e\u0e0d\u0e32 Fork Suite 286\nNorth \u0e2a\u0e39\u0e48\u0e02\u0e27\u0e31\u0e0dmouth, VI 89029-5565'

	fake.state()
	# u'Oklahoma'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'\u0e17\u0e31\u0e28\u0e19\u0e2a\u0e38\u0e17\u0e18\u0e34 Manors'

	fake.zipcode()
	# u'02291'

	fake.postcode()
	# u'23427'

	fake.military_apo()
	# u'PSC 0228, Box 8237'

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

::

	fake.license_plate()
	# u'6BYE111'

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

::

	fake.bban()
	# 'JEOV9642488530643'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB54ZSGH6407026111664'

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

::

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

	fake.ean13()
	# u'3582465714755'

	fake.ean8()
	# u'62215213'

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

::

	fake.rgb_css_color()
	# u'rgb(235,39,137)'

	fake.color_name()
	# u'Orchid'

	fake.rgb_color()
	# u'28,53,34'

	fake.safe_hex_color()
	# u'#885500'

	fake.safe_color_name()
	# u'gray'

	fake.hex_color()
	# u'#22f43d'

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

::

	fake.company()
	# u'\u0e17\u0e38\u0e21\u0e30\u0e1a\u0e38\u0e15\u0e23\u0e4c Ltd'

	fake.company_suffix()
	# u'Inc'

	fake.catch_phrase()
	# u'Synchronized attitude-oriented workforce'

	fake.bs()
	# u'reinvent vertical metrics'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'JCB 15 digit'

	fake.credit_card_full(card_type=None)
	# u'Discover\n\u0e27\u0e34\u0e2a\u0e34\u0e10 \u0e17\u0e2b\u0e32\u0e23\u0e41\u0e17\u0e49\n6586168457735680 08/20\nCVC: 348\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'BURST'

	fake.currency_code()
	# 'CVE'

	fake.currency_name()
	# 'Romanian leu'

	fake.cryptocurrency_name()
	# 'Tether'

	fake.cryptocurrency()
	# ('DASH', 'Dash')

	fake.currency()
	# ('LAK', 'Lao kip')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 10, 9, 10, 32)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 17)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(2000, 8, 6, 22, 42, 40)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2017, 9, 30)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 2, 10, 21, 33)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 12, 6, 20, 46, 11)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2010, 7, 25, 18, 26, 25)

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

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 17, 8, 10, 6)

	fake.date_object(end_datetime=None)
	# datetime.date(1979, 5, 7)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2000-06-24T11:53:49'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2006, 11, 26)

	fake.month()
	# '05'

	fake.year()
	# '1973'

	fake.day_of_month()
	# '26'

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

	fake.timezone()
	# u'America/Guatemala'

	fake.century()
	# u'VI'

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

	fake.time_object(end_datetime=None)
	# datetime.time(11, 57, 56)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 23, 14, 56, 7)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2004, 8, 31, 1, 0, 23)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 20, 2, 20, 23)

	fake.month_name()
	# 'August'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(341, 7, 12, 6, 50, 14)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(1978, 66216)

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

::

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

	fake.mime_type(category=None)
	# u'audio/webm'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/ad/sequi.pptx'

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

	fake.file_name(category=None, extension=None)
	# u'temporibus.js'

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

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

::

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

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

	fake.tld()
	# u'com'

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

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

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'author'

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

	fake.safe_email(*args, **kwargs)
	# u'wichay78@example.com'

	fake.ascii_email(*args, **kwargs)
	# 'pthnraks@thngsinthu.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'suchaadaa72@thuwanuti.com'

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

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

	fake.domain_word(*args, **kwargs)
	# u'aenwphyaa-thngaeth'

	fake.slug(*args, **kwargs)
	# u'dolor-sint'

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

	fake.company_email(*args, **kwargs)
	# u'thrngokmlsuththiwaathnrphuthi@aithyaeth.com'

	fake.uri()
	# u'http://www.thnadkaarekhiiyn.org/main.htm'

	fake.ipv6(network=False)
	# '8d65:a7e7:5eef:562c:f870:b409:870e:487b'

	fake.free_email(*args, **kwargs)
	# u'ntriiephrinthr@hotmail.com'

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

	fake.mac_address()
	# u'd6:16:7e:e2:47:32'

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

::

	fake.isbn10(separator="-")
	# u'0-583-68243-X'

	fake.isbn13(separator="-")
	# u'978-0-434-90940-7'

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

::

	fake.job()
	# 'Midwife'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Excepturi reiciendis deleniti. Ipsa sapiente blanditiis in excepturi distinctio assumenda. Quod quas tenetur optio.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Debitis reprehenderit vitae cum voluptatibus quae optio. Recusandae eaque occaecati amet rerum sapiente quo. Deleniti veniam tempora ipsum sint.',
	#     u'Ullam accusamus repellendus debitis incidunt. Sunt possimus enim totam eius. Quam officia et repellat.',
	#     u'Odio vitae consequuntur mollitia doloremque. Quidem facilis eaque recusandae consequuntur molestias voluptatem.']

	fake.words(nb=3, ext_word_list=None)
	# [u'ullam', u'minus', u'ducimus']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Distinctio repellendus doloremque.',
	#     u'Quo laboriosam assumenda optio explicabo aperiam eos.',
	#     u'Atque repellat ducimus accusamus.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Animi esse illum ut dolorem saepe illo similique. Vitae nihil natus veritatis occaecati incidunt soluta. Aut temporibus iusto.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Iste iusto quas nobis consequuntur provident occaecati.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'f_1fy7U&6j'

	fake.locale()
	# u'ar_QA'

	fake.binary(length=1048576)
	# bytearray(b'>\x05w\xae;IyB3S\xe7\xd8\xe5\xd8Qy\xa5\xef\xf1\\$:\x82DA\x82;4\x88\xa1\xf8\x04`\x03\xc5\xf38\x9d\xe7\\\xd51\xa3\x85V\xa9=f.\xbf\xd1\xa5\x18\xc1,\x85\xf5\xbdG\xbbW+&\x94\xcd?\x0e\x1e\xa7\xf0\xdeV\x9a\xd0\x10z\xb7u8\x04\xca\x15\x94\xca\xb0o\x90\xaaY\xea[\x94gtX\x8a\xee\xf8\x1f\x97\x9d\\\x80\xe3\x07\x8a?\xbc\xabC\xff\xe6\x97\xaee\x1f&\xbc\x1b\xd7r\xdc\xa8\xcc\xee\x0egBE\xdd\xb5\x0eprO;\xc2\xf8\x08\xd6\xa7K\x17A|G\xfcp\xa2&\x8a\xc0\xa6IK\xf9ld\xa7\xbao&\x94}\xea\xbd\xb5\xc1\x13\'dbz\xc9t\xa1\x10\x80\xbb\xf0\xcf\x95\xa4\xad+,\xa2\x00# /D%\xe4\xcf\xe6:X;\x18\xea\x11r\x08\xdb\x88`!\xbc*\x19l\xbe\xe6\xd5\x8a\x8f\x07\xfe\x17\x84\xa9X\x89\x04tJ5\xf8=\xc3\xf0U\x05k;#\xf9\xd6\x15\xe2H\xc0\x83\x9a\xe3\r\x01\xb9\xec\xdc\xa8\xc4^q\x87Zm\x80\xe5\x11h\xc7\x8a\xa7\x19\x1a8\xe8\xe8\x99\x02\xca\xde\xca\x08h/\x90M\x1b\xca\x1f\x80\xa8\x97\xd3@\x86\x9b\xd6\xa5\xdaJ\x1e\x9a\x06\x86\xdc\xb3\xd9r}\x94\xc2\x82\xdcv\xd1\xf5\xe6\'\x0c}\xd6G{\xec\xfbK\xff\xc2H\'K\xdch\x90Q&D\xcc&]\xf0r\xe3\x9b\xaa\x1b\xaa\xa6]j\xf0\x18!\x92\xc5\x8dY\xce\xe2\xf0\x7fn\xc4\x02\n\xa8\x9dK\x19\x83\xb1\xfcS\xddKd|\x92\xa6\x8f\xdd3e\x14\xc4\x90/\x05nc\xcb\xd4\x1e\x1d\xa9\x1b\xe8\xe3\xf8$\xb4u!r\xd1\x11\xb0\x03\x94\xd5\x8a6\xb6\xbe\x87\xf7W\x03\x81\xf8e\x15\xfc\xeb`\x96/\x1cnY\x9f\x9c\xcf\x98Bt\xe4@\xf8\x86\xfe^\xae\x90\xf1\xd8\xbe\x12\xdd9\x89\x8f\xe1\x87a\xdb\xba0Z\x0e.Y\xe5\xbe\xd6\xe4\x80u\\\xceN\x01\x05u\xb7\xf4f\x82\xfe\xd2(\xa2~\xba\x9523\xb2eU\xd9\xae\x84\xe4 \x98\xb7\xb2_.\xfc\xff\xbfJ"\x07!\xc6b\xf3\xa9G\x03\xd1Bw\x8a\x88(M\xc6\xb0\xc4\xeb\xab\xf6K\xa8\x06?\x8d\x97Z\x00\x03|\x9b\xc8T\xdf\xc3w\xc81\xc4u\xb4\x91\x12\x14\xfcm \x12\xeaY\xb5\xa3\x94\x9c\xb6\xef\xa9\x98\xa8\xe9\xae7\xfa\xd6\x93d\xaa\x8bsi\x95\x97OT\x91z&\xa5\xe3f\xf5!oC\xf2\xce\xfb\xefn\xc1\xe3\xef\xf2\xfc\xc6\xc9\x880\xfd\x8akf\xa4\x0b_+\xf6:\xc2s\xfb[\xfc\xa1nL\xc9\xb6k.\xaa\x95\x8f\x96<\xabf\x8a\x94\xd8c*Tf5\x1e\x00F\xc7\xfa,\x10\x9cXC\xd8j;\xbcm\xb8\x13H\x8d_\xa9W\x80\xf2\x10\x1f\x9f\x00\xac\x81U\xce\x08\xb3\xea\xc0b9\x03\xade\xb6n\xb2\xbd\xd6u\xcd\xdf\x12\xfe?\xc9\x8e4?\xad\xcf})5\xcb\xd9|\x146i\x15vi\xa1\x0bWa4\x1e\x84\xf2FL\xd4!\x9d\xdb\xe4\x97\xe2g\xe6\xab\xb0\xf0v\x8b\x99\x16)\x8d\x19\xc9\x97-\x8e1\xba~5\xc4e)\x05\xacM\x89\xcb\x94wW=R\xfd\xcf\x15\xc6\xf48\xf7\x8f\x91\xbd\xc5\x8b\xda\x13\x89\x04\xe3qX%b\xa7}\xd6\xf8\xa9\x84%\xc9\xe9l^](\xcbY\xe9\xe5l\x19xR\xfd\x00\xc3\\\xd3i\x7f\x85\x03\xaa\xc2\xe6\x08\x8d;\x89A\xe0>\xaf\x9e\x7f|\xebv\xe9\x86\xe8s\xc09\x90\x80\x99\x8c u\x0e\x9cp\xf99\x8di\x8e3\xe6L\xbe\x0b\x8b\x90D\xfe\xa6\x88\xddu\x80\x9e$x\xd8\x06F\xae\x84\x0f\xc6\xe4\x8c\xb5`\xf1\xa2\xee\x9cm\x1a\xfeQ\x1b\x9c"\x84\xe8\xb24nhW\xb9bc.\xd9\xa86\xb2*\xf3\xc64\xe6\xbaa\xdb\x03\r\x08e\xa5\xc8\xa1\x0c}\xab\xec\xc8w\xc6\xd7$\x86D\x11\x96\x0f1A\t\xdb\xe5"\xcb\xef\xd5Q\t\xbb\xd6\xd6\xad\xd37\xfd\x97V+\xfe6\x06\xc6\xa7\xd5\x863:\xd6\xfa\xcd\xeb\x88\xce\x8b\x87<\xfc\x841#\xc0\xf6\xb6\xc2\xa3\xff\xb2Z\xe6\xeeL\x1e@\xde\x0f]\xabc\xc4L\xcbR9\xe7<\xaa\xda\xd6c~<\xf1\x1c\xda\xd4\xce~u\x038\x91\xe1\x1cd\x13\x806!\xc6%\xaf\x14\xe0Y$b')

	fake.md5(raw_output=False)
	# '68a74feb71df90498a4232a0b13ba110'

	fake.sha1(raw_output=False)
	# '114bcdf929b09e85394fc661d6fe4d6329b52787'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '1b0bacb4e1afb49f3df9460e1aeb5f28a65bbe8cd888ebbdcb99226acd025be2'

	fake.uuid4()
	# 'e13c2a56-c9e0-a2ca-629d-f452cd672b5c'

	fake.language_code()
	# u'os'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'\u0e16\u0e19\u0e31\u0e14\u0e2d\u0e31\u0e01\u0e29\u0e23'

	fake.name_female()
	# u'\u0e42\u0e1b\u0e29\u0e22\u0e30\u0e08\u0e34\u0e19\u0e14\u0e32 \u0e14\u0e27\u0e07\u0e17\u0e31\u0e1a\u0e17\u0e34\u0e21'

	fake.prefix_male()
	# u'\u0e19.\u0e17.'

	fake.prefix()
	# u'\u0e19\u0e32\u0e27\u0e32\u0e2d\u0e32\u0e01\u0e32\u0e28\u0e40\u0e2d\u0e01'

	fake.name()
	# u'\u0e04\u0e21\u0e01\u0e24\u0e29 \u0e17\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e14\u0e34\u0e10'

	fake.suffix_female()
	# u'\u0e13 \u0e2a\u0e07\u0e02\u0e25\u0e32'

	fake.name_male()
	# u'\u0e18\u0e27\u0e31\u0e0a\u0e0a\u0e31\u0e22 \u0e16\u0e32\u0e27\u0e23\u0e30\u0e27\u0e23\u0e13\u0e4c'

	fake.first_name()
	# u'\u0e17\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e2a\u0e21'

	fake.suffix_male()
	# u'\u0e13 \u0e19\u0e04\u0e23'

	fake.suffix()
	# u'\u0e13 \u0e2a\u0e07\u0e02\u0e25\u0e32'

	fake.first_name_male()
	# u'\u0e40\u0e2b\u0e21\u0e30\u0e23\u0e31\u0e0a\u0e15\u0e30'

	fake.first_name_female()
	# u'\u0e18\u0e19\u0e1e\u0e25'

	fake.last_name_female()
	# u'\u0e19\u0e32\u0e16\u0e30\u0e1e\u0e34\u0e19\u0e18\u0e38'

	fake.last_name()
	# u'\u0e14\u0e32\u0e27\u0e2d\u0e23\u0e48\u0e32\u0e21'

	fake.prefix_female()
	# u'\u0e40\u0e23\u0e37\u0e2d\u0e40\u0e2d\u0e01'

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

::

	fake.phone_number()
	# u'1-248-812-7437x36048'

	fake.msisdn()
	# '4865110690841'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'6453 \u0e1a\u0e23\u0e23\u0e08\u0e07 Manor\n\u0e19\u0e34\u0e25\u0e2a\u0e38\u0e27\u0e23\u0e23\u0e13\u0e4cville, VT 95914-6505',
	#     'birthdate': datetime.date(1990, 1, 28),
	#     'mail': u'mthuraasaythuupawiorcchn@hotmail.com',
	#     'name': u'\u0e23\u0e38\u0e19\u0e2a\u0e33\u0e23\u0e32\u0e0d \u0e17\u0e2d\u0e07\u0e2d\u0e22\u0e39\u0e48',
	#     'sex': 'F',
	#     'username': u'emthiniinakrb'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'006 \u0e21\u0e2b\u0e32\u0e17\u0e38\u0e21\u0e30\u0e23\u0e31\u0e15\u0e19\u0e4c Manor Suite 743\n\u0e2a\u0e32\u0e25\u0e34\u0e19\u0e35bury, GA 44525-4914',
	#     'birthdate': datetime.date(1968, 8, 23),
	#     'blood_group': '0-',
	#     'company': u'\u0e1a\u0e38\u0e19\u0e22\u0e30\u0e15\u0e35\u0e23\u0e13\u0e30-\u0e40\u0e13\u0e23\u0e32\u0e19\u0e38\u0e2a\u0e19\u0e18\u0e34\u0e4c',
	#     'current_location': (Decimal('85.3889955'), Decimal('1.805361')),
	#     'job': 'Health physicist',
	#     'mail': u'dthnadrb@hotmail.com',
	#     'name': u'\u0e1e\u0e32\u0e25\u0e38\u0e2a\u0e38\u0e02 \u0e1a\u0e38\u0e0d\u0e0d\u0e32\u0e44\u0e25\u0e22\u0e4c',
	#     'residence': u'66809 \u0e18\u0e31\u0e0d\u0e32\u0e42\u0e20\u0e0a\u0e19\u0e4c Extensions Suite 989\n\u0e14\u0e32\u0e27\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22view, NH 49866-3933',
	#     'sex': 'F',
	#     'ssn': u'052-54-7587',
	#     'username': u'thungenginraamsuut',
	#     'website': [   u'https://nuttaar-thnmmnusy.com/',
	#                    u'https://www.tangrb.com/',
	#                    u'https://www.buyyaaphirmy.info/',
	#                    u'https://www.naamkham.biz/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   9121,
	#     u'eicuMSKwpHKKEmRwtktP',
	#     614,
	#     u'http://www.thaaraathr.com/main.asp',
	#     703873663709787.0,
	#     u'XRYrVPuAXoDrAeJMBdVw',
	#     7985,
	#     u'wjeKDrbHifkMlXUMDYdo',
	#     5460,
	#     u'GTYSNWootslsoIKLetoS',
	#     6661)

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'http://aitrbrrph.com/privacy.php',
	#         u'qniymthrrm@entrmnii.com',
	#         u'TckOsltXTKjakiTvTVnX',
	#         u'ochtielsakdi10@thnimmaas-tangrb.com',
	#         datetime.datetime(2008, 8, 26, 12, 54),
	#         u'HOACemFdYUIljOLmHgfp',
	#         datetime.datetime(2007, 6, 17, 3, 6, 33),
	#         u'http://thungengin.info/posts/wp-content/blog/faq/',
	#         datetime.datetime(1974, 3, 11, 8, 56, 14),
	#         8865],
	#     {   u'dolor': u'eRVCjfYPhTJjusPipVmT',
	#         u'eligendi': datetime.datetime(2000, 11, 30, 16, 36, 37),
	#         u'eum': u'https://www.nilslaw.com/index/',
	#         u'nihil': u'SXhPAmDQxFSOIFKUGHjx',
	#         u'nobis': u'nilwrrnthaychnk@hotmail.com',
	#         u'odio': 6944,
	#         u'quae': u'XdHnkOZaMruJXhwjDcwA',
	#         u'quas': Decimal('-667070.61'),
	#         u'reprehenderit': u'OUPUpWVMYxAQbPgEIMNg',
	#         u'rerum': datetime.datetime(1997, 5, 20, 7, 17, 7)},
	#     {   u'blanditiis': {   5: -361451260476615.0,
	#                            6: [   162018.1685,
	#                                   datetime.datetime(1988, 1, 6, 10, 9, 36),
	#                                   Decimal('9866521.36344')],
	#                            7: {   5: 59.0,
	#                                   6: u'kzVxNPJSxLlQrvpyFWHx',
	#                                   7: [   u'XQUZHfSMKlUoTYpaPyQd',
	#                                          22175757022.863]}},
	#         u'consequatur': {   8: u'wSjxKsKSoSuxvqKZocuU',
	#                             9: [   u'https://www.tansthity.com/app/category/',
	#                                    3813,
	#                                    datetime.datetime(1976, 6, 12, 22, 28, 5)],
	#                             10: {   8: u'http://www.nakrb-bindii.info/',
	#                                     9: u'fgeCuwWPcZRCxMEQvDEw',
	#                                     10: [3762, Decimal('-50327.0')]}},
	#         u'dignissimos': {   3: u'SQiKadLIjWHYZAQFemht',
	#                             4: [   9,
	#                                    Decimal('-430702.83938'),
	#                                    u'AvBduyxBgIPqhYeyCjOV'],
	#                             5: {   3: Decimal('-8167278010.14'),
	#                                    4: u'https://www.nkthng.com/terms/',
	#                                    5: [   u'iepNDcSBSNlzElHAcCGB',
	#                                           u'aVOClGcCaBwJBqSLUtkl']}},
	#         u'ducimus': {   9: 3979292355.38,
	#                         10: [   -676617740.38,
	#                                 u'aNCwGEjXEophvKMGkOKg',
	#                                 u'sYSLgelAJVRuCvUYmkpT'],
	#                         11: {   9: datetime.datetime(1988, 3, 15, 19, 49, 17),
	#                                 10: u'DeILabUVQQKVaNTCwIzG',
	#                                 11: [u'onuttaar@namthiphy.com', 5241]}},
	#         u'iure': {   2: u'XtEKQqfhmATusGPihvWs',
	#                      3: [   31487647045013.0,
	#                             u'LVrvYaUlMtHPZfcPohoh',
	#                             u'https://www.thngsinthu.com/homepage.htm'],
	#                      4: {   2: u'echuuebuychaynrthukkh@thngyuu.com',
	#                             3: u'JgIIluZAIRkbYukBrUmr',
	#                             4: [4525, u'https://etchakamphu.org/']}},
	#         u'laborum': {   0: Decimal('30581329.582'),
	#                         1: [   u'tvgAmKKPhReMaIBVunTB',
	#                                u'xkZCrKrhTXyUDqOdYMEf',
	#                                u'https://www.nirahaanii.com/'],
	#                         2: {   0: u'cchaarunii49@gmail.com',
	#                                1: u'JyVmgfqlvvFntROkAlrT',
	#                                2: [   u'naakhsuthinnitisiri@hotmail.com',
	#                                       Decimal('-5168289.551')]}},
	#         u'molestias': {   7: Decimal('2.83994559241E+14'),
	#                           8: [8793, 3957, u'xRjCHJhlMaQLuqGVswKk'],
	#                           9: {   7: Decimal('-49607.3845776'),
	#                                  8: u'wVQTmcwvLRdNcaRkyDdv',
	#                                  9: [3030, u'KTxRNoGyqWnIWmUeqlhr']}},
	#         u'nisi': {   1: datetime.datetime(1973, 10, 2, 5, 25),
	#                      2: [   u'XrMkGuPLwKVjEnjkKlnc',
	#                             u'MdlUfQdXFvWfToHUnCrD',
	#                             u'HMxPqsjhNzDoZkEqaCsp'],
	#                      3: {   1: Decimal('3.18159286533E+13'),
	#                             2: Decimal('6.53829773887E+13'),
	#                             3: [-995475.5397, u'BYsQrlYToinhygrgjwLe']}},
	#         u'repudiandae': {   6: u'uSBwRblYJCMNJckWGZNV',
	#                             7: [   u'SWiwMeDoSRPeVTcDNpep',
	#                                    u'gJZOIZmxFOqSrIViUSvO',
	#                                    Decimal('-561914563089')],
	#                             8: {   6: datetime.datetime(2015, 5, 18, 8, 40, 41),
	#                                    7: 7473,
	#                                    8: [   u'ULvBdhYFYZthYMyzGgES',
	#                                           u'kLtjItvjTptSSuVPefBZ']}},
	#         u'ut': {   4: u'IXhhrDYzNfnAVNdqckHH',
	#                    5: [   datetime.datetime(2001, 10, 3, 12, 16, 48),
	#                           u'qRPnViysdsyAjuqBeBgj',
	#                           datetime.datetime(1982, 11, 5, 6, 56, 43)],
	#                    6: {   4: u'iHPwjjFAgBMETNWTdJiB',
	#                           5: u'http://www.niymthrrm.com/',
	#                           6: [   u'phrrnpraphaa63@yahoo.com',
	#                                  Decimal('691180161738')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'gqgnIgcgIIgxmxRHeEvq',
	#     u'keCjljfSJNBHXdRbstDq',
	#     u'doHjFIGICgpkoCtYqWUK',
	#     5276,
	#     2963,
	#     u'fpWxyXCxVNxvRXFAMdta',
	#     u'krsdaathrrmniym@gmail.com',
	#     u'mtQlCuHJmFlKxNcmlsIC',
	#     u'MhmqUTIvufYHWdvXXuSa',
	#     3699,
	#     416]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   160616.1933886,
	#     datetime.datetime(2004, 1, 22, 16, 16, 52),
	#     datetime.datetime(1989, 8, 20, 3, 58, 25),
	#     u'CMeUjrhRgBOZltIHNCXn',
	#     6582034894734.0,
	#     u'kcNXHkzmMFrYUAOlrHLp',
	#     u'NUfoQPMyrLXOxgkBXxcG',
	#     6672981928830.39,
	#     8028,
	#     u'daawkracchaayurphiiphathnphngs@yahoo.com')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([8035, u'xJPUnSCbCfwpiTdaCEMF', Decimal('1.40233092666E+12'), u'https://thnadphimphkaar.com/', u'edchkhumsudbrrthad@hotmail.com', u'bunyaohtranrphay@gmail.com', 4852, u'UOhPosirxgZfHbcdWKol', u'https://www.tangephaa.net/app/explore/main/search.php', u'LpuEXizMbLuarCMvDrvF'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'commodi': Decimal('-76980194426.7'),
	#     u'deleniti': u'EwVwwxDZxDLNyqPCLIgX',
	#     u'doloribus': u'GzcFYCEaceJqtjMQakSw',
	#     u'incidunt': -25555451.0,
	#     u'libero': Decimal('857272875309'),
	#     u'mollitia': 7056,
	#     u'nobis': 3025,
	#     u'provident': datetime.datetime(2013, 4, 30, 16, 30, 35),
	#     u'quidem': u'https://www.enuuenum.com/homepage/',
	#     u'vitae': -9709.1133}

	fake.pyint()
	# 6190

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'024-96-7750'

	fake.ein()
	# u'60-0975778'

	fake.itin()
	# u'965-96-0122'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.5.20) Gecko/2010-04-06 05:46:03 Firefox/3.6.3'

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

	fake.opera()
	# u'Opera/8.68.(X11; Linux x86_64; mhr-RU) Presto/2.9.179 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 95'

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

	fake.user_agent()
	# u'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/3.1)'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Windows NT 5.2) AppleWebKit/5312 (KHTML, like Gecko) Chrome/58.0.887.0 Safari/5312'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; tig-ER) AppleWebKit/534.27.2 (KHTML, like Gecko) Version/3.0.5 Mobile/8B114 Safari/6534.27.2'
