
Language hi_IN
===============

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

::

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

	fake.street_name()
	# u'\u0932\u0924\u093e \u0917\u0930\u094d\u0917'

	fake.address()
	# u'7362 \u0905\u0902\u0915\u0941\u0930 \u0905\u0930\u094b\u095c\u093e\n\u091c\u093f\u0938\u0938\u0947\u092c\u0947\u0932\u093e\u0930\u0940-485460'

	fake.street_address()
	# u'33/41 \u092c\u093e\u0926\u093e\u092e\u0940'

	fake.postcode()
	# u'551819'

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

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

	fake.country()
	# u'\u0938\u094d\u092a\u0947\u0928'

	fake.city_name()
	# u'\u0905\u092e\u0930\u092a\u0941\u0930'

	fake.street_suffix()
	# u'Street'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'92'

	fake.city()
	# u'\u091a\u093f\u0924\u094d\u0930\u0915\u0942\u091f'

	fake.state()
	# u'\u092a\u0902\u091c\u093e\u092c'

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

::

	fake.license_plate()
	# u'49-45085'

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

::

	fake.bban()
	# 'LHVR2660068015446'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB60IOUJ7747564952381'

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

::

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

	fake.ean13()
	# u'1778173533128'

	fake.ean8()
	# u'07392245'

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

::

	fake.rgb_css_color()
	# u'rgb(139,189,223)'

	fake.color_name()
	# u'Gray'

	fake.rgb_color()
	# u'197,214,76'

	fake.safe_hex_color()
	# u'#aa1100'

	fake.safe_color_name()
	# u'fuchsia'

	fake.hex_color()
	# u'#21d3f9'

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

::

	fake.company()
	# u'\u0906\u0939\u0942\u091c\u093e Inc'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Ergonomic discrete implementation'

	fake.bs()
	# u'brand back-end models'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'Discover'

	fake.credit_card_full(card_type=None)
	# u'VISA 19 digit\n\u0905\u0928\u0941\u092a\u092e \u0932\u093e\u0932\u093e\n4679349759889384655 01/28\nCVC: 993\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'NXT'

	fake.currency_code()
	# 'MAD'

	fake.currency_name()
	# 'Malaysian ringgit'

	fake.cryptocurrency_name()
	# 'Feathercoin'

	fake.cryptocurrency()
	# ('BCN', 'Bytecoin')

	fake.currency()
	# ('BWP', 'Botswana pula')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 21, 15, 34, 55)

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

	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(2006, 7, 25, 21, 58, 15)

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

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 15, 20, 14, 50)

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

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 7, 9, 11, 24, 18)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2017, 11, 17)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2001, 2, 6, 0, 54, 51)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2015-10-21'

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(2007, 9, 14)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1982-12-03T18:19:55'

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

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

	fake.month()
	# '02'

	fake.year()
	# '1971'

	fake.day_of_month()
	# '12'

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

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

	fake.century()
	# u'XI'

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

	fake.time_object(end_datetime=None)
	# datetime.time(18, 16, 47)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 2, 0, 57, 6)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1970, 8, 23, 18, 3, 51)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '19:04:11'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 18, 0, 33, 12)

	fake.month_name()
	# 'December'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1296, 9, 22, 1, 40, 22)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(1668, 75316)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/est/atque.png'

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

	fake.file_name(category=None, extension=None)
	# u'mollitia.numbers'

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

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

::

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

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

	fake.tld()
	# u'biz'

	fake.email(*args, **kwargs)
	# u'sbaadaamii@daaraa-kaale.com'

	fake.url(schemes=None)
	# u'https://www.dddhaal.org/'

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'post'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'kmboj94@mhaajn-laalaa.info'

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'kdve@bhnddaarii.info'

	fake.domain_name(*args, **kwargs)
	# u'arodddhaa.biz'

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

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

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

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

	fake.company_email(*args, **kwargs)
	# u'puurnnimaasenaadhiish@baalkrssnnn-raamllaa.info'

	fake.uri()
	# u'http://www.gaavit.com/blog/login/'

	fake.ipv6(network=False)
	# '834a:f755:281a:894c:dc01:fce8:9eb4:c37b'

	fake.free_email(*args, **kwargs)
	# u'ihegdde@yahoo.com'

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

	fake.mac_address()
	# u'cd:03:b9:f6:f5:8e'

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

::

	fake.isbn10(separator="-")
	# u'1-5489-2702-3'

	fake.isbn13(separator="-")
	# u'978-0-8344-5120-9'

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

::

	fake.job()
	# 'Programmer, systems'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Rem cupiditate iure ullam iusto. Hic nulla iusto fugit delectus.\nVitae harum tempore eos. Ratione temporibus necessitatibus quis eaque possimus eligendi.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Optio tempora tempora vel voluptatibus cum porro. Necessitatibus saepe libero rem enim fugiat nam. Fuga reiciendis repellendus inventore tenetur sed harum. Quaerat animi ex placeat.',
	#     u'Facere numquam voluptates amet. Minus ut atque dicta non magnam eaque. Rerum nulla quis earum autem tempore libero at.',
	#     u'Aut dignissimos cumque possimus neque eveniet accusamus. Iure accusamus repudiandae unde ipsam doloribus.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Quae unde est magnam.',
	#     u'Ab nisi in aperiam eaque.',
	#     u'Voluptate eius sunt cum ab optio.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Quas impedit eaque itaque. Totam rem minus neque.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Fuga ratione expedita rerum iure quis dolores odio.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'#3*m(zssGL'

	fake.locale()
	# u'ko_KR'

	fake.binary(length=1048576)
	# bytearray(b'0\xaf\x1a\x94\xfd\xdd\xa5m-.\xf5sZ3\x98\xb8Vp\xbf\xc5Y\x18\xc9\xb4,=\x0c\x80\xc2{A*Q\xbe,\xc0%\x06Mz~;\xe9\x16\x9e\xf0h\xbbT\x93Xt\x9eS\xbb\xa4\xa9Q\x87O\x17:\x9aX}\xe0R\xe06\xbe-5\xf6\xac\xd4yFA\xb5\xd5]\x985~)Y8\x8aj\x8a-\xbf=dTn\xa4\xb5\x03\xf9\x1e\x14\x11Q\x88\x07\xdb\'\x99\xde\x10y<\xcc\xb0\xc0\xca\x84e\xa1\xbeG\x98\xec\x88D\x93w\x9d\xd1Q\x14\xd7X\xaf4\x11\x01\x14\x8e)%\x93J\x06\xa8\xc8\x96\xb9\x01\xa9~\x12\xfe\xb72\x9c"\xe29\x1f~\\\xe9*\x0c\xe4\x082\xe3\x83X\x88\xb9\xc2\xa8*\xa1!L\xd3tr\xc7S\xfcb\x91H\xb2\x86\x8f\xbd\x9aUkpc.\x01\nk\xbb\x82\x87\xb9\xf1k\xfe\xab\xaa\xad\x17\xad\xb1\xaa\x17y\xe8\x1aoD)\x00X\x92^\xfb\x9f\xf7\x0b\x19\x8d\xfdF\xa3\xd7\xb2\x81}\xf1\xd5*(\x86\x94\x1b[`m<\xda\xd4\xa7\xb4Ml%\xbeb\xa5\x91\xffC<)\xac\xf08\xd99\x02\x9d\xd2]+\xa0\xdb\x8b\x91\xb5\x9f\xe9M\x01C8\x9a\x87\x1d\r\t\xf9y\xbe\x0f^\x96\xd4,\xc0\xcb2p\x1eMb\xf0\xfd\xcf\xe7\x08Lg\x87}1\xb9>\xbc\xcf\x91\xf87(\x8dU\x932\xe8]``\t\xe9\xed\xc7\x17r=%t0s\xb3\xb0\xc7$[\xc3;\xf3\xa1x\xeb\xcf\xab\xf3\x0f\xd0\x05\xeb\xe5\x1e\xfc\x1e\xd55\x99K\xee\xfe\xb3\x0e\x87B\xb7b\xd3x\xdb\xf9X\xe1\xcdJ\x95\xa6W\xc3\xc2F\xbe\x9a\x0b\x02\xea\xfe\xaa6\xd6\x02\xae\xdd\xbc\x87D\\C\xad\xaf\xa9=\xed\xc1lC\x12\n_R\xde\xd0Q:\x88Xt\xa3\xf0\x8e\xbd/q\x01e<"\xfb(R_q\xf1\x0c\xc4\x063\x9e\xac\xd7\x1b=u\x8b8\xb3\xd1\xccF\xbd\xd3F&,\x05\x10\x1a\xd6\xaf\xc0.\x154]<\xb1\xd2\xf5k\x82\'\xbf\xecC\'\xc89\xf1\xa7O\xf0\xd0U\x87A\xeaa\xc9\xe55\xdf\xbf\xb9\x0c\x02\xf8~\x0f\xa4x\x1e\x9b\xf1\xa5\xac.\ro8x\xb4\xf7 \xb6t;\xa8\x94{^\x00I\xfat@\xa2\x1e\xf1(\x04"$\xa8\xc3\x08\x85\xff~\xe1\x92=bqB\xc1\xa7\x81ru\xd4\x18\x17w;\x8f\x1fh(\xaa\x04\x0f\xa102<\xd5O"\x08\x12\xc34\xf2\xbe\xe8PB:\xdd\x0c\xb0N\xa2\xca`\x1a\xd4\x94:)\xe6\xa6\xb9\xb0T\nH\xa4x_\xe4\x8c\x15\x9a\xc0\xd6\xc1\xe0U*R2W\xdd\xf6\x83*\xce7\xd7#9\xfa\xa5\x03\x15u\x984-\xb9\x9e\xcf@\x12 U\xc7o\x94\xd0\xdcA\n09\xa6\xd6[\xfb\xb8\x82\xf2\xe7s<\xd3(\x07\xb3\xfe\xcb\xddL\xd4[`\x80\xc5\xd7\x9d\xa4\x93L\xf7\xd3P\x92\xbd\xac\x81dna\x10\x15\x92?\xb52\x88\xa5.\x00\x88\xcb]#\xf8\xf4\tw$~P\xa1"\'\x06`\xbf\xea\xbd8\xdb\xbfRg\xda\xbaa\xb1\xa7w\xb9b\xfb\xe0\x812\xfd\xfe\x8d\x93U\xf9\xac1#\x993\xff\xfa\xdd\xb2\x08O\xfc\xcd\x06\xa0\x08\x86"\xae\x12\x18\xdf!\x02\x04f\x060\x94\xee\xca{\xbbh\xf3\x0f\x133\x13\x9a}\r\xde"\xc6\x17\x14\x17\x1c\xf3\xca\x99N\x84\xd4\xe4\xd0\x88\r\xda@=\x89\xa1\x86\x1f0b\xe4\xa9\x11\xf5dX\x9f#\xa8\xbc.\x94X\xf7\xaecMH\xbb\x97\xd0\xc9p\xe9\xf5\x8d\xac\x11YrW\xed\x00\x0e\xfb*.\xb8lj. \xed\x0f{`\x18\r\xddd[K\xa0QSE\xae4\x17n\x93o^\rC\xb3\xdc\xa0LIE/\xf6\xfb2\xbfa\xe7\x92%}"<\x1a\xbc\x02\xde\xfdW"\xcbGu\xd7\x8c8\x9e\xb8\xf9\x90\xd2ZL\xf7\x17\xf4\x03h\x17\xcb\xa2\xe8k\xc4\'ic\xe3[\x88\x98\xd5\x12\xaeQ\x1c\x8b\xfa\xbd\x8fl\xb0:v\\a\xbc\x1e^\xf9\x91\x92d\x06"\x05\xe5\xa5 5\xcd\xcd\xbe\x93m\x96\xe5\x83\x14\xccI\x8c\xa3\x14\x94\xde>\xb9\xfa\xa2Mem/\x0cO\xca\x17>\x1a:\xdf\x8a\x94\x10\xff"\xd0\xf5\x15l\n\xbf\xbaps9yK\x9ah\x96\xf9y\xaa3\x85\x16\xf1')

	fake.md5(raw_output=False)
	# '1a0a8a842c3f14803a0db3d2ffb92504'

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

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '095911857b36292cec0f7374dd436296928c1b73bf7ddf2fbf2f7862c034db28'

	fake.uuid4()
	# 'd8b2f089-604a-e468-a034-e63705629794'

	fake.language_code()
	# u'sw'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'\u092e\u0939\u093e\u0926\u0947\u0935'

	fake.name_female()
	# u'\u092a\u094d\u0930\u0947\u092e \u0905\u0939\u0932\u0941\u0935\u093e\u0932\u093f\u092f\u093e'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'\u091c\u092f\u0926\u0947\u0935 \u0927\u093e\u0932\u0940\u0935\u093e\u0932'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'\u092e\u0902\u0921\u0932, \u0906\u0928\u0928\u094d\u0926'

	fake.first_name()
	# u'\u092e\u093e\u0932\u0924\u0940'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'\u0930\u091c\u0928\u0940'

	fake.first_name_female()
	# u'\u0935\u093f\u0937\u094d\u0923\u0941'

	fake.last_name_female()
	# u'\u0917\u093e\u0902\u0917\u0941\u0932\u0940'

	fake.last_name()
	# u'\u0932\u093e\u0932'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'067-41365672'

	fake.msisdn()
	# '4300684991239'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'96 \u091a\u0947\u0924\u0928\u093e \u092c\u091c\u093e\u091c\n\u091c\u093f\u0932\u094b\u0902\u092a\u0930 058423',
	#     'birthdate': datetime.date(1944, 4, 9),
	#     'mail': u'raamshrmaasrsvtii@hotmail.com',
	#     'name': u'\u0921\u093e\u0928\u0940, \u0905\u092d\u092f',
	#     'sex': 'M',
	#     'username': u'ydaadaa'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'9 \u0905\u091c\u093f\u0924 \u0936\u093f\u0930\u094b\u0933\u0947\n\u0924\u094d\u0930\u093f\u092c\u0947\u0928\u0940 913277',
	#     'birthdate': datetime.date(1911, 8, 3),
	#     'blood_group': 'B+',
	#     'company': u'\u092e\u0939\u093e\u0926\u0947\u0935-\u0938\u093e\u092f\u093e',
	#     'current_location': (Decimal('68.867247'), Decimal('162.171117')),
	#     'job': 'Farm manager',
	#     'mail': u'ggnnesh@yahoo.com',
	#     'name': u'\u0906\u0926\u093f\u0924\u094d\u092f \u0926\u0924\u094d\u0924\u093e',
	#     'residence': u'12/88 \u092f\u0936 \u0922\u0940\u0902\u0917\u0930\u093e\n\u092c\u091a\u0947\u0932\u0940-055562',
	#     'sex': 'F',
	#     'ssn': u'670-44-3344',
	#     'username': u'gmnddl',
	#     'website': [u'http://www.cauhaan.com/', u'https://caudhrii.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([8416, u'GYEvnhpelhdjbcFYfFBN', 8886, datetime.datetime(1973, 2, 23, 20, 9, 21), -963.77804187, u'sgCKANqDyErtlDlsRPCL', u'uYNKfQhFUlKgvwbEBglX', datetime.datetime(1974, 5, 24, 17, 26, 18), u'KztyfQYlPQDyjqBPLUlH', u'TgIGQbKbfEwSwdASGvhz', Decimal('-3045378.4281'), u'ddaaniirtn@shriiviml.com', u'DrhuwqkaGbIoPqrqSnvf'])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'mLSARMYJOgkIaEqjJzDj',
	#         Decimal('5.43841283454E+13'),
	#         datetime.datetime(2006, 6, 20, 3, 9, 22),
	#         u'pWpqwjQpaGyORNZgcgKt',
	#         277,
	#         u'xAPNfixFIopIAWcoQBdf',
	#         2333,
	#         u'QFabUSLMKuFZkAstcGxf',
	#         u'https://www.krssnnn-bhaart.com/search/blog/search/search/',
	#         Decimal('4.8226282897E+13')],
	#     {   u'amet': u'JVpYmdnQjjBYqMIIeZlS',
	#         u'assumenda': u'LnKKeXFbgTlaXrujTIjl',
	#         u'commodi': u'eqbfnDWbbVnOsmmVrYzB',
	#         u'dolorum': 1144,
	#         u'earum': u'YjhysUDKacWCqgJAJAQh',
	#         u'laudantium': u'ABAtxCoExkMlYZFfTHNQ',
	#         u'magni': u'eNKkMbXYHkPanvXSLtJQ',
	#         u'minus': u'gfQvNiYXNrDxXqZUXPnm',
	#         u'odit': 832,
	#         u'veniam': u'yQbyzafOKRcCRaRMvdDb'},
	#     {   u'deleniti': {   2: 4997,
	#                          3: [   u'VykxlByWAIZLRnYkSiKN',
	#                                 u'srlaaahluvaaliyaa@hotmail.com',
	#                                 datetime.datetime(2004, 2, 5, 23, 56, 50)],
	#                          4: {   2: u'gRFZYlCMUbhWgtGRfmvq',
	#                                 3: u'pKrbHyUlFJENSZcYnxbz',
	#                                 4: [14493.17893, 4279]}},
	#         u'dolore': {   9: -8191.8483442,
	#                        10: [   u'JVyesfoZoOlnRnTXAqHA',
	#                                u'shriivimlraajiiv@hotmail.com',
	#                                3436],
	#                        11: {   9: Decimal('460914.365098'),
	#                                10: u'EkdBxgPMQLNVjbMcGUhw',
	#                                11: [   datetime.datetime(2010, 11, 10, 0, 48, 54),
	#                                        u'MUtjtcaHzcAYdGkiZmoB']}},
	#         u'eligendi': {   1: datetime.datetime(1980, 3, 19, 22, 21, 3),
	#                          2: [   u'mXXlzixFOLjcOQOjcrxC',
	#                                 u'QnPVkfYVEVqzenjyiYwJ',
	#                                 -2046.63],
	#                          3: {   1: u'http://www.hegdde.biz/index/',
	#                                 2: -312.433277812,
	#                                 3: [   u'http://grg.com/home/',
	#                                        Decimal('-64.8861')]}},
	#         u'laborum': {   3: 7936,
	#                         4: [   1271,
	#                                u'IWOEytSNOIBhLgTgWRsS',
	#                                u'zxBIPfsRWwzFyCztMWSl'],
	#                         5: {   3: u'nrendrguptaa@mngl.info',
	#                                4: u'cszRBRsaFExmJsCvxcvN',
	#                                5: [6272, u'lkNHrSYDfVYcHoPWMpYW']}},
	#         u'molestias': {   6: -2.3858937367,
	#                           7: [   u'QqyknGzRjTOvPzTViaYt',
	#                                  -424.487,
	#                                  u'ZonRnfepksWYoPArpbra'],
	#                           8: {   6: 2734,
	#                                  7: u'DpmCezBZSGiXWoMaYDnl',
	#                                  8: [9470.96142, u'iYzecIIBaXJdEiOeDKNF']}},
	#         u'numquam': {   8: u'TodXuhZOkXQthKmFuxds',
	#                         9: [   Decimal('639992692637'),
	#                                9200,
	#                                Decimal('-952.79075351')],
	#                         10: {   8: u'XUVYJzhKLFkVHwLFukIb',
	#                                 9: datetime.datetime(1998, 4, 18, 10, 39, 58),
	#                                 10: [   datetime.datetime(2016, 6, 16, 6, 22, 53),
	#                                         u'MiFPHUHdWhxrruomGjqg']}},
	#         u'quae': {   0: 7841,
	#                      1: [5390, u'XUoGluzpdLWPfFoWVsTK', 2869],
	#                      2: {   0: datetime.datetime(1993, 6, 13, 8, 45, 38),
	#                             1: datetime.datetime(2008, 2, 13, 12, 48, 23),
	#                             2: [   datetime.datetime(2010, 1, 26, 7, 38, 59),
	#                                    datetime.datetime(1984, 1, 23, 15, 9, 44)]}},
	#         u'quaerat': {   7: u'PLHlTHhSEKvWJmHPRAYy',
	#                         8: [   datetime.datetime(1993, 12, 21, 5, 55, 7),
	#                                u'lluuthraa@duube-mngt.com',
	#                                u'https://mhaadev.com/'],
	#                         9: {   7: u'ZNzeFtZNFHRQYvJXNooZ',
	#                                8: datetime.datetime(1972, 4, 2, 4, 41, 25),
	#                                9: [   u'GXoyBZcbOxlpxCTsYBDQ',
	#                                       u'https://baaptt.net/login.htm']}},
	#         u'soluta': {   5: u'cGDlrqPTRjIeyXoXZFMg',
	#                        6: [   u'jgdiishjmaant@bjaaj-duube.org',
	#                               u'https://baabuu-luuthraa.com/main/',
	#                               -19575.24494107],
	#                        7: {   5: u'ERBuFpTOPmvmmwpPaVJU',
	#                               6: u'mYtXsREWGLYYVNVZGizc',
	#                               7: [u'https://paattil.com/privacy.asp', 8163]}},
	#         u'tenetur': {   4: 8883,
	#                         5: [   u'EbINTvdUkqJBsNKRHBTw',
	#                                datetime.datetime(1997, 5, 29, 4, 0, 33),
	#                                u'https://vaal.biz/main/category/tag/search/'],
	#                         6: {   4: datetime.datetime(1999, 7, 14, 12, 58, 46),
	#                                5: 665,
	#                                6: [u'krssnnaallit@mdn.com', 7436]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   8047,
	#     u'qZUBTUSsGeHYYuYqsjjI',
	#     u'COESLTMYDXkkDvMUtAZG',
	#     u'cfqaTNWUnVONVSgQzrDp',
	#     u'http://www.mllik.net/author.html',
	#     u'PsMngPfWDHMkVmzFdjPF',
	#     336,
	#     Decimal('12.3737184769'),
	#     201643803735295.0,
	#     u'ajHbPtPunkVqiAvetDbq',
	#     Decimal('-5377527.1'),
	#     7582,
	#     u'tAgxvtLtByrjRjjeGqMx']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   3626,
	#     u'dwtIXfqWZISTcFymwstW',
	#     u'https://krssnnaa.com/',
	#     u'habetDaZxQgscievUhll',
	#     Decimal('-389043159725'),
	#     datetime.datetime(2006, 8, 2, 20, 45, 58))

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([6755, Decimal('6.8178683051E+14'), u'UAgNPSHifhOopfPozoNY', u'qzJCGWHbLukoTvbqPfBq', 5548, u'ankur57@yahoo.com', u'DSCSNOtFsSPerawEbgaH', u'YMHPnNtcDhVBonvpboTr', u'bOtRuWpOkpJnmeoTTsUF', 6491, Decimal('68901298.6817')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'amet': datetime.datetime(2013, 9, 25, 15, 26, 27),
	#     u'corrupti': u'eJvmtlsTZkfhGagdCTaq',
	#     u'doloremque': 689928342.676,
	#     u'dolores': u'jHVoOkRicrEEWCTYlRxl',
	#     u'doloribus': u'yFrbczfejxdjFTQdNjDk',
	#     u'exercitationem': u'https://www.gaavit-ddaar.info/category.jsp',
	#     u'facilis': u'DLbfwHjGuLVwVjuWluCn',
	#     u'maxime': datetime.datetime(2015, 6, 25, 21, 43, 20),
	#     u'minima': u'KeckgvYUqVdQZDJOypiw',
	#     u'nulla': u'rkumaar@hotmail.com',
	#     u'quaerat': u'GmmUXfcushTzfismlqcl',
	#     u'sed': 5967}

	fake.pyint()
	# 4242

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'378-66-5017'

	fake.ein()
	# u'80-4008707'

	fake.itin()
	# u'999-74-7241'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows 98; os-RU; rv:1.9.1.20) Gecko/2016-06-25 11:34:25 Firefox/3.6.17'

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

	fake.opera()
	# u'Opera/8.65.(X11; Linux x86_64; ar-SO) Presto/2.9.172 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 98'

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Trident/4.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5310 (KHTML, like Gecko) Chrome/18.0.802.0 Safari/5310'

	fake.linux_processor()
	# u'x86_64'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (Windows 98; Win 9x 4.90) AppleWebKit/5331 (KHTML, like Gecko) Chrome/59.0.887.0 Safari/5331'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_2 rv:3.0; tn-ZA) AppleWebKit/534.47.1 (KHTML, like Gecko) Version/4.1 Safari/534.47.1'
