Language en_TH

faker.providers.address

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

fake.building_number()
# u'14162'

fake.street_address()
# u'383 Kodchaporn Fields'

fake.postalcode_plus4()
# u'75488-7461'

fake.city_prefix()
# u'East'

fake.military_ship()
# u'USNV'

fake.city()
# u'Methavorakulton'

fake.zipcode_plus4()
# u'48687-1838'

fake.state_abbr()
# u'VI'

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

fake.street_suffix()
# u'Pass'

fake.city_suffix()
# u'ville'

fake.military_dpo()
# u'Unit 0057 Box 0346'

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

fake.country()
# u'Cambodia'

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

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

fake.postalcode()
# u'98876'

fake.address()
# u'USNV Wasunun\nFPO AE 76140-9378'

fake.state()
# u'New Jersey'

fake.military_state()
# u'AP'

fake.street_name()
# u'Chayapat Glen'

fake.zipcode()
# u'08897'

fake.postcode()
# u'34142-4090'

fake.military_apo()
# u'PSC 3721, Box 4888'

faker.providers.automotive

fake.license_plate()
# u'IKU-738'

faker.providers.bank

fake.bban()
# 'PDOA7637537889308'

fake.bank_country()
# 'GB'

fake.iban()
# 'GB73VTJD9762532769245'

faker.providers.barcode

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

fake.ean13()
# u'1621813251237'

fake.ean8()
# u'82135249'

faker.providers.color

fake.rgb_css_color()
# u'rgb(9,217,228)'

fake.color_name()
# u'DimGray'

fake.rgb_color()
# u'197,227,208'

fake.safe_hex_color()
# u'#eeaa00'

fake.safe_color_name()
# u'olive'

fake.hex_color()
# u'#9419e0'

faker.providers.company

fake.company()
# u'Chaisatit, Chaisatit and Lertsattayanusak'

fake.company_suffix()
# u'PLC'

fake.catch_phrase()
# u'Assimilated dynamic ability'

fake.bs()
# u'expedite scalable niches'

faker.providers.credit_card

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

fake.credit_card_provider(card_type=None)
# u'American Express'

fake.credit_card_full(card_type=None)
# u'VISA 19 digit\nNichakarn Turongkinanon\n4767253325612860986 08/19\nCVC: 769\n'

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

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

faker.providers.currency

fake.cryptocurrency_code()
# 'USDT'

fake.currency_code()
# 'MMK'

fake.currency_name()
# 'Tajikistani somoni'

fake.cryptocurrency_name()
# 'Namecoin'

fake.cryptocurrency()
# ('LSK', 'Lisk')

fake.currency()
# ('SGD', 'Singapore dollar')

faker.providers.date_time

fake.future_datetime(end_date="+30d", tzinfo=None)
# datetime.datetime(2018, 8, 17, 9, 26, 15)

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

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(1995, 5, 16, 19, 28, 36)

fake.date_this_decade(before_today=True, after_today=False)
# datetime.date(2010, 5, 6)

fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2018, 8, 14, 13, 54, 36)

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

fake.day_of_week()
# 'Tuesday'

fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2015, 9, 3, 14, 10)

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

fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2001, 6, 2, 12, 38, 15)

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

fake.am_pm()
# 'AM'

fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
# datetime.datetime(2018, 8, 16, 9, 31, 45)

fake.date_object(end_datetime=None)
# datetime.date(1997, 11, 12)

fake.date_this_year(before_today=True, after_today=False)
# datetime.date(2018, 5, 24)

fake.iso8601(tzinfo=None, end_datetime=None)
# '2001-11-24T13:08:58'

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

fake.date_this_century(before_today=True, after_today=False)
# datetime.date(2001, 6, 8)

fake.month()
# '07'

fake.year()
# '2004'

fake.day_of_month()
# '08'

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

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

fake.century()
# u'IV'

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

fake.time_object(end_datetime=None)
# datetime.time(15, 55, 14)

fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2018, 4, 8, 15, 38, 1)

fake.date_time(tzinfo=None, end_datetime=None)
# datetime.datetime(2009, 12, 2, 2, 2, 32)

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

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

fake.past_datetime(start_date="-30d", tzinfo=None)
# datetime.datetime(2018, 7, 28, 17, 40, 53)

fake.month_name()
# 'October'

fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
# datetime.datetime(111, 7, 17, 4, 24, 19)

fake.time_delta(end_datetime=None)
# datetime.timedelta(15723, 45368)

faker.providers.file

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

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

fake.file_path(depth=1, category=None, extension=None)
# u'/recusandae/necessitatibus.xls'

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

fake.file_name(category=None, extension=None)
# u'illo.ppt'

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

faker.providers.internet

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

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

fake.tld()
# u'info'

fake.email(*args, **kwargs)
# u'pattamonturongkinanon@gmail.com'

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

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

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

fake.uri_extension()
# u'.jsp'

fake.uri_page()
# u'home'

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

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

fake.ascii_email(*args, **kwargs)
# 'kamalanonchaiwut@gmail.com'

fake.ipv4_network_class()
# u'c'

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

fake.ascii_company_email(*args, **kwargs)
# 'chanyaboonpungbaramee@lertsattayanusak.net'

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

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

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

fake.slug(*args, **kwargs)
# u'exercitationem'

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

fake.company_email(*args, **kwargs)
# u'iprachayaroch@prachayaroch.net'

fake.uri()
# u'https://www.tungkasethakul.com/app/category/main/main/'

fake.ipv6(network=False)
# 'f3cf:a4aa:29a7:51f3:25c0:9cdf:5cc2:2f7f'

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

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

fake.mac_address()
# u'd8:98:40:80:0b:b6'

faker.providers.isbn

fake.isbn10(separator="-")
# u'0-7344-1759-4'

fake.isbn13(separator="-")
# u'978-1-77734-175-6'

faker.providers.job

fake.job()
# 'Artist'

faker.providers.lorem

fake.text(max_nb_chars=200, ext_word_list=None)
# u'Nesciunt deserunt adipisci dolorem quaerat deleniti inventore tenetur. Iusto perspiciatis dolorum maiores.\nSaepe corporis ducimus quaerat ipsa.'

fake.paragraphs(nb=3, ext_word_list=None)
# [   u'Similique esse exercitationem delectus laudantium. Nam quaerat totam fuga a voluptas harum neque.',
#     u'Unde ad dolorem eius illum tenetur rem doloribus. Magnam voluptatem animi nihil. Libero quas illo aperiam occaecati ipsam porro.',
#     u'Quidem occaecati soluta laborum. Ducimus rerum libero sit eaque possimus.']

fake.words(nb=3, ext_word_list=None)
# [u'officiis', u'harum', u'earum']

fake.sentences(nb=3, ext_word_list=None)
# [   u'Placeat ab explicabo at harum officiis.',
#     u'Quia repellat ea iusto eaque aliquam ipsam.',
#     u'Nostrum vel quae voluptas.']

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

fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
# u'Dolores in porro illo ullam numquam tempora. Aliquid eum ducimus natus animi doloremque.'

fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
# u'Reiciendis expedita at.'

faker.providers.misc

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

fake.locale()
# u'ss_ZA'

fake.binary(length=1048576)
# bytearray(b"V/\xc6\x03(/\xcd\xec\xf0`\xf3+#\xfe\x0f\x0efA\x03FQm\xaf`\x0e\x89\xec\xdd\x9d\x9e-\xe0\xf0D*N\xa5\x10\xeb\xe6\xcf\xd3\xbcp\xb3o@\x8a\x0erz\xc2\xe1\xc8*_\xe0\xf1\xce\x9d}\xf9\x88C\x05\xa2\xdf\xe1-\xc4\xe1\xc9\x1e\x9aG\xcc3dO\x96\x1a\xd2\x8e?I\x8c\xe4\xed0W\x92\xf3\x82\x8a\x12\xf3\x13\xeaf\x03J\x92]\xc7O*\x9b\xed2\xa8\xd0\x9ft\xae\xd9Z\xac\xf7m\x87\xc8\xa2\xb2\xda~\x18\x8bRvv\xa1b\xa7Z\xd2b\xff\x0cAD\xe4\x8e\xa8p\x8c\x02\x96\x8a\xe1^?r\x99\xbfm\x9b\x8f\x92\xde\xb5\r\xe3\x9f/\xfa\xb1\xbbW1\xb3&\x89>\xe4\x0698\xf6\xfeQs!\x7f\xb23\x80!\x99+\x98l\xa0\x80\xf6\xc2\xa3G\xd6\xc6E\x03\xd3\x8a\xaa\xef\xcaV\x8e\x8fH\xde\x83t\x01\xcc*\xd0\x8e\x19c(\x17\x1a\xeag*\x19\xb0Kr\x8a)\xe0\xa3C\xf5\x9a\xdaIg\x88P#\xcd*2Y h\xa2\xec\xce\x99\xac(7\xafQ\xd1\xfb\xdf\xedYs\x04\x98\xef\xe1Q\xf2)}:\xbe\x8b\xf8P\xe5A\x93\xd4Fc\xdb\x15U<E\xb26\xe8\x9d\xa4\xf8\xd7\x87\xae\xe9\x9a43z/\x89s\x16\x9b0\xd0\xec\xd3\x9b\xe0\xa3\x8c{P+\xc4\x8e\xed\xa06[e\xd9\x9e\xb8\xc5\xc9\xa4?\xb6\x8dC\xf1\xc4\xdf1?\xdfn\x90\'\xd1(,\xa4\x17\x9c-\x87\x9a\x06\xf0o\xddb\x9e\xbbn\x86\xcf\x80<4\x9a\x1eT\xf3\xb1@\xa3\xc1\x88\xfc`\x15\xa4\x81+\x9a\x08{\x9a\x16\x1c1\x1d(u\xdf\xbae.;\xc9\x82\x9d\xc9w\x1f\x970\xf42UAA\x06\r3\x16\xc6\xe7\xe8\xd2_\xb2\xce\x81=s\xfa\x08v\xa6d1\x12\xee\x89q\x96\xb7\x84\xd9\xaf\x12\xb5\xd2\xf8\xd8BC\xe1^\x19\x89m\'\xd5\x98\xaa\x80\xfbK\xd0\x05\xf0\x7fn0\xde\xc0i\xaa\xe8K\xeag\xbb\xb2g\xc5\xaaB\x02Nv>=\xf2J\x17\x85\xa9,B\xdc?\x14xLjG\xcf\x8c%g\x9c|\xe9<\x06\xdad\xe4%\x1a-F\x7f\xd7f\x13\x1fsQ\x17\xe9\x1d\xf7C\xc8\xdf\xeb&%t\x95\x02\x84\xc49\x90\'|ir\xed\xc8A\xe0\xfe\xee\xb0L\x04\xe0\xd8aR\xe1\x8c\xe4\x03f\xcb\'\x05W\x8d\x0bS\x11\xa1o\xe9#_\xa1\xcdB\x93\xd01\xc2\x0fEX\xaaZn\xea84\x1aE\xf3\xc4S\xcb\xe9\xa8\x18\x96\x92\x8a%\xed\x96\x02A\x1e\xddu1\x7f\xc9\xdd]8\xa1*\x01\x88\x00e\x15\xd7J\xc9\xa2\xdeY3\xf6\x07\xde\xd5\xc1\x8a\xe0\n\x13\xdb\x06\xb6\xbb\xf6\x9a.\xd4\x00\xce6U\x81)\x01K\x08(Lx\xb0\xfb\xbc\rg\x0cQ\xa9,\xdf\xb4\xf6b\xf7P\xb2p\x05\xc9\xee\x05}9\x9ff\x0c\n\xaf&CnN\x0c\xea\xf5!\x86\xf1\x81\x92\xec\x8fr\xf1\xe9\xa18\x91\nk\xf1\xc5T\x96\x99\x9e\xb5\xd7\xc2\xc0%m\xc8)\xf5tjI\xb4\tE\xdf\x8f\x10\xe1\xee\x02\xd6\xb6\xc1B\x18z6\xc9\xb0\xbd\xb0\n}\xac5nS\x1c\xabb\xab5\xcd\x10\xb7\x96k\xc6\xca\xc1\x01\x86\x9dS\x0c\x9a\xc6\x03,A\x8fz\xc4I\xc8\x7fM\xb7\xa9^\xa0\x8c\x89v\x84\x0e\xfd\x9d\xa6\xa5\x80Vs/\xc0\xde\x7f=\xe0`n\xd1L\x9cj\xd9Qe\x87T\x7fOX\x18)a{j\xe0\xeaW\xbbt9W\x97\xfd\x04\xa8h\xb4\xd1D\x93\xa0r\xa5\xbe\xf9;x\xd19\x17Sf\xe6\xfe \xc2(6\xe3EZ\xe4E\xa7\xf9%j\xd6(\xf0S\xd5\x85(C\x16\xe7O$P\x922\xbc\xa6x*M\x81EZO|\x95\xfc8\x9c\xae\xb0\xd0E4\x84\xfd\xd8\xba\xa4\xcc\x83\xf6j\xeb\xe7[\x9f3;\x08ph\x15,r:s\x8e`\x86\xd3\x0b\xb2\xb3U\xa8\xc6B\xbe\x19\xacl\xd7\x8cP\xa8\xe6\xb5\xd3\x90\x11\xa1 &\xd1:$39\x84(\x08\xb9\xd0\xa9N\xff\x1b\xe3\x99t\xc2\xd1_\xf5\xd4\x18\x7f\x06?i\xb2\x90$.\x1ft\r\x0f\xf5\x92\xc3\x04\xb2O\xd8\t\rO\xef\x83;\xf7\xa0\x96!.\xac\x97\x93\x18\x80\xb2\xbdx\x15\xdc\xf0c\tP\x12\xc2H!F E\x8e\x89")

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

fake.sha1(raw_output=False)
# '83d3231852a1f0c7892568f1decd7568184282c4'

fake.null_boolean()
# None

fake.sha256(raw_output=False)
# '0dc612505cd8be08f1dd99259730d7a3ffc3f01d91d0e7802e4144e4f9bf578e'

fake.uuid4()
# '927d15b6-e922-12b2-3a29-314b633978f3'

fake.language_code()
# u'os'

fake.boolean(chance_of_getting_true=50)
# True

faker.providers.person

fake.last_name_male()
# u'Prachayaroch'

fake.name_female()
# u'Phenphitcha Bunlerngsri'

fake.prefix_male()
# u'COL'

fake.prefix()
# u'S M 1'

fake.name()
# u'Prima Wannapaitoonsri'

fake.suffix_female()
# u''

fake.name_male()
# u'Chaifah Prakalpawong'

fake.first_name()
# u'Sarunporn'

fake.suffix_male()
# u''

fake.suffix()
# u''

fake.first_name_male()
# u'Arisara'

fake.first_name_female()
# u'Todsawun'

fake.last_name_female()
# u'Pikatsingkorn'

fake.last_name()
# u'Prachayaroch'

fake.prefix_female()
# u'SUB LT'

faker.providers.phone_number

fake.phone_number()
# u'055-635-6400x95384'

fake.msisdn()
# '2826530890621'

faker.providers.profile

fake.simple_profile(sex=None)
# {   'address': u'2044 Prayoonhong Meadows\nSouth Arisara, RI 20299-1613',
#     'birthdate': datetime.date(1957, 5, 26),
#     'mail': u'ltodsapornpitakul@yahoo.com',
#     'name': u'Chanikan Prakalpawong',
#     'sex': 'M',
#     'username': u'chaisatitjaruwan'}

fake.profile(fields=None, sex=None)
# {   'address': u'PSC 2248, Box 0921\nAPO AA 85174-5594',
#     'birthdate': datetime.date(1930, 9, 7),
#     'blood_group': 'AB+',
#     'company': u'Krittayanukoon, Phusilarungrueng and Benchapatranon',
#     'current_location': (Decimal('-31.501074'), Decimal('33.832049')),
#     'job': 'Advertising copywriter',
#     'mail': u'ratchanonsiripaiboo@yahoo.com',
#     'name': u'CDR Sarunporn Lertsattayanusak',
#     'residence': u'46247 Norramon Trace Apt. 638\nPuntiraville, IL 94694',
#     'sex': 'F',
#     'ssn': u'300-83-3631',
#     'username': u'qbunlupong',
#     'website': [   u'http://sukhenai-posalee.org/',
#                    u'https://www.tungkasethakul-sujjaboriboon.info/',
#                    u'https://suraprachit-siripaiboo.com/',
#                    u'http://www.trikasemmart.biz/']}

faker.providers.python

fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
# set([u'http://pichpandecha.com/index.html', 6351077552.88, 6736, u'kulnunprayoonhong@norramon.com', u'http://www.pongpanitch.net/homepage.html', u'MBYbvMSoIPrEVQYwUIxn'])

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

fake.pystruct(count=10, *value_types)
# (   [   160850260.59098,
#         u'https://bunlerngsri.com/list/blog/explore/faq/',
#         -39031737624421.3,
#         Decimal('-9.17332200537E+14'),
#         7529,
#         -14425009492.0,
#         -68976359690366.0,
#         datetime.datetime(1976, 11, 21, 23, 23, 51),
#         Decimal('-11.11048827'),
#         datetime.datetime(2015, 11, 30, 21, 8, 26)],
#     {   u'dolorem': 6592,
#         u'explicabo': Decimal('-9523874951.51'),
#         u'molestiae': Decimal('-23638714967.7'),
#         u'necessitatibus': u'VmRBGZwwIhPZpItkvYZE',
#         u'qui': u'http://suraprachit.biz/main/tags/list/about.html',
#         u'quis': Decimal('-709.11511'),
#         u'quod': -44906294138435.0,
#         u'reprehenderit': u'ugtPZscWKqoNzoyHdvKl',
#         u'tempore': u'http://www.anekvorakul.com/main/register.jsp',
#         u'voluptatibus': u'XvPUzHpNrPrbQeEFpzPd'},
#     {   u'at': {   6: datetime.datetime(1984, 11, 7, 14, 54, 38),
#                    7: [   u'rKFTmeScMJYKsyhlUmlR',
#                           u'http://www.prayoonhong.org/about/',
#                           u'https://www.kitprapa.com/'],
#                    8: {   6: -34741828902.3909,
#                           7: u'https://choeychuen.com/main/list/main/category/',
#                           8: [-9655.8226910891, 5863]}},
#         u'aut': {   8: u'hoMLkNKjqYdVdATPUJFE',
#                     9: [68.60593, 3956, Decimal('-2.02736177316E+14')],
#                     10: {   8: u'DJrKvnAakgxsbtSQCRhV',
#                             9: u'http://www.choeychuen-pothanun.com/',
#                             10: [   4917,
#                                     u'https://thantananont-todsapornpitakul.biz/category/faq.asp']}},
#         u'eos': {   2: -70.51,
#                     3: [   u'tzMXoJlswbECzoChoPjV',
#                            u'http://kittakun-prakalpawong.com/',
#                            u'UZvwNIUhKLvPKEJtTkyO'],
#                     4: {   2: u'umRVcjblnFlMiWPpntHp',
#                            3: datetime.datetime(2003, 6, 25, 13, 41, 23),
#                            4: [u'MMnCzcyBKSUpolWpqBAi', 7.50549863066025]}},
#         u'illo': {   3: 2721,
#                      4: [   u'sfrdkilOFEvNcSGGDBPI',
#                             datetime.datetime(1970, 3, 5, 1, 18, 23),
#                             datetime.datetime(1979, 8, 26, 16, 10, 48)],
#                      5: {   3: datetime.datetime(2009, 7, 24, 9, 28, 48),
#                             4: -89847804672167.6,
#                             5: [u'https://sukhenai.org/search/', 4925]}},
#         u'impedit': {   1: u'sjWjTKHidjGYfapTeUUf',
#                         2: [   Decimal('-399682.489014'),
#                                u'QoShYKnddLcMhQnthoal',
#                                u'xbOTjHZJpalQBgfgRcVi'],
#                         3: {   1: Decimal('-401.530835079'),
#                                2: datetime.datetime(1981, 12, 10, 1, 13, 18),
#                                3: [   u'WGkgpWgOheALXgGjMSou',
#                                       u'http://kongsri.info/tag/search/homepage/']}},
#         u'odio': {   9: 5323,
#                      10: [   -5077.9287123419,
#                              u'KeXZxEsnzAfbwXKauQwT',
#                              datetime.datetime(1998, 4, 21, 15, 6, 58)],
#                      11: {   9: u'bLJIaaugQLUnuvnEbhXJ',
#                              10: u'cSvEetYYKBEiPfJrXzCZ',
#                              11: [   u'ZbFDSntsMBrqGqsmfMbP',
#                                      u'UcmvUPQrEFHFomSfbikZ']}},
#         u'possimus': {   7: u'vinyuvanichkulphenphitcha@gmail.com',
#                          8: [   u'tHcTjftlRIWlmkFdGtgx',
#                                 u'yWRCphBMiTGwzAaSfXch',
#                                 u'oSFKLEByYmcEwsTYMxnO'],
#                          9: {   7: 4953,
#                                 8: u'qvcQRHyIRWYldErqtmCS',
#                                 9: [-69.4, u'WDdLGIOHzWwLeNKxsMgo']}},
#         u'provident': {   0: u'parinhabpanom@wimolnot-anekvorakul.org',
#                           1: [   datetime.datetime(2007, 3, 11, 2, 38, 49),
#                                  Decimal('-627417.627642'),
#                                  datetime.datetime(1978, 12, 20, 10, 30, 50)],
#                           2: {   0: u'inEjpNfTBChXhrdNhHub',
#                                  1: 2263,
#                                  2: [   u'VqcbHpcmzYwBStZubkLa',
#                                         datetime.datetime(1985, 5, 12, 2, 32, 15)]}},
#         u'reprehenderit': {   5: 3164,
#                               6: [   u'PvuRSgXNbxfBxuGdRHYe',
#                                      u'http://www.chaihirankarn.com/',
#                                      u'QgIbxcLampxewNxFMmyz'],
#                               7: {   5: u'patcharaporntrikasemmart@sorattanachai.net',
#                                      6: Decimal('15342710.5629'),
#                                      7: [9258, Decimal('67869455128.0')]}},
#         u'voluptatibus': {   4: 3066,
#                              5: [   2634,
#                                     u'pannawich05@gmail.com',
#                                     Decimal('-7.0')],
#                              6: {   4: Decimal('860273365.116'),
#                                     5: u'ttitipatrayunyong@kitprapa.biz',
#                                     6: [8598, 388805704838.0]}}})

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

fake.pydecimal(left_digits=None, right_digits=None, positive=False)
# Decimal('6.31214265116E+13')

fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
# [   u'kamolchanok88@tungkasethakul.info',
#     u'tLkPRjxBdDRcrIdVQYbN',
#     Decimal('-7.39894799421E+13'),
#     u'rqJshOtKOVeoJrNqunqV',
#     u'https://www.trikasemmart-turongkinanon.com/',
#     u'OmBcBDvdGBWRfNeravLZ',
#     u'qEbdilLTSDMcFrCQbjkJ',
#     u'https://www.chaisatit-sujjaboriboon.com/index.html',
#     datetime.datetime(1986, 9, 8, 8, 19, 35),
#     Decimal('-555405346362'),
#     u'OXKndauUgZlxsjBfSIGm',
#     datetime.datetime(1985, 5, 29, 3, 58, 36),
#     datetime.datetime(2008, 12, 22, 5, 16, 41)]

fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
# (   u'BWPVWPxWzTASbJpiicJx',
#     u'https://www.pikatsingkorn.net/category/category/list/terms/',
#     7281.339,
#     u'https://www.tianvarich-choeychuen.com/post.php',
#     4744,
#     -4.71926077835,
#     u'clWXzGwChYUxANPQqqeE',
#     u'https://www.youprasert.com/tags/search/privacy.htm',
#     1969,
#     u'https://polpo.com/',
#     datetime.datetime(2009, 9, 1, 16, 59, 33),
#     u'http://chaihirankarn-norramon.com/login/')

fake.pybool()
# True

fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
# set([datetime.datetime(1999, 9, 7, 2, 9, 1), 3426, Decimal('42702517.454'), 5286, u'oVgFFeDrEufHrKfqoPVG', 9480, Decimal('-6757.57889'), Decimal('65.1511'), datetime.datetime(2001, 6, 5, 5, 34, 18), 518452.0, u'UHhTRvOmCJgKmmlsLeSh', 6044, 5439])

fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
# {   u'consequatur': u'CUcAhlIFvXTdvTsloClD',
#     u'delectus': -65051967947821.0,
#     u'eum': 3995,
#     u'itaque': u'LYHLuISCPPUXPOUKiUug',
#     u'molestias': u'cmethavorakul@gmail.com',
#     u'nisi': u'ocfIwzhqmcWzbNEJLvKw',
#     u'nulla': u'jitrin49@yahoo.com',
#     u'saepe': u'fUGHpkiwkCxhAWWPbBkB',
#     u'similique': datetime.datetime(2002, 11, 11, 17, 41, 59),
#     u'sint': 322702318225191.0,
#     u'voluptas': 7806}

fake.pyint()
# 1115

faker.providers.ssn

fake.ssn(taxpayer_identification_number_type="SSN")
# u'463-17-1762'

fake.ein()
# u'22-2982170'

fake.itin()
# u'976-88-2139'

faker.providers.user_agent

fake.mac_processor()
# u'PPC'

fake.firefox()
# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2012-03-12 10:28:29 Firefox/3.8'

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

fake.opera()
# u'Opera/9.69.(X11; Linux x86_64; brx-IN) Presto/2.9.183 Version/11.00'

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

fake.internet_explorer()
# u'Mozilla/5.0 (compatible; MSIE 5.0; Windows 98; Trident/4.0)'

fake.user_agent()
# u'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/5.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 i686) AppleWebKit/5340 (KHTML, like Gecko) Chrome/40.0.843.0 Safari/5340'

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

fake.safari()
# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_8 rv:2.0; ber-DZ) AppleWebKit/531.10.3 (KHTML, like Gecko) Version/5.0 Safari/531.10.3'