Language tw_GH

faker.providers.address

fake.address()
# '9350 Linda Fields\nEast Adrian, NM 71349'

fake.building_number()
# '940'

fake.city()
# 'Amoakofurt'

fake.city_prefix()
# 'North'

fake.city_suffix()
# 'fort'

fake.country()
# 'Syrian Arab Republic'

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

fake.military_apo()
# 'PSC 1432, Box 2029'

fake.military_dpo()
# 'Unit 0977 Box 8658'

fake.military_ship()
# 'USS'

fake.military_state()
# 'AE'

fake.postalcode()
# '80319'

fake.postalcode_in_state(state_abbr=None)
# '43751'

fake.postalcode_plus4()
# '90087-6921'

fake.postcode()
# '21736'

fake.postcode_in_state(state_abbr=None)
# '05378'

fake.secondary_address()
# 'Suite 662'

fake.state()
# 'Connecticut'

fake.state_abbr(include_territories=True)
# 'FL'

fake.street_address()
# '79044 Akumaa Flats'

fake.street_name()
# 'Akyerεko Gateway'

fake.street_suffix()
# 'Station'

fake.zipcode()
# '65322'

fake.zipcode_in_state(state_abbr=None)
# '88950'

fake.zipcode_plus4()
# '66045-6126'

faker.providers.automotive

fake.license_plate()
# '7H VH259'

faker.providers.bank

fake.bank_country()
# 'GB'

fake.bban()
# 'UDUL4635494252833'

fake.iban()
# 'GB28SHNN5736634162797'

faker.providers.barcode

fake.ean(length=13)
# '5815724239408'

fake.ean13()
# '9602703312025'

fake.ean8()
# '06406363'

faker.providers.color

fake.color_name()
# 'MediumSlateBlue'

fake.hex_color()
# '#ff3ba8'

fake.rgb_color()
# '228,149,126'

fake.rgb_css_color()
# 'rgb(10,216,207)'

fake.safe_color_name()
# 'maroon'

fake.safe_hex_color()
# '#dd0000'

faker.providers.company

fake.bs()
# 'synergize world-class e-markets'

fake.catch_phrase()
# 'Managed reciprocal product'

fake.company()
# 'Adusei Inc'

fake.company_suffix()
# 'Inc'

faker.providers.credit_card

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

fake.credit_card_full(card_type=None)
# 'Maestro\nWendy Kwarteng\n567292959325 06/28\nCVV: 730\n'

fake.credit_card_number(card_type=None)
# '3522955730554795'

fake.credit_card_provider(card_type=None)
# 'Maestro'

fake.credit_card_security_code(card_type=None)
# '637'

faker.providers.currency

fake.cryptocurrency()
# ('XRP', 'Ripple')

fake.cryptocurrency_code()
# 'STC'

fake.cryptocurrency_name()
# 'Bitcoin Cash'

fake.currency()
# ('SLL', 'Sierra Leonean leone')

fake.currency_code()
# 'MOP'

fake.currency_name()
# 'Jordanian dinar'

faker.providers.date_time

fake.am_pm()
# 'AM'

fake.century()
# 'XVIII'

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

fake.date_between(start_date="-30y", end_date="today")
# datetime.date(1991, 9, 4)

fake.date_between_dates(date_start=None, date_end=None)
# datetime.date(2019, 11, 4)

fake.date_object(end_datetime=None)
# datetime.date(2015, 12, 21)

fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
# datetime.date(1948, 5, 31)

fake.date_this_century(before_today=True, after_today=False)
# datetime.date(2009, 4, 24)

fake.date_this_decade(before_today=True, after_today=False)
# datetime.date(2011, 3, 18)

fake.date_this_month(before_today=True, after_today=False)
# datetime.date(2019, 11, 2)

fake.date_this_year(before_today=True, after_today=False)
# datetime.date(2019, 4, 3)

fake.date_time(tzinfo=None, end_datetime=None)
# datetime.datetime(2001, 4, 24, 9, 40, 58)

fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
# datetime.datetime(331, 7, 17, 23, 19, 43)

fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
# datetime.datetime(2016, 2, 6, 22, 2, 17)

fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
# datetime.datetime(2019, 11, 4, 4, 46, 21)

fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2009, 1, 23, 12, 50, 31)

fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2014, 8, 23, 4, 42, 43)

fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2019, 11, 2, 4, 32, 1)

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

fake.day_of_month()
# '13'

fake.day_of_week()
# 'Friday'

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

fake.future_datetime(end_date="+30d", tzinfo=None)
# datetime.datetime(2019, 11, 30, 5, 57, 31)

fake.iso8601(tzinfo=None, end_datetime=None)
# '1995-03-22T13:43:22'

fake.month()
# '01'

fake.month_name()
# 'January'

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

fake.past_datetime(start_date="-30d", tzinfo=None)
# datetime.datetime(2019, 11, 2, 9, 1, 59)

fake.time(pattern="%H:%M:%S", end_datetime=None)
# '14:37:55'

fake.time_delta(end_datetime=None)
# datetime.timedelta(0)

fake.time_object(end_datetime=None)
# datetime.time(0, 26, 39)

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

fake.timezone()
# 'America/Argentina/Jujuy'

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

fake.year()
# '2014'

faker.providers.file

fake.file_extension(category=None)
# 'mp3'

fake.file_name(category=None, extension=None)
# 'neque.avi'

fake.file_path(depth=1, category=None, extension=None)
# '/quam/harum.txt'

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

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

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

faker.providers.geo

fake.coordinate(center=None, radius=0.001)
# Decimal('-153.451028')

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

fake.latlng()
# (Decimal('-89.663360'), Decimal('32.656680'))

fake.local_latlng(country_code="US", coords_only=False)
# ('36.20829', '-115.98391', 'Pahrump', 'US', 'America/Los_Angeles')

fake.location_on_land(coords_only=False)
# ('24.41288', '76.56719', 'Aklera', 'IN', 'Asia/Kolkata')

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

faker.providers.internet

fake.ascii_company_email(*args, **kwargs)
# 'kboakye@akowua-ansa.org'

fake.ascii_email(*args, **kwargs)
# 'ydwamena@ampofo.biz'

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

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

fake.company_email(*args, **kwargs)
# 'ernestina21@awuah.biz'

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

fake.domain_word(*args, **kwargs)
# 'bonsu-akoto'

fake.email(*args, **kwargs)
# 'joojoata@amoasi.com'

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

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

fake.hostname(*args, **kwargs)
# 'lt-22.ankra.biz'

fake.image_url(width=None, height=None)
# 'https://placeimg.com/520/385/any'

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

fake.ipv4_network_class()
# 'c'

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

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

fake.ipv6(network=False)
# '193a:5d41:e254:f36b:eb0b:c60c:117c:793b'

fake.mac_address()
# 'a7:f8:c9:be:61:89'

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

fake.slug(*args, **kwargs)
# 'ad-nesciunt'

fake.tld()
# 'com'

fake.uri()
# 'https://koomson.org/blog/list/category/about/'

fake.uri_extension()
# '.html'

fake.uri_page()
# 'main'

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

fake.url(schemes=None)
# 'http://www.fofie.org/'

fake.user_name(*args, **kwargs)
# 'debra96'

faker.providers.isbn

fake.isbn10(separator="-")
# '0-427-77157-9'

fake.isbn13(separator="-")
# '978-0-450-87104-7'

faker.providers.job

fake.job()
# 'Warehouse manager'

faker.providers.lorem

fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
# ('Asperiores aperiam amet molestiae repellendus sunt placeat. Ratione quo '
#  'maiores. Asperiores nam iste harum.')

fake.paragraphs(nb=3, ext_word_list=None)
# [   'Ad recusandae expedita. Unde atque accusamus tempora. Commodi nisi ullam '
#     'dicta.',
#     'Dolor voluptas ea sunt id. Minima nostrum quibusdam maiores officia eos '
#     'iste ea. Reprehenderit mollitia libero aspernatur.',
#     'Distinctio quis quis temporibus hic aliquid cumque. Corrupti tempora '
#     'minus veniam. Quas doloremque tempora quas magni dolor nemo.']

fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
# 'Quae distinctio ut vel consequatur cupiditate dolor.'

fake.sentences(nb=3, ext_word_list=None)
# [   'Qui delectus iure corrupti autem.',
#     'Perspiciatis optio iure voluptatibus iusto corrupti molestias.',
#     'Excepturi illo neque ea.']

fake.text(max_nb_chars=200, ext_word_list=None)
# ('Facere explicabo enim ipsa recusandae et incidunt. Quasi iste amet sunt '
#  'magnam inventore distinctio aut. Fugiat laborum odio numquam itaque odio. '
#  'Aut veniam veritatis beatae.')

fake.texts(nb_texts=3, max_nb_chars=200, ext_word_list=None)
# [   'In illo iure error. Fugit nihil saepe sequi modi repellendus rem. Facilis '
#     'ut minus cupiditate modi aperiam inventore.',
#     'Fuga optio expedita reiciendis. Officiis dolore ipsum tempore eius. Fuga '
#     'laboriosam quam sit velit optio optio.',
#     'Nobis tempora voluptate deserunt commodi quaerat veritatis. Numquam '
#     'recusandae illo exercitationem eligendi. At nihil beatae numquam fugiat.']

fake.word(ext_word_list=None)
# 'tempora'

fake.words(nb=3, ext_word_list=None, unique=False)
# ['dicta', 'repudiandae', 'voluptates']

faker.providers.misc

fake.binary(length=1048576)
# (b"=\x9b\xf2S\n\x92\x96\x12\xf6\x1a\xc14\xba\xda'\xc7\x1a8\x1b\x8bS\x9f;1"
#  b'&\x01C\x02\xb0\xbf\x13<\xaa\xe7\x80`4\xef\x92\xdb\xb8\x17\xf1Z\x91UT\xa1'
#  b'\x98\xe1\x00\xc8\xdf\xe6\xabv\x0c\xad\xd2p\xef]\xdbZ\xcb\xafyQQ\xd6\x9bM'
#  b'r\xa1\x15\xebO3\x94\xd2qN\x17\xd0\xc0ht\x92\x02\xc6f\xa4\x87#"\x9c\x00\xaaq='
#  b'(\xcb\x8dR\x19\xe9\xe1{\xc6\xe8\xf8\xca\xe2W)\xa0:F\xce{\xb0\xe36"'
#  b'\xd0l\xda\x05\xf7\x02bG\x92\xaa7p\xea\x03IZA-\x1f\xfd\xfe\xc10\n\xae\xa9\t6'
#  b'1F=\x15\x86\xe4\x14\x84a\x1b\xc5\xe2\xc7x\xfb\x8a\x1eZ\xd6\xc5'
#  b"\x16\x12\x98\xe1y\xdd\xd2\x18\x1f^S\xf2\xd0Z\xcb\xc2!\xddk'\xc5\r\xe6H"
#  b'>\xf71\xa0\xda\xc1\xba\xd8\x1ds\x97\x9fv\x9c\rVsP{T{\xf7A\x7f'
#  b'\x8a\xe5\xb0\xc8\xac\xb0\xf0(\x84\x82\x16\x15!\x84\x95uP\xab.\xdaf2\xc2l'
#  b'\xfc\xde\xf0\xad\xc7\xdb\x8bfM[;\xc6\xe6\xa0M\xce\xa5\xfc7\xc2\xfe\t\xd8\xc9'
#  b'azY\xd5\xfa\xda\xf4\x8e\xf5\xb4\xa2\xd5H&!1X%a\r}+SJ\xf8\xa2\xbd\x04'
#  b'F\xf0\xde\xef\xff\xe9\xaa%\xaa\x19}:\x9e\x10G\xeb\x9e\xdf\xd3\xf9'
#  b'\x8c\xbd\xa9\xea\xe0\x04\x8f\x9a+\xaa+\xfbdM\xd6\xfd\xd4\xd0^\xc3'
#  b'\x80\xfb\x91\xa3\x8at\xc6\xe6\x9e+\x94\x07\xa5\x08".\x16\x90\xa6\xc2'
#  b'\x95\x8e\x89q\x02\xf1\x85\xe2\xacY\xf7\xbc\xdb\x1b\xe0\t\x08B\x9f\r'
#  b'T\xdb\x02x#;\xbbL7\r\xf4\x1e\xe7\x92\x93(\xc3v*\xaa\x8f\xc0\xce\x06'
#  b'\\\xaf\xf3\x8b\xc3\x8bB\x1b*\x84\x1eF\x15^/o\x04\xb0\x81b3\x02\xbd\x99'
#  b'\x11R\x9dA}\x0c\x7f\x03/\x1e\xbeA\x15\x15\xde\xbfl\xf9\x1c\xa4\xa1\x99\xb3O'
#  b'\xd7\xaeIl\x19\xe4]\x14\x92\xfb53s\x15\x1a\xc2f\x88\x7f\xa4\xc4\xc2\xdd\xe5'
#  b'\xaeO\x86\x8bW\xc3/\xb7\x9a+\x10\xf8\x12\xa2\x83S=\xc6U\x15\xde^\x82\xd1'
#  b'\x8fz\x8a\xc5,\xc0\xf7\\\x8e\xa1\xb8|r\t?\x03\xbdvl~\xa4Kqj\xd6h\x1a\x97'
#  b'\xacA\xed\xae;\xb1\xd1\x0b\x1a\xc1\xab\x18@\xa5\x06p\xc2\x03`\x7f'
#  b'\xda\x15\xac\x0c"\x85\xf7\tmL\xd1wjM\xc9N\xc1\xc4\xc6\x14F\x93\xb98'
#  b'i\x90\xd5x\xcf\xddp\x8e*=G\x05\x0b\xe8\xf0k3 zkh\xfa\xa4\xc8\xfb\xf0\xe6\xfb'
#  b"\x05ve'\xf1m\t\x96D\x8e\xf4\xc1\xe1\x80\x90\x83[0\x0e.@\x99iL"
#  b'\x03\x8d\xae\xe5h\xcc\xd2\xf6\xfdr\xb5\xfc*\x97&\x00\x9b\x1f9\xe7'
#  b'\xea&\xa4\x07\x00\x1e\xdf\x98\x08\x16\x90}COu\x1c\xe4)xv\xc4\xfd\xc1\xb4'
#  b'\x86\xe2|W\xc1\xf4S\xf8\x9c\x9b\x13\xd7Z\xceR\xdb\xe2\xaf$W\x1cq\xf9\xa1'
#  b'\xf1J\xbf\x11V\r\xde\xa7u\xe8.k\x80kE\xf5\x1a>\xcbY\xf3\xba7\x80AT}H'
#  b'M\x8e<\xce\x913\x16R\x02l_8\x08\xf3\xfd\x8e\xb8\xbc\xd4\xc13\xb4\xc3\xcc'
#  b'\xf2_,\xc6\xc10O\xab{g\xbfw\x02v\x97\xc1\xdd\\\xf6\xcd\xb3\xf9zg'
#  b'\xcbN\xd5\x04\x8f\x03u\xf8)\xd0\x16\xcbLP\xa2uY\xc8\xc4\xb9\xc7\xd0\xf5g'
#  b'D\x9f\xc5\xf7Q1\xe0YS\xc4pZH7\x0e\x9a\xce\x1f[\x11\xf9\xcd\x86U'
#  b'\x84\xe4\xaf\xef?\x1c\xaf\xdc\x0e\xa7R\xb9\xccAej\x1e\x9c\x1a\xb5|\x8aH\xc5'
#  b'\x92\xb6mT\xc1\xe0\xa5\x9f\xccbo\xe9\xdd?st\x12\xad5^\xac"4\t\xfc\x96\xccd'
#  b'+\xe8\r\x00\xc7\x8eU0\xd4s\x8c\xc2\xdco\xbd\xeb#\xa5\x1d=\xd0\x1f\xd1\x0e'
#  b'F\x92\xfay\xf6\x1c\x92d\xf7\x9b\x15\x7f\xc2\x80\xe0y\x8d\xe2\xb5\xf2'
#  b'=\xa1\t\x02\x10\x9ez\xee\x89\xef\xd6\x94\xa2\xba\x1a\xdd\xd3\xad\x03\x9c'
#  b'^Cj\xac\xa2\x01\xcdU\xe5O\x0c\x13\n\xd97-\xb3\xbe\x8c\xde\x0e\x03n\xa1'
#  b'S\x8c@\x0c\xec\xa4.\xfeN\xbe\x8c\x8a\x19\xed\xd9\xd4\n\xe1u\xd3\x80\xf7}\xff'
#  b'J\x1e\x88\x17\x0f\xf2\x0e6\xf9\xb9E\xcb\xfc\xbc\xfa\x92U\x9d\x9d[F%fw'
#  b'\x8d\xbb#\xca\xb7[\x03\x87\xa8"rmH\xb32&9\'\xa5\x1b3N\xda\xf2')

fake.boolean(chance_of_getting_true=50)
# False

fake.md5(raw_output=False)
# '6e612b16997b3c778a2d2a004a8998a3'

fake.null_boolean()
# None

fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
# '6K65VyCk^J'

fake.sha1(raw_output=False)
# '22f5ac71eaa940206543a9c211a31b33662ef0d7'

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

fake.uuid4(cast_to=<class 'str'>)
# '572707b7-6ff6-4f85-9615-1186eb1e16c3'

faker.providers.person

fake.first_name()
# 'Kwesi'

fake.first_name_female()
# 'Shirley'

fake.first_name_male()
# 'Christian'

fake.last_name()
# 'Asiedu'

fake.last_name_female()
# 'Gyasi'

fake.last_name_male()
# 'Bona'

fake.name()
# 'Tina Agyapong'

fake.name_female()
# 'Gifty Nkansa'

fake.name_male()
# 'Peter Ata'

fake.prefix()
# 'Miss'

fake.prefix_female()
# 'Sista'

fake.prefix_male()
# 'Mr.'

fake.suffix()
# ''

fake.suffix_female()
# ''

fake.suffix_male()
# ''

faker.providers.phone_number

fake.msisdn()
# '8232483411205'

fake.phone_number()
# '+233554946998'

faker.providers.profile

fake.profile(fields=None, sex=None)
# {   'address': '9904 Ntim Forks\nDorachester, FL 33591',
#     'birthdate': datetime.date(1908, 4, 13),
#     'blood_group': 'O+',
#     'company': 'Nkansa, Omani and Akyaa',
#     'current_location': (Decimal('42.8434765'), Decimal('-158.195369')),
#     'job': 'Media planner',
#     'mail': 'daniel72@yahoo.com',
#     'name': 'Eunice Adoma',
#     'residence': '370 Boakye Terrace\nFofiestad, ME 32993',
#     'sex': 'M',
#     'ssn': '330-62-8527',
#     'username': 'ruthkoomson',
#     'website': ['https://www.mensa.info/']}

fake.simple_profile(sex=None)
# {   'address': '4485 Agyapong Garden\nSimonmouth, AR 49848',
#     'birthdate': datetime.date(1982, 1, 6),
#     'mail': 'qafirifa@yahoo.com',
#     'name': 'Sista Constance Ntim',
#     'sex': 'F',
#     'username': 'ztiwaa'}

faker.providers.python

fake.pybool()
# True

fake.pydecimal(left_digits=None, right_digits=None, positive=False, min_value=None, max_value=None)
# Decimal('7415917.5338')

fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
# {   'dolore': -152077.9,
#     'eius': 'nzvQSqmMhAsbCqtwOziF',
#     'ipsa': 'qAccnMYMIaMpnlBQxuJx',
#     'libero': Decimal('669299.468658098'),
#     'maxime': 'joyceadutwumwaa@yahoo.com',
#     'nihil': Decimal('709046601.3'),
#     'porro': 'jCnkvCMvHiDIoKCyDkAn',
#     'possimus': 'WscSQfLxnoGWKsQdXjTG',
#     'similique': Decimal('-811224.0'),
#     'tempore': 'http://www.akomaa.info/',
#     'voluptatem': Decimal('5061501553564.0')}

fake.pyfloat(left_digits=None, right_digits=None, positive=False, min_value=None, max_value=None)
# 127130225703820.0

fake.pyint(min_value=0, max_value=9999, step=1)
# 6299

fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
# {Decimal('388253.7318819'), 'prempehkwaku@yahoo.com', 'SXlnIkrKzYNfIQCeCGRZ', datetime.datetime(1979, 12, 21, 10, 35, 10), 'IZxGNoyffZloFmWsNtox', 'qjvVvSAapQaGFmjSofoW'}

fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
# [   'https://boakye-foriwaa.com/about.asp',
#     datetime.datetime(2016, 12, 23, 4, 15, 21),
#     12.45323820242,
#     'FQTNxWWPYWIAYexniETR',
#     'euBOcUCOfrGOocvmFiUA',
#     'PKhEOXqnVlHbrhGByDKf',
#     'fJzswaVDEJQqYMxnUjqo',
#     -8828126757.8,
#     'bjVGfEdISJyIjdHwAkbh']

fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
# {'http://www.baa.com/list/index.htm', 5508, 'EtKWIaaEFUTadowyZoJd', 'ICLtIUJCQsDWugfZxQgO', 'CnCzQiZeSYRojDhTeIeR', 'naomiboatemaa@yahoo.com', -3176431.805, -8335151.0, datetime.datetime(1983, 7, 3, 21, 39, 31), 'https://www.asantewaa-ansomah.com/posts/about/', 'pRoGfgMzJNTWVjRnSTVy', 'zdlbWTypLZMkcmCmGqSi'}

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

fake.pystruct(count=10, *value_types)
# (   [   Decimal('-6421476535.30258'),
#         'SlxuMGSZfIUBRegClBTo',
#         'yboadi@hotmail.com',
#         'JRsSYnBBVyLprncEFvFX',
#         'mfZEzvdkUCSNeSEhHWKv',
#         9891121120402.0,
#         'https://www.daako.com/category/posts/register.php',
#         'xantwi@hotmail.com',
#         'xitnoKDtKQRBpiNxVURy',
#         Decimal('-235982.92')],
#     {   'aspernatur': 'mSEjZBUTpNVrKUmaUSFz',
#         'cumque': Decimal('5774990275.7'),
#         'ea': 'jakyeamfuo@ampoma-okyere.com',
#         'id': 'rLsAaHtAIkvpzPZFWLiz',
#         'impedit': 'peoxDEpunYtghqGknrcd',
#         'iste': datetime.datetime(1971, 12, 2, 10, 4, 12),
#         'laudantium': datetime.datetime(2008, 2, 14, 21, 44, 30),
#         'occaecati': 'jessica00@oti.com',
#         'quae': 7464,
#         'quam': 'TBdVkFSQkZPSGhNHVUqI'},
#     {   'ab': {   5: 3195,
#                   6: [   -682454276168.7,
#                          Decimal('-76885295.895751'),
#                          'boahenakos@otuo.com'],
#                   7: {   5: datetime.datetime(1982, 6, 17, 13, 41, 16),
#                          6: 'VaPiYLhiTDgbndSQCaqT',
#                          7: [   datetime.datetime(2011, 7, 20, 23, 25, 8),
#                                 'UgDSAvUipwXGZmGXHzLB']}},
#         'autem': {   8: 'seVxdnXXRIOJqtTODSkY',
#                      9: ['rtvoPRLukvVdMMlcBgCz', 6064, -139679.5655071],
#                      10: {   8: 'lvTvUJFeAgUitOFMjjll',
#                              9: Decimal('2417.0'),
#                              10: [   datetime.datetime(2002, 6, 20, 3, 29, 14),
#                                      'hGWxUvcnmDMUOGbkZuLi']}},
#         'dignissimos': {   2: 'yngYwClNAcclWifTabbe',
#                            3: [   'https://asiedu.org/',
#                                   'oRDvdFqPMBlhlwtVzRxD',
#                                   'LFfKQkGyaRJdmyTjtZmA'],
#                            4: {   2: datetime.datetime(1981, 1, 17, 11, 6, 41),
#                                   3: datetime.datetime(1977, 10, 27, 11, 2, 47),
#                                   4: [7805, 'victoriayaamoa@hotmail.com']}},
#         'eius': {   7: 5231702.928334,
#                     8: [8350.12, 'EAOkpWriPmmJKKToEMdq', Decimal('814.5608')],
#                     9: {   7: 'zNYtisIeuFcuLuyCEZLs',
#                            8: -716222.6918319,
#                            9: [   Decimal('-260441.8002'),
#                                   'http://anokye-akoto.net/about/']}},
#         'illo': {   9: -9000956996664.0,
#                     10: [   -840412.0,
#                             1746,
#                             datetime.datetime(1983, 12, 28, 13, 47, 59)],
#                     11: {   9: 'https://www.kusi.com/privacy/',
#                             10: datetime.datetime(2002, 3, 22, 4, 36, 50),
#                             11: [   'duahdorothy@koomson-kwaakye.com',
#                                     Decimal('-7034507473746.91')]}},
#         'placeat': {   3: 8332,
#                        4: [   'xtsfetxgsKWYZmPJBpEx',
#                               'cMrKVAWCJFXJkWpdyRJk',
#                               6064],
#                        5: {   3: 'jeJvCVTqFeviixviLoDk',
#                               4: 'mixsRcOnUAagFVvjPOxm',
#                               5: [   'https://osei-gyamfi.com/main.htm',
#                                      'hGMaIKUbUAbtTVzWLKMq']}},
#         'quis': {   4: datetime.datetime(1980, 3, 23, 5, 5, 18),
#                     5: ['eMtOBqqaLGwOmCsHgvGY', 'EeffPxBWYHlPQtMAtNWr', 7438],
#                     6: {   4: 406546647134.48,
#                            5: 4627,
#                            6: [   Decimal('-84.495948966518'),
#                                   -40311570961781.0]}},
#         'recusandae': {   6: 8763,
#                           7: [   'OTuLPsYBmFDKejkBZDrs',
#                                  Decimal('3.193497935'),
#                                  Decimal('-198598867984.9')],
#                           8: {   6: 'http://www.asieduwaa.com/index/',
#                                  7: 'NliEnPjyEwIPKMCeDyvI',
#                                  8: [   'HqeBFPNgzDAlvPyIwKka',
#                                         'http://adomah.info/tag/search/home/']}},
#         'repellat': {   1: 'http://www.tawia.com/homepage.php',
#                         2: [195, 89, -672.401449783979],
#                         3: {   1: 'LEiMzzpxHfWSkkvQmCjf',
#                                2: 'http://www.tawia.org/categories/list/list/home.htm',
#                                3: [   'https://www.antwi-danso.biz/explore/list/homepage/',
#                                       'euKeOFoRpGTptILosOeA']}},
#         'reprehenderit': {   0: 'mowusu@mensah-akyeamfuo.com',
#                              1: [   65288679435185.0,
#                                     'BZBFnZDQnmGDWpMeZmSZ',
#                                     4570],
#                              2: {   0: -75449.1087030301,
#                                     1: 'wZEOLwtbtGuxQjpPRAtK',
#                                     2: [809429693430.1, 4444]}}})

fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
# (   datetime.datetime(1998, 11, 5, 6, 17, 2),
#     8292,
#     'xbwyfxaVCnABhlorkHNc',
#     'IDdaJdZCSzYPQbIjlthh',
#     'jzArtfuykZyvHzuhYrdG',
#     2041,
#     1019)

faker.providers.ssn

fake.ein()
# '32-1008705'

fake.invalid_ssn()
# '762-21-0000'

fake.itin()
# '952-94-1056'

fake.ssn(taxpayer_identification_number_type="SSN")
# '510-45-0123'

faker.providers.user_agent

fake.android_platform_token()
# 'Android 4.1.2'

fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
# ('Mozilla/5.0 (Linux; Android 4.2.1) AppleWebKit/536.1 (KHTML, like Gecko) '
#  'Chrome/42.0.836.0 Safari/536.1')

fake.firefox()
# ('Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2019-10-01 09:46:39 '
#  'Firefox/3.8')

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

fake.ios_platform_token()
# 'iPhone; CPU iPhone OS 10_3_4 like Mac OS X'

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

fake.linux_processor()
# 'i686'

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

fake.mac_processor()
# 'Intel'

fake.opera()
# 'Opera/9.96.(Windows NT 4.0; gu-IN) Presto/2.9.165 Version/11.00'

fake.safari()
# ('Mozilla/5.0 (iPod; U; CPU iPhone OS 4_1 like Mac OS X; th-TH) '
#  'AppleWebKit/532.32.4 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 '
#  'Safari/6532.32.4')

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

fake.windows_platform_token()
# 'Windows NT 5.2'