
Language tw_GH
===============

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

::

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

	fake.building_number()
	# u'70023'

	fake.street_address()
	# u'9944 Rebecca Common Apt. 338'

	fake.postalcode_plus4()
	# u'36581-0736'

	fake.city_prefix()
	# u'North'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'Wiafefort'

	fake.zipcode_plus4()
	# u'82019-3470'

	fake.state_abbr()
	# u'WA'

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

	fake.street_suffix()
	# u'Ways'

	fake.city_suffix()
	# u'furt'

	fake.military_dpo()
	# u'Unit 0856 Box 3120'

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

	fake.country()
	# u'Wallis and Futuna'

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

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

	fake.postalcode()
	# u'39888'

	fake.address()
	# u'USCGC Takyi\nFPO AA 24745-4555'

	fake.state()
	# u'Arkansas'

	fake.military_state()
	# u'AP'

	fake.street_name()
	# u'Serwaa Mount'

	fake.zipcode()
	# u'82378'

	fake.postcode()
	# u'90042'

	fake.military_apo()
	# u'PSC 1308, Box 9068'

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

::

	fake.license_plate()
	# u'UXU 122'

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

::

	fake.bban()
	# 'TBJA4174522566042'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB35DGLE6177312028752'

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

::

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

	fake.ean13()
	# u'9257242472138'

	fake.ean8()
	# u'45177514'

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

::

	fake.rgb_css_color()
	# u'rgb(198,121,40)'

	fake.color_name()
	# u'MintCream'

	fake.rgb_color()
	# u'137,47,214'

	fake.safe_hex_color()
	# u'#994400'

	fake.safe_color_name()
	# u'black'

	fake.hex_color()
	# u'#724738'

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

::

	fake.company()
	# u'Badu, Adusei and Tiwaa'

	fake.company_suffix()
	# u'Ltd'

	fake.catch_phrase()
	# u'Networked cohesive portal'

	fake.bs()
	# u'grow value-added niches'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Discover\nAndrew Yeboa\n6011888613330911 07/28\nCVC: 351\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'EOS'

	fake.currency_code()
	# 'AZN'

	fake.currency_name()
	# 'Gibraltar pound'

	fake.cryptocurrency_name()
	# 'Bitcoin'

	fake.cryptocurrency()
	# ('LTC', 'Litecoin')

	fake.currency()
	# ('UGX', 'Ugandan shilling')

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

::

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

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

	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(2008, 8, 12, 8, 48, 49)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2014, 7, 29)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 15, 23, 59, 30)

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

	fake.day_of_week()
	# 'Thursday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 11, 15, 11, 4, 47)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2006, 4, 28, 15, 53)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2016-01-18'

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1988, 7, 6)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1997-05-09T18:16:24'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2010, 1, 7)

	fake.month()
	# '11'

	fake.year()
	# '1980'

	fake.day_of_month()
	# '19'

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

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

	fake.century()
	# u'XXI'

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

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

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 10, 9, 42, 25)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1990, 2, 19, 23, 20, 35)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '02:25:46'

	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, 8, 3, 2, 32)

	fake.month_name()
	# 'August'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(940, 9, 15, 21, 7, 3)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(9076, 82616)

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

::

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

	fake.mime_type(category=None)
	# u'message/http'

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

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

	fake.file_name(category=None, extension=None)
	# u'explicabo.mp4'

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

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

::

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

	fake.image_url(width=None, height=None)
	# u'https://www.lorempixel.com/445/223'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'ireneboakye@adu.com'

	fake.url(schemes=None)
	# u'https://www.otiwa.info/'

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

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

	fake.uri_extension()
	# u'.jsp'

	fake.uri_page()
	# u'register'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'mary28@akoto.net'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'janice61@amoa-afrakomaa.com'

	fake.domain_name(*args, **kwargs)
	# u'agyei-yeboa.info'

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

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

	fake.slug(*args, **kwargs)
	# u'voluptate-sed'

	fake.uri_path(deep=None)
	# u'main/wp-content'

	fake.company_email(*args, **kwargs)
	# u'annette70@danso.info'

	fake.uri()
	# u'http://www.afoakwa-antwi.com/home.html'

	fake.ipv6(network=False)
	# '5ea:fc8e:515b:aba9:a816:c234:9719:d9a6'

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

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

	fake.mac_address()
	# u'57:93:52:5a:88:c8'

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

::

	fake.isbn10(separator="-")
	# u'0-354-54484-5'

	fake.isbn13(separator="-")
	# u'978-1-83957-757-4'

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

::

	fake.job()
	# 'Horticultural therapist'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Ipsa excepturi mollitia. Architecto accusantium voluptatum placeat occaecati. Ipsum tempore aspernatur adipisci officiis eos.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Atque reprehenderit voluptas. Nisi soluta repellat illum eveniet tenetur dignissimos quisquam. Ratione voluptate saepe consequatur vitae nisi nam.',
	#     u'In recusandae quos in dolores quaerat quidem. Corrupti perferendis porro vel.',
	#     u'Illum cupiditate in ipsa hic. Rerum corporis reprehenderit ex officia ullam dolor. Necessitatibus vitae eligendi sunt asperiores blanditiis nam possimus.']

	fake.words(nb=3, ext_word_list=None)
	# [u'dolore', u'minima', u'itaque']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Inventore error facilis modi necessitatibus possimus.',
	#     u'Ullam vitae dicta totam dolor ab.',
	#     u'Unde assumenda sunt nesciunt quae incidunt ab.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Rerum non architecto facilis similique voluptatum laborum. Nihil aut tempore nihil.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Porro pariatur dicta dolorum.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'@%&QhtBd91'

	fake.locale()
	# u'pt_BR'

	fake.binary(length=1048576)
	# bytearray(b'3b\x97\xc4\xf9\xa9\xfc\x80V\xba\x11\x8b\xc5\xb5\xf8\x92\xd0\x05\x15,\x9aV\xd4,\xd4\xef\xe7h\x81\xce\x9d\xc5}\x03e\xc5L\x01a\xae\x01J\x91MSrS\xed\xd1\x01\x0b\xf8nT\xc7i\x89\xbd\xb7\xeb\xb3a\xc2\xa0+B-\x00\xf5\xfba\x88b\x81\x08\xde\x01\xff=O.\xa1\x87\xd6\xbd\x86\x86\xe3\x99\x0e\x98\xf6N!>o\xc57\x9b\r\xab_i\xe3OO)\xcal!.\x16\xb9\x04\x11\x83\xc4\xe1\x9cM%\xb9JrLdX\x86R\x15\x0bD\x15\x08\xec\xcdsD\x7f\xcc\x0b\x18@\x83\xf4\xd8\'\x91\x90J\x1a!\x90g\xc4\xd6L\xf0\xec\xd2\xf4W,\x00\x05\xcf\xa26\x1c\xb8/E\x01Z\xf4\x18T]\xff\xe2\t\xee3\x0c\xb8\xff\xa2 \xcc\x88G\x910\xdfc"\x8f(\xb5\xd7\x93\xf0\xca\x85\xf5\x0f\xbe~\xb6\x17\xd6\xcd\x02\xefK\x16W?&e\x19* {\xbc\x9e\xe6\xea\xfe\xff\xfc|\x85\xe8\x8c9\x8d\x98\x86\x1dD\xfb5\r\xff\x0c\xd25#J\xff\x02\x1c\xfe\xf6B}\xe9\x1e\xdbf\x7fgy\xc1\xd7\x8d-ZW\xb78\xf3}\xe0#vz\xc3k`Spjyj\x12\xa3\x8aS\xdc\xdb\xae*3\xf4:\x86\xa0\x1b0\x8e\xe3\x16\x81\xc5\x15\xc4f0\x0c\xefYk\x87\x88\x1e\x9b\xef[f\\\x8fS\xa8\x91\x01&\xbf\xcer8b\xa7\t\xa0rXg\xf1\xb1\xee\xb9\x07\xc8{o\x9f\x06\xfc\xb1\xc2\x8e\xae\xc5IL\x93\x9c\xd2\xad\x90\xbd\x18\x0b\x0f\xb4u\xe3\x9a^\xc6\x99\xf4C3"\x87\xc3\xfbQ\x11%j\xc5\xd3\xdfNw\xd6,\xc4\x02\x92Z\xc3\xf4\x05\xa2@\xe8\x85\xa5\x83\xeb\xe8\x171\x16\x9f\xbaZ)\xc3"`\xfd!\xba\'\x85\xf2\xb8E\x18\xf4.\xdeR\xae\xd8\xe38\xeaB\xe5\xfe\xce\xf8\xc4\xdc-\xcd=\xbbY]\xb4=\xd7\x10\x9c\x86\x9a\xdee#\x88\xe7\xf3\xa0\xa0=iQ\xc8\xc6\xf7\'\x85:T\x07\xf6U\xb5\xd4\x0c\xf6\x8b\xd5\xc9\xd21\xcbR\x88i\x10\x97\xc3\xd1\x9f\x870\x12;BG\x10%#\xe3|\xb30r\xe8\xde\xea\x87\xea\x9e\x03\xac\x03\x08(\x1a\\Z\xa5(\x0e(\xe2\x93\x8b\xaaX\xba\x16T\xc62\xc4t\x1e\x93\x99\xa9\x9f\xb2@\x82?6\xe4\x1c\xc1\x82\x11\'t\x87W\xdc\xaeZq6U\xa14\xd0%\xc6V\xca|\x7fF7\x1a6\xf5\xe4\xdb\x13R\xe3\xd0`D\x9e\xf4\x13\xcb\xf8\xd7\x15t\xa1\x96\xde\x14\x1cV\xa4\x83\xec\x08\x10d%x\xf35>\xc9\xba\x19\xc2\xe5[\xaf\xfa\x8a\x8awgC\x9c\xcc\xa8\xb7\xb6\xbbZ|\xfe\xed~\xebOJ\xc7"\xfb\xe2\x9f\xf8\x81M\xf8\xc7\x8b\x7f(F\x1eOU\xbd\x01y\x0b\xda\x1aL6\xa7\xbf\x8e\x8d\xca\xe9\xa5\x94\xba\xc1\xc6\x00+\xcb\x9e\xe1\x0c\xb1\x92.\xc4\x86\xdeGD\x9b\xd1\xb2n\xfd\xe1\xe7e\xa3\x930\x9e\x1d)r\xb6\x1dV]\xf4\xf7\xff\xfb]jBG`aN\x8aR\x14^\xe5\xff\xde\xfc\xa4\n\x89\xf5:\xba\xcf\xa3KP\xb8qM\xe0\xa5G.\x16>\x99\xa3\x90\x81\xc2\x9f\xf7\xcb\xaa\xa2l\xbb\r\xdb\x02<\x84%@\x99\x11\x95]UaT8\xd4\r"?\x97 \x895\xd0\x14\xe9\xca>.\x10\xe8:\xff\xaa\xfb\x07\x13\xffN)>\xcd\xf8\x17_\xd3\x12\x7f\xb7\xf6\x87\xe3}[\xfeL)\xe0\x01w.\xaa\x86Y\xb6\xec\n\xdd\xf6az|\x81]\xc9\xd5\xa6D%\x1c;l\xd7\xb9\x82\x91\x0bWl2\xcb\x9c\x96>R/CC\xea\xffo\xe0&\x93Z\x88\x97F\xe9(\xb9\xbdy\xc5\xa3\x84\xe6\x06\x90\xc2\xaa\xdbd?9\xa3\x94\xf9C\x8b\x02\xf7\xc6\xf2\x86J\xa8\xdb\xbc\x97B\x1aV\\\xd9\xf0S\x96\x0b\xd3\xe09)s\xbb\x84\xbb<c\x93</\x7f\x8f\xb2$\xa8\x9e*\x14`s#\xd9\xd2o\x82\xf1\x9fU\xfd\xea\xe2\x01a\x1d\xf5.(#\x95(u"\xff\xd1\xa3\xed\xb8\xd6\xa1~ER\x9a\xac\xe1\xbbJc\xc0\xef\xe7\xf9\x80$<\xb2\xde\xc7\xcdt\x02\xaf\x1c\x9b\xfb;\x03W%\x91\xc9\xfb\xa9\x0f\r\xae\xb7\x1f\x01\xa4\xf5zxI\x91\x93\x1dX\xb6\xff\x866m-4\x16\xb1\x1a\xce\xe0\xb9\tf\xe1=\xc3[')

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

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

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '0326ff0e6826d05a5ab8c4300ddc21624965a6fa7d80e267f98d61f1c1ef4b59'

	fake.uuid4()
	# 'b82957ad-236c-0cb1-33b7-259a10f7031b'

	fake.language_code()
	# u'csb'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Afoakwa'

	fake.name_female()
	# u'Josephine Daako'

	fake.prefix_male()
	# u'Osofo'

	fake.prefix()
	# u'Mama'

	fake.name()
	# u'Osofo Anthony Darko'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Mama Debra Ataa'

	fake.first_name()
	# u'Kwame'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Joojo'

	fake.first_name_female()
	# u'Priscilla'

	fake.last_name_female()
	# u'Amoasi'

	fake.last_name()
	# u'Antwi'

	fake.prefix_female()
	# u'SistaOsofo Maame'

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

::

	fake.phone_number()
	# u'0577208352'

	fake.msisdn()
	# '3411183963530'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'28503 Vida Parkways Apt. 399\nLake Beatriceshire, MT 79430',
	#     'birthdate': datetime.date(1940, 4, 23),
	#     'mail': u'ahortorraymond@gmail.com',
	#     'name': u'Juliana Akoaa',
	#     'sex': 'F',
	#     'username': u'akowuakaren'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'0314 Adoma Burgs Apt. 294\nNew Alexanderside, MD 82107-8126',
	#     'birthdate': datetime.date(1951, 9, 19),
	#     'blood_group': 'AB+',
	#     'company': u'Adusei Group',
	#     'current_location': (Decimal('6.232041'), Decimal('17.787582')),
	#     'job': 'Illustrator',
	#     'mail': u'grace36@gmail.com',
	#     'name': u'Mr. Dennis Baafi',
	#     'residence': u'219 Yvonne Haven\nTinachester, NV 56316-9528',
	#     'sex': 'M',
	#     'ssn': u'062-91-7557',
	#     'username': u'aba79',
	#     'website': [   u'https://yeboa.biz/',
	#                    u'https://duah.com/',
	#                    u'http://www.asante-yawson.net/',
	#                    u'http://www.koomson.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([515, u'sjFIBgCayNydSZxxgaya', Decimal('7.84549333463E+12'), 3177, u'bonsrasandra@boakye.com', u'YLTCLppTakIAFSfAFQET', datetime.datetime(2013, 3, 16, 9, 10, 7), 6527192200163.2, 8565.0, u'rosemaryofori@gmail.com', 71236471.6, u'eYjTSCdQkHlYVegERSWf', u'faHyGFINhSLSIkRJQFae'])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'hjmmUCpZjqAwbMxYRbHX',
	#         5614,
	#         u'WHMTAddBaMvwamQIqQQY',
	#         -492733171448.0,
	#         datetime.datetime(2007, 2, 18, 13, 19, 14),
	#         u'http://nyaako.net/',
	#         1862,
	#         5260,
	#         u'QdCRucjYBHfftTLYpioS',
	#         u'http://gyamfi-baah.info/list/posts/search/main/'],
	#     {   u'aperiam': u'opokudanny@gyamfi-antwiwaa.org',
	#         u'deserunt': u'TVxFVuxAuXHVchPtotOo',
	#         u'dolorem': 4417,
	#         u'excepturi': -98223309.6670696,
	#         u'ipsum': datetime.datetime(2017, 1, 20, 1, 53, 29),
	#         u'minima': u'vKqppFLzrbbibOaGrCVj',
	#         u'nihil': 5867,
	#         u'quas': Decimal('77971671659.8'),
	#         u'ullam': -285.0,
	#         u'vitae': u'IJNvlTRfGyLXVSrbjvcH'},
	#     {   u'consequuntur': {   0: u'OJnmrijddTzyrergfNaI',
	#                              1: [728, 3264, 1520],
	#                              2: {   0: u'iETYbluuaOPzdchPgXuV',
	#                                     1: 8013,
	#                                     2: [2847, u'https://otiwa-omani.com/']}},
	#         u'ex': {   7: 7680,
	#                    8: [   u'uSmdASxlNQzsKaqRdFXk',
	#                           -4395.27654,
	#                           u'rhZETeUTPAJUliaawwWO'],
	#                    9: {   7: u'asamoahvictor@gmail.com',
	#                           8: Decimal('9735.4'),
	#                           9: [   u'aBpJJGhCAomLnxixTkhk',
	#                                  u'xMlSZpVgEmOYkyPWjlHE']}},
	#         u'expedita': {   8: datetime.datetime(1983, 5, 21, 13, 45, 15),
	#                          9: [   u'https://nsia.com/tag/blog/categories/index/',
	#                                 u'wUSXfFHilLzBpKmanuPr',
	#                                 4614],
	#                          10: {   8: Decimal('43.3443225117'),
	#                                  9: u'TwMInfhykrlwvkKGlYyD',
	#                                  10: [   Decimal('330867.715211'),
	#                                          Decimal('-50.6336571021')]}},
	#         u'nobis': {   4: 1602,
	#                       5: [u'http://www.afirifa.com/app/about/', 7725, 7387],
	#                       6: {   4: Decimal('9370.4'),
	#                              5: datetime.datetime(1999, 7, 21, 2, 55, 12),
	#                              6: [1492827055.7983, u'QHvjaWbRDhbeawQHeERf']}},
	#         u'nostrum': {   3: u'XfiqWCiiuhGkjxCaaEmO',
	#                         4: [   u'CBvWHpPxHfgazxLLAaFA',
	#                                u'GfzEyhjnFihCkmMpHykl',
	#                                4972],
	#                         5: {   3: u'ankrajoyce@agyapomaa-asante.info',
	#                                4: u'WMxytCLaQUaxXVeoojrj',
	#                                5: [   u'mtMxpsOnaoDgcwKKUDUQ',
	#                                       u'QdOLtSvbWhhVXaIOTkIR']}},
	#         u'quaerat': {   1: u'fynDNwtGrQZGKVzVltwB',
	#                         2: [   -11101.11,
	#                                u'gDZrEOJmItWmDaGExjRa',
	#                                Decimal('-228725823183')],
	#                         3: {   1: -672.81,
	#                                2: u'terence38@yahoo.com',
	#                                3: [   u'aforiwaa@boadu.com',
	#                                       u'afirifaben@amponsa-yirenkyi.com']}},
	#         u'quasi': {   2: 854,
	#                       3: [   u'hoZyTCYPfIHDijmzhUOS',
	#                              u'rDRoonbonkzyazzWUEQB',
	#                              datetime.datetime(1985, 11, 18, 7, 44, 44)],
	#                       4: {   2: datetime.datetime(1981, 10, 1, 21, 52),
	#                              3: u'http://otiwa-baa.net/faq.html',
	#                              4: [   datetime.datetime(1980, 1, 17, 9, 47, 57),
	#                                     u'yezSbIlUkZjBIQavYhKk']}},
	#         u'tenetur': {   9: 6007,
	#                         10: [1567, 1789, u'JnABYAHcjCzQcuDBIize'],
	#                         11: {   9: u'bdYyVKbRvHZkOpiGFvTF',
	#                                 10: u'OpjUiSfJhfFgisgihaoo',
	#                                 11: [   u'https://www.twumasi-akoto.org/about.htm',
	#                                         7921]}},
	#         u'velit': {   6: datetime.datetime(1996, 6, 27, 10, 48, 42),
	#                       7: [   u'qtLTKVHqhzixncEdyqIJ',
	#                              datetime.datetime(2013, 9, 11, 4, 3, 27),
	#                              3169],
	#                       8: {   6: u'akyerekostanley@yahoo.com',
	#                              7: u'mlHvvtYDZIogWXhGuVgn',
	#                              8: [   u'uaRCYkYrxoMkFDuteLdH',
	#                                     u'GLQzRudAnlnUVzhIGZjB']}},
	#         u'voluptates': {   5: u'NNIVSCJMVBBxTGchQsAR',
	#                            6: [   u'yVVsfvFMFDZbPFlrZCGu',
	#                                   3797,
	#                                   u'mWYimUfagNaexBLmrxaN'],
	#                            7: {   5: 6608,
	#                                   6: u'LndpluNfOGLIfSMOvAHC',
	#                                   7: [   u'FCaXiPCnznkLUeuQRKLC',
	#                                          u'http://www.pokuaa.com/search/home/']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'https://www.oti-antwi.com/category/category.asp',
	#     -7402276697.926,
	#     2372,
	#     datetime.datetime(1982, 3, 5, 12, 47),
	#     u'JmbZaxJBNxBWJWyPSkvJ',
	#     9668,
	#     u'GnrQOSoqIEzNtAmtDMTn',
	#     6226]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'yJUFvDffGPgNTjFBkxbG',
	#     u'https://afirifa.info/main/explore/search/register.html',
	#     u'http://www.awuah.biz/register.html',
	#     u'wUfbhxmadmzpyOGFAOOo',
	#     7512,
	#     u'cbonsu@gmail.com',
	#     u'UBJOuodAxkVuseJgjVjb',
	#     -609803.8,
	#     u'cQkUUCpgOdgLTEkUIRyp',
	#     1471)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([datetime.datetime(1980, 3, 7, 3, 12, 3), datetime.datetime(2012, 1, 29, 11, 36, 14), 2627, -16651494.709537, u'gCiKBwmUyzfhfjKiGrvo', u'YkztzuvRDLJucPxzSokh', 4141, u'http://www.ampofo.net/', u'jOOhLawghmjrSzGLaxpf', datetime.datetime(1998, 3, 21, 22, 1, 2), Decimal('98305698852.9')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'accusantium': u'ZmceAYGrUeXtuFhmTaRC',
	#     u'aperiam': Decimal('5.61184963898E+12'),
	#     u'fugit': u'ZAGtWQgPUtQEmBpefJqC',
	#     u'non': u'http://www.nsia-pomaa.com/terms.asp',
	#     u'quaerat': u'georgesafo@gmail.com',
	#     u'repellendus': u'https://kumi.com/',
	#     u'soluta': 5692}

	fake.pyint()
	# 1251

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'435-78-3893'

	fake.ein()
	# u'82-1946944'

	fake.itin()
	# u'925-96-8972'

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

::

	fake.mac_processor()
	# u'PPC'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/2013-02-13 03:26:29 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.99.(X11; Linux i686; cs-CZ) Presto/2.9.181 Version/10.00'

	fake.windows_platform_token()
	# u'Windows CE'

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

	fake.user_agent()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_12_4) AppleWebKit/5350 (KHTML, like Gecko) Chrome/60.0.886.0 Safari/5350'

	fake.linux_processor()
	# u'x86_64'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8) AppleWebKit/5340 (KHTML, like Gecko) Chrome/35.0.854.0 Safari/5340'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1 rv:5.0; cv-RU) AppleWebKit/535.13.5 (KHTML, like Gecko) Version/4.0 Safari/535.13.5'
