
Language ro_RO
===============

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

::

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

	fake.building_number()
	# u'25891'

	fake.street_address()
	# u'850 Jane Harbors'

	fake.postalcode_plus4()
	# u'91616-5227'

	fake.city_prefix()
	# u'New'

	fake.military_ship()
	# u'USNV'

	fake.city()
	# u'Lake Janeburgh'

	fake.zipcode_plus4()
	# u'19344-7376'

	fake.state_abbr()
	# u'TN'

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

	fake.street_suffix()
	# u'Bridge'

	fake.city_suffix()
	# u'burgh'

	fake.military_dpo()
	# u'Unit 0101 Box 4667'

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

	fake.country()
	# u'Aruba'

	fake.secondary_address()
	# u'Suite 969'

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

	fake.postalcode()
	# u'92584'

	fake.address()
	# u'54261 Jane Shores\nEast Janeville, NH 66899-2687'

	fake.state()
	# u'Florida'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Ababei Terrace'

	fake.zipcode()
	# u'10910'

	fake.postcode()
	# u'04503'

	fake.military_apo()
	# u'PSC 5457, Box 1461'

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

::

	fake.license_plate()
	# u'8KS O66'

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

::

	fake.bban()
	# 'ZVBM6314455418083'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB66TQNV0830442971300'

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

::

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

	fake.ean13()
	# u'7544916819170'

	fake.ean8()
	# u'22716637'

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

::

	fake.rgb_css_color()
	# u'rgb(137,223,248)'

	fake.color_name()
	# u'PeachPuff'

	fake.rgb_color()
	# u'201,119,219'

	fake.safe_hex_color()
	# u'#772200'

	fake.safe_color_name()
	# u'purple'

	fake.hex_color()
	# u'#d4fb33'

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

::

	fake.company()
	# u'Aanei-Stancu'

	fake.company_suffix()
	# u'LLC'

	fake.catch_phrase()
	# u'Switchable homogeneous neural-net'

	fake.bs()
	# u'aggregate turn-key niches'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nJohn Neme\u0219\n4897960536070454 05/28\nCVC: 966\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'FTH'

	fake.currency_code()
	# 'KMF'

	fake.currency_name()
	# 'Mozambican metical'

	fake.cryptocurrency_name()
	# 'Burstcoin'

	fake.cryptocurrency()
	# ('XDN', 'DigitalNote')

	fake.currency()
	# ('CDF', 'Congolese franc')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 19, 23, 36, 27)

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

	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(2001, 11, 22, 12, 26, 30)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2014, 12, 6)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 1, 10, 39, 12)

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

	fake.day_of_week()
	# 'Friday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 4, 27, 14, 11, 24)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1996, 5, 14)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2007, 9, 8, 19, 31, 19)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(2017, 4, 19)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1990-02-13T05:57:08'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2015, 11, 9)

	fake.month()
	# '05'

	fake.year()
	# '2001'

	fake.day_of_month()
	# '11'

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

	fake.timezone()
	# u'Africa/Cairo'

	fake.century()
	# u'VI'

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

	fake.time_object(end_datetime=None)
	# datetime.time(6, 58, 24)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 7, 30, 7, 39, 4)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1997, 5, 15, 0, 29, 48)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 8, 8, 14, 40)

	fake.month_name()
	# 'July'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1171, 9, 30, 19, 6, 37)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(3019, 15460)

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

::

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

	fake.mime_type(category=None)
	# u'image/jpeg'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/temporibus/excepturi.jpg'

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

	fake.file_name(category=None, extension=None)
	# u'facilis.html'

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

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

::

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

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

	fake.tld()
	# u'com'

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

	fake.url(schemes=None)
	# u'http://stan.org/'

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'homepage'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'npopescu@ababei-nistor.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'janealbu@tudor.org'

	fake.domain_name(*args, **kwargs)
	# u'albu-mocanu.com'

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

	fake.domain_word(*args, **kwargs)
	# u'mazilescu-toma'

	fake.slug(*args, **kwargs)
	# u'doloribus-ducimus'

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

	fake.company_email(*args, **kwargs)
	# u'astoica@eftimie.org'

	fake.uri()
	# u'http://www.eftimie.com/faq/'

	fake.ipv6(network=False)
	# 'ff9a:91b:9205:b6fa:ffea:13d0:e493:a847'

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

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

	fake.mac_address()
	# u'89:76:2e:cc:61:d0'

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

::

	fake.isbn10(separator="-")
	# u'1-4712-2858-4'

	fake.isbn13(separator="-")
	# u'978-0-340-40130-9'

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

::

	fake.job()
	# 'Energy engineer'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Laboriosam cumque aperiam fugiat natus impedit assumenda ratione. Odit debitis maxime.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Facilis impedit dolorem modi. Similique ab animi deleniti impedit consectetur voluptatem.',
	#     u'Ipsa perferendis maiores porro facere minima. Architecto aspernatur libero deserunt.',
	#     u'Blanditiis numquam hic quaerat optio quos autem atque. Illum ex ut est. Quaerat aspernatur iste optio.']

	fake.words(nb=3, ext_word_list=None)
	# [u'quas', u'labore', u'iure']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Soluta quaerat eius quasi.',
	#     u'Quod quos magni aliquam.',
	#     u'Aut laudantium esse eveniet eveniet dignissimos vitae quidem.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Deserunt doloremque asperiores amet. Necessitatibus sapiente sint et omnis accusamus pariatur eos.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Provident deleniti dicta commodi.'

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

::

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

	fake.locale()
	# u'lb_LU'

	fake.binary(length=1048576)
	# bytearray(b'\x1b\xa5\xd5-~SSb\xeb#\xdf_\xbc\xca\xf0\n^\xf6b\xa1F)\xdft\x0c\x80o\xa3\xaf\x07\x8e\xf9i\x88\xae\x9bKw+\x87\xd5\xbb\xf5\xdd"\xc9\x95\x94-\xb3\xfa=\x93\xb4n\xadj\x89\x932A\xc6\x89\xb7\xbft\x7f\x80\xe0\xacl\x8bu\xa1\xd3\x87xGr*\xea\x01\xe2mP"\x06\xd7\x86\xbe\xa5\xd1\xfd\x0b\x01\x84\xdc\x90\x8a\\pJRz\xe8c\xf8\x88v\x04?N\xf4\x81\xdbD\x82R\x8d\xf4\xe0"%T\xce\xf5\xe6\xa4F\x8a\x97\xd2;\xc5\xdcb\x12\xbd\xdbS\xc4sC\x05\xb5)\x90\xd4\x8a\x00\xf0\xb2\xd4<\xf07Y\x04|y\xa4S$\xbe\xcb\x92/^F\xbe\x9bq\x86\x03\x18V\xd1)`M\xe8\xb4\xda\xd7,<~d\x86Q\xb7\xb3\x10 1\xcf\x0b\xa16\x0e\x8d3k`\xc4\x07p\xc7+/\x8e\xc2S\x07\x97\xff\xe4\xaf\xe7\x92\x98\x19\xcd\xcd\xe0\xd4\x15\xa3j\xbcF\xbe\x19\x8015\xff_\xf1\xc9\xaarC\xd9\x8b\xf6\x1d\xf3\xa6\xa7\xf4u\xd1\x03\xa7\xeb\xceH*K\x16\x9a\xc7\x15\xe7\x05\'\xc1x\xa0=1[\xad\x8d\xee\xb9H\xe9x%$\x02\xef$\x96L\x9f\x84\x02\x14\x8e\xe8\xc8+\xcd\xd3\r\xcb$\xd2\x10\xefs8\x15\xfb3\x8a%\xb5\x0eB6\xec!\xd2\x18\xa6\xb0Y\xebT"v\xa1F\x9f\x98`\xae\x80IpL\x19\xe0\xd4l\xb5+\xb2X\x8f\xd0\xf3\x94\xcdt\xf3\xb7\xb5\xe9\xf9\x1c*\x8c\xa2k\xbd\xb5\x04A\xa1$\x87\x0e\x0f\xa7\xb9\x7fc\x10H\xcc\x03\xdf|\x1b\xc5>0\xfa\xeb\xb1\x8a\xa0\xed\n\x12\x06\xf7\x1a\xa2r\x0e\xa9\xc8n\x9f1\xf99\xb0\xb2\x96I\x10\x0cB\x8c\xd5\x8a\xe2\x938\xc9\xa2\xf8\x13\xd2\x03\xcc-\xdb\x89\xb9\x96\x14>j\xbf\x8a\xcd\x93\xca`w\xd8a7\xda\x01w\x97p\xe1\x97bl\xed\xdeO\xa2\xa6\xe7[Q\x12E+0\xc4\xd7\x98,\xae\xa5\xe9\x87\xe8\xff\x19fD4:0\xfa^\xe3HIS\x87\xd3\x1b\x15\x85\x07\xb9\xa5\xd9\x8f\xd8\xc0\xf4\x87:H\xa2\x8dWOU]]{k\xad\x99\xe4\x83\xa3{\xd0\n\xb65-;\x17\x15\x9b\xe5`\xc3W\xd4:\x1b\xa7\xdcf\x80\xa7K\x01\xc7dL\x02\xef\x86\xb3;\x92\x16\xe0\xc3\xb3\xb7T@\xcb\x1a\x118\x14\xc2\xb0\x1dL\x7f J\xf6\x1c3\xefz\xb8\xda\x18\x90\xc5fEHcG\x9a|\x83\x0e\xa7U\x0b\xcbI\x85z\x9f\xf6aX#\xde\xa5\xe6E\x9e\x90U\r\x8d5W\x14\xd5\x94\xdb\xbb\xf3.g\xef\x1a\x98{\tm\xe00#U/\x97\xc3\x86\xf7j\x80\x1b\xa3\x8bt\xc8\xaa:\xd6:\x95\xa1\xe1\ny3\x94\xdb^\x12\x19\xf4Q\xe5\xbf\x18\xc7^\xb7\xd5\xa1\x89\xf1\x91\xdc\x889tW\xdc\xaf\xbc\x17\xb1\x1e\x84I[y\x8b\xc7\xec\xe8\xf0;\xab\x0b\x86I\xe8\xbb\xe0\xe5\x16\xf9$\xec\x9b\x85\xebG8\xae\xb3T S\xd2\xdea^\xe3\x04Z\xf5p\x06\x8b:s\x93\x93}#F}h[\x105"\xbf\x1bm\xbcf\x897_r\xa4,\x01)1\x01\x13D,\x0c\x96\xccj\x98\x87\x9cr\x0e_\xb5\xef\x8a\xb1\xe75\x08\x07X\xf3\xfb\x11l\xc9\xf7\x8d\x06u,RF&\xe2Z\x18\xe9\x95\x0b\x0c\xce\xf7\x08\xae\x1f\xec\x96t\xa1\xaa\xde"\xe5\xf5\x15\xa0\xe0\x1bO]\x1cF\xac/\x0f.\x19A\xe0\xc4<P\xaa\x0c\x10\xa7d\xadte\xbf"\xc6q\x9eR\xc1\x06}\xa7|i\xcaP7Fs \x83}hMaa\xebB\x07uU&\xe5\x924\xd2NK\x93\xb3\x14\xa2\x0b\xfc\xbe\x05\xc8SrE\xefZz\xbd!\xd1\x89{A\xb2\'A\xc7\xfbP\xf6\xfa\xa9\x15\xae\xc6Y+K\xe6-\x11x\xa7\xd8\xc8k\xd5\x95\xd5\r\xbe\x93J*X+\xfck\xd1)\x9e\xe6Vd\xc4\xc2l\xdf/\xca\xd7\xb2\x05#\t\xccI\xdd\xf2\xe8\x7f\x9d\x86\xc7\x89\x97/?\x89\xc9\xe9\x08\x86\x95\xa1f\x0e\x1c\x18\xf2\x99%\xdf\xa1\xfaT\xb3\x05y\xc7k\xa0\xbdLO\xe0\x12\x8bc\x9e\x10mz0g\xbd\x9as\x0eZ\x85\x14\xf9\xfd\x1d\xd2\xa8(!\xf6\xb9\x05\xc1\xc4\x93\x8bHMn^!\xb9\xe5\x13\r\xffJK\n\x92')

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

	fake.sha1(raw_output=False)
	# '60e7910fe216cbb072cc66237b926afe817055d9'

	fake.null_boolean()
	# False

	fake.sha256(raw_output=False)
	# '54b53daeebcd2195e37988481bbfe9c79f48fc4f3c9fee2bb61bacc38df6a037'

	fake.uuid4()
	# 'd3345abb-aa67-8c6f-d1be-fac8d8118e8a'

	fake.language_code()
	# u'kl'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Aanei'

	fake.name_female()
	# u'Fiona Stan'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Jane Marin'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Niculi\u021b\u0103 Iustin Dinu'

	fake.first_name()
	# u'John'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Iacob'

	fake.first_name_female()
	# u'Lavinia'

	fake.last_name_female()
	# u'Nistor'

	fake.last_name()
	# u'Stan'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'846-330-2912x078'

	fake.msisdn()
	# '2968751757346'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'57247 Dochioiu Centers Suite 926\nNorth Jane, GA 46357',
	#     'birthdate': datetime.date(1913, 2, 2),
	#     'mail': u'georgescujohn@gmail.com',
	#     'name': u'Teona Ni\u021b\u0103',
	#     'sex': 'F',
	#     'username': u'jane72'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'3964 John Point\nNorth Janebury, SD 94543-7440',
	#     'birthdate': datetime.date(1946, 10, 5),
	#     'blood_group': '0-',
	#     'company': u'Suciu-Preda',
	#     'current_location': (Decimal('8.7094545'), Decimal('4.652680')),
	#     'job': 'Cabin crew',
	#     'mail': u'john03@hotmail.com',
	#     'name': u'Adelaida Br\xe2ndu\u0219a St\u0103nescu',
	#     'residence': u'USNV St\u0103nescu\nFPO AE 12092-1173',
	#     'sex': 'F',
	#     'ssn': u'261-45-2138',
	#     'username': u'mocanujane',
	#     'website': [   u'https://www.suciu.org/',
	#                    u'http://www.georgescu.com/',
	#                    u'https://tabacu.biz/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'NVlFXFiwCULDLNaAdKdq',
	#     1777,
	#     u'https://www.puscasu.net/app/terms.html',
	#     u'ZOKbQRUozgOUpynadaGO',
	#     9946,
	#     Decimal('7.1429279022E+14'),
	#     u'johnnistor@stoica.org',
	#     2728]

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

	fake.pystruct(count=10, *value_types)
	# (   [   4766,
	#         7054,
	#         u'rdAkXIfDyKqDFSLFsoHZ',
	#         datetime.datetime(1985, 9, 25, 13, 20, 20),
	#         u'tKGNvmceOxDBTLSMQCgq',
	#         u'niTQGgMtnzlpJOzTAYve',
	#         datetime.datetime(2003, 3, 12, 7, 17, 30),
	#         882,
	#         datetime.datetime(2002, 5, 16, 12, 5, 28),
	#         datetime.datetime(1997, 5, 25, 5, 35, 28)],
	#     {   u'ad': u'bTzCyMPapawxJwWatqkz',
	#         u'consectetur': u'estan@tabacu-ardelean.com',
	#         u'est': u'JbsorKXGdhOMItkdhDaz',
	#         u'ex': u'hijqgTUKDWGhtASKSqjo',
	#         u'fugit': u'SUGLLxMlXKIUJpHPvQUk',
	#         u'quae': u'john12@yahoo.com',
	#         u'quas': u'uGPoYyvNnOWMkQAuoyMW',
	#         u'sint': u'qmarin@gmail.com',
	#         u'totam': 5090,
	#         u'voluptate': Decimal('-171039686082')},
	#     {   u'ducimus': {   7: u'NcNEbvqQjdUmUTaNAOxN',
	#                         8: [   u'kUMIrKyOkdvYPvyvHDfo',
	#                                21832885.527225,
	#                                datetime.datetime(1995, 5, 8, 17, 4, 10)],
	#                         9: {   7: datetime.datetime(1990, 11, 4, 9, 35, 52),
	#                                8: u'AmvgmcgoGscEugIkYXpF',
	#                                9: [1045.794828763, 2975]}},
	#         u'eligendi': {   3: -190953459.290203,
	#                          4: [   datetime.datetime(2015, 4, 15, 21, 17, 42),
	#                                 Decimal('-142.5197678'),
	#                                 Decimal('-2.34264941904E+13')],
	#                          5: {   3: u'http://www.albu.org/home.html',
	#                                 4: 6895.14,
	#                                 5: [   u'https://www.dobre-stan.com/posts/app/search.php',
	#                                        6668]}},
	#         u'eveniet': {   1: 27302.51,
	#                         2: [   u'johntoma@tudor.org',
	#                                u'http://www.diaconu.biz/search.asp',
	#                                datetime.datetime(1992, 7, 30, 11, 9, 44)],
	#                         3: {   1: u'gpreda@dochioiu.com',
	#                                2: u'RwztdMRoYYogVNvGPTlc',
	#                                3: [   Decimal('6.68577581283E+14'),
	#                                       datetime.datetime(1984, 6, 26, 0, 7, 58)]}},
	#         u'expedita': {   2: u'cTpZxQsWufloxEHgFhmP',
	#                          3: [   u'edkMdMnjdeLmIapjScUO',
	#                                 3045,
	#                                 u'cukMAvQjnmjnELzYHIIZ'],
	#                          4: {   2: -4799235356.66,
	#                                 3: u'SUTMkcDjVjFGfJQRsZEg',
	#                                 4: [   datetime.datetime(2004, 1, 1, 11, 22, 16),
	#                                        562]}},
	#         u'fugit': {   4: 9655,
	#                       5: [   u'YMBWuxKSLWHoHZaVwTIi',
	#                              u'pSTPudKJzczlucFSZnsk',
	#                              4382],
	#                       6: {   4: u'PeXIeDYgenboGJWvkcJx',
	#                              5: -4381776.417111,
	#                              6: [   u'lStBKaYCebXPvabydUbG',
	#                                     datetime.datetime(2014, 11, 30, 7, 45, 17)]}},
	#         u'hic': {   9: 6668115822.2319,
	#                     10: [   u'AXElDXTqdKSQQCHHmCFG',
	#                             u'zFMgCwfQYjUDrejZBvZY',
	#                             u'janenita@nistor-diaconescu.com'],
	#                     11: {   9: Decimal('-9.01356693199E+13'),
	#                             10: datetime.datetime(2013, 12, 3, 17, 9, 9),
	#                             11: [   u'jane76@nistor-ababei.net',
	#                                     u'kgHvaGNITLtYROsupVvl']}},
	#         u'in': {   5: u'xROQLHVTIiiBTKlhDRUL',
	#                    6: [   u'RRhWtrjmzaJKNgxHTRkz',
	#                           725.0,
	#                           u'BjqkbXRPrHVPjXPEtEBp'],
	#                    7: {   5: 3332,
	#                           6: 2196888.82155,
	#                           7: [   u'VSAKxEvAKIdOqpQfAgFk',
	#                                  u'WcPxfXRJFBugLEytInDs']}},
	#         u'nisi': {   0: u'MNJoNlPcUvDqlkpnfDYj',
	#                      1: [   Decimal('-4019589.1'),
	#                             u'SaFzJMVsnCOqkIPHFAqH',
	#                             2677899.8],
	#                      2: {   0: 7149,
	#                             1: u'jUuXcCdYBYzLqlUlhLhb',
	#                             2: [   datetime.datetime(1982, 6, 14, 20, 42, 31),
	#                                    datetime.datetime(1985, 9, 3, 14, 20, 4)]}},
	#         u'veniam': {   6: datetime.datetime(2007, 9, 7, 5, 36, 8),
	#                        7: [   datetime.datetime(1978, 6, 5, 8, 12, 24),
	#                               Decimal('-4.11551708'),
	#                               u'http://pop.info/'],
	#                        8: {   6: u'http://florea.info/',
	#                               7: 3390,
	#                               8: [7594682.8432672, u'tVkTFArhzNiEsVYVitMt']}},
	#         u'voluptas': {   8: u'PVxmSXBltSCOgXCPhzAL',
	#                          9: [   u'LFDnMAmSEIjInIHLPpGz',
	#                                 u'wzWorXVBSiziSCzYwfAG',
	#                                 Decimal('576450730384')],
	#                          10: {   8: Decimal('96575.213377'),
	#                                  9: 8.4508,
	#                                  10: [   u'XWrKTHzTZgRjkbEpeVqi',
	#                                          u'ndochioiu@dochioiu-tudor.com']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'https://nistor.org/app/main/',
	#     u'https://www.florea-mocanu.com/',
	#     7470,
	#     u'zRAZnlNpczZMBImvFkcJ',
	#     u'gKSFGnTOHvvdBTRSKEuQ',
	#     5264,
	#     -999524551304.88,
	#     u'YieBEPxhJuROgQaeiyju']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   5572,
	#     3367,
	#     Decimal('73.63'),
	#     u'rJyfMpcLWMNpPdamOwBG',
	#     2072,
	#     u'qqQFXilwAYkXubViitWK')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([9159481.9, 169024977.6782, 7215, u'wYzbeRzJRCmRCmdDWZOg', u'BfuHkWefNSESxcmuWFos', 1171, datetime.datetime(1975, 10, 5, 15, 1, 40), -4935809.40493481, datetime.datetime(1976, 11, 3, 15, 46, 35), u'GxUfboZJMgONZTglnsgE', u'MbgOQssOyqkqAaWPIxGc', 8735])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'culpa': -22090194980532.4,
	#     u'cumque': u'xoJFdKsVdYUqvWfcJPJL',
	#     u'excepturi': datetime.datetime(2000, 3, 25, 18, 0, 5),
	#     u'maiores': u'https://stanescu-manole.org/',
	#     u'non': u'jVDmJkHlpkYZyveFlyTS',
	#     u'quisquam': Decimal('7824.40679202'),
	#     u'vitae': 7648}

	fake.pyint()
	# 333

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'078-65-5853'

	fake.ein()
	# u'25-4088058'

	fake.itin()
	# u'927-82-3619'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3; rv:1.9.4.20) Gecko/2015-02-21 10:10:58 Firefox/3.6.20'

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

	fake.opera()
	# u'Opera/9.33.(Windows NT 5.0; niu-NU) Presto/2.9.163 Version/12.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 5.0) AppleWebKit/5312 (KHTML, like Gecko) Chrome/43.0.891.0 Safari/5312'

	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; Intel Mac OS X 10_6_0) AppleWebKit/5352 (KHTML, like Gecko) Chrome/16.0.816.0 Safari/5352'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; my-MM) AppleWebKit/534.37.6 (KHTML, like Gecko) Version/4.0.5 Mobile/8B114 Safari/6534.37.6'
