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

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

::

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

	fake.building_number()
	# u'896'

	fake.street_address()
	# u'084 Ni\u021b\u0103 Freeway Suite 050'

	fake.postalcode_plus4()
	# u'15514-2481'

	fake.city_prefix()
	# u'North'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'St\u0103nescushire'

	fake.zipcode_plus4()
	# u'26776-1638'

	fake.state_abbr()
	# u'NM'

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

	fake.street_suffix()
	# u'River'

	fake.city_suffix()
	# u'stad'

	fake.military_dpo()
	# u'Unit 3326 Box 9980'

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

	fake.country()
	# u'Dominican Republic'

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

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

	fake.postalcode()
	# u'66161'

	fake.address()
	# u'71417 Albu Parkways Suite 056\nLake Janestad, OR 56570-3990'

	fake.state()
	# u'Nebraska'

	fake.military_state()
	# u'AP'

	fake.street_name()
	# u'Toma Underpass'

	fake.zipcode()
	# u'49605'

	fake.postcode()
	# u'15324'

	fake.military_apo()
	# u'PSC 0017, Box 1419'

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

::

	fake.license_plate()
	# u'BZ4 K3C'

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

::

	fake.bban()
	# 'LDVS9096624831786'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB46WJKT0125762062281'

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

::

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

	fake.ean13()
	# u'4209222870309'

	fake.ean8()
	# u'20923105'

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

::

	fake.rgb_css_color()
	# u'rgb(219,100,2)'

	fake.color_name()
	# u'DimGray'

	fake.rgb_color()
	# u'131,48,169'

	fake.safe_hex_color()
	# u'#cc1100'

	fake.safe_color_name()
	# u'blue'

	fake.hex_color()
	# u'#23f610'

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

::

	fake.company()
	# u'Gheorghiu, Ni\u021b\u0103 and Ababei'

	fake.company_suffix()
	# u'Inc'

	fake.catch_phrase()
	# u'Extended multimedia benchmark'

	fake.bs()
	# u'integrate ubiquitous experiences'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 16 digit\nJane Toma\n3563843704497342 08/25\nCVC: 761\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'EOS'

	fake.currency_code()
	# 'LSL'

	fake.currency_name()
	# 'Israeli new shekel'

	fake.cryptocurrency_name()
	# 'PotCoin'

	fake.cryptocurrency()
	# ('FTH', 'Feathercoin')

	fake.currency()
	# ('IDR', 'Indonesian rupiah')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2019, 5, 27, 22, 54, 18)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2019, 5, 15)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(1992, 11, 27, 14, 33, 17)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2010, 10, 11)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 3, 0, 56, 19)

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

	fake.day_of_week()
	# 'Sunday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 12, 4, 20, 59, 2)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 3, 15, 11, 46, 57)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2006-09-16'

	fake.am_pm()
	# 'AM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2019, 5, 15, 4, 20, 49)

	fake.date_object(end_datetime=None)
	# datetime.date(1978, 5, 3)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1980-06-14T15:31:38'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2006, 4, 26)

	fake.month()
	# '07'

	fake.year()
	# '2005'

	fake.day_of_month()
	# '03'

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

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

	fake.century()
	# u'II'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1942, 4, 16)

	fake.time_object(end_datetime=None)
	# datetime.time(6, 17, 22)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2019, 5, 3, 16, 38, 50)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2005, 11, 5, 11, 58, 13)

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

	fake.date_this_month(before_today=True, after_today=False)
	# datetime.date(2019, 5, 1)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2019, 5, 10, 8, 43, 16)

	fake.month_name()
	# 'February'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1914, 5, 15, 13, 42, 51)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(6653, 82795)

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

::

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

	fake.mime_type(category=None)
	# u'application/javascript'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/labore/et.csv'

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

	fake.file_name(category=None, extension=None)
	# u'harum.flac'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'manolejane@gmail.com'

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

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'janepopa@tabacu.com'

	fake.url(schemes=None)
	# u'https://www.eftimie.com/'

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

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

	fake.uri_extension()
	# u'.htm'

	fake.uri_page()
	# u'login'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'janenemes@cristea.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'popjohn@popescu.com'

	fake.domain_name(*args, **kwargs)
	# u'ionita.net'

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

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

	fake.slug(*args, **kwargs)
	# u'omnis-nihil-tenetur'

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

	fake.company_email(*args, **kwargs)
	# u'stanescujohn@stan.com'

	fake.uri()
	# u'http://www.stanescu.net/explore/home/'

	fake.ipv6(network=False)
	# '86b9:a002:96f7:3572:fab4:1641:b51e:dfdd'

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

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

	fake.mac_address()
	# u'd7:49:41:8d:3a:e7'

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

::

	fake.isbn10(separator="-")
	# u'0-88942-841-7'

	fake.isbn13(separator="-")
	# u'978-0-02-161081-5'

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

::

	fake.job()
	# 'Scientist, clinical (histocompatibility and immunogenetics)'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Ducimus reiciendis quis non. At laboriosam eaque.\nPariatur sequi consequuntur corporis temporibus odio aut asperiores. Vel earum suscipit itaque ea id.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Veniam delectus commodi eligendi laboriosam quasi quo enim. Numquam asperiores totam unde. Quas molestiae alias reiciendis placeat. Neque dolorem modi dolorum.',
	#     u'Suscipit vitae enim facere.',
	#     u'A nemo occaecati deleniti aliquam explicabo. A fugiat optio non aut quod. Architecto repellendus cum.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Sequi dignissimos at reprehenderit.',
	#     u'Maiores accusamus ratione a delectus aliquam quasi.',
	#     u'Sunt in temporibus est.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Similique exercitationem impedit laboriosam. Quod eius eum assumenda quae non dolorum.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'At numquam architecto laboriosam unde.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'Ea*P1DR4e!'

	fake.locale()
	# u'hne_IN'

	fake.binary(length=1048576)
	# bytearray(b'\xb8j\x82\xb1CC\x04\x1ac\xca\x07\x0b\xa3\x9b\x8cTDp\xd4b\x893\xf5\xf1\xaf\xb9#\x9fHEp&\x87\xd5\xca\x98X\x93\xf2\x0f\x95\x86\x17!\xa9\x98\x8d\xc8\xdc\xfc\xfa\x1cn]c:\xf4\x1c\x050\xaf\x97\xe7\x8e\xe7\xf3\xc5\xab\xb4\xa9\x9dN\xfd,\xab\xad>\xdc\xb7\xfbu\xcdv\x9aF\xf0p\x1a\xac\x9e\x19\x8bD\xf2Z\xd1\x0cb\xe4\x97T\xdb\n\xc8\xab\xc1v\x1f\xc2\x0bc(\xc8y_\xac}\x17\x8b\xf1\x9a\x1b\xaa\xf8\xb7WR\x8e\xda\xd4\x1f\x91<\x14\xca\xb6.\xf3\xfc\x0e\xfd\x97\xb3\x035h\t\x13\x11\x7f]\x91g\x15\x86b\xaf\xc60\xe3\xb2\x84-T?\xda\xda\xe5\x95!\xa2\xac\xc5\xc8\xcd\xd8S\x90|\x80D\xd4.)\x11qK6\xa7\xd0\x9c\xbb\xe4\x95F\x9c4B@%MO\xb8J\xb3\x17\x81\xcee*\x928fq\x99-\x128;@\xeas\xee\xean\xc6\x0e\x8e\xa4[\x88\xd4\xb9\x87\x0e\xcek5\x8a\xcc\r\xb0\xa7\x90q<U\xf5h\xeb.Q\xd4\xc1\x903\xd6\xdf)\xe1\xaf\xf1+l\xf4\xeaf\xb7\x8f7\x9f\n\xdf\x0bSB3\xff\xe3\x11\xd0\xa4\x82\xbc\xbb\x92\xe1\rT+\xec\xe2\xb2\xffi\x06\t\x8b\x84GFJ\xe6\xeb!6\xb4\xea\xda\xd6k\xd2d\xe2Pci\xad\xc7]\xc6\xf3eE4\xf57T>m\xb2\x11\x1aO,\xa8\xd5_\xb0\xad\xcd\xfe\x882N\xaf\x15\x1d\xe4=\x13\x82Y\xa3\xf3\x03\x88\x86\xd2\x03\x9aeC\xcf\xaa\xa3m\xc3Y\x01S\x0e(uW\x97e\x12g\x17T\x8c\xb6\xd5\x04\xe6\xf5R\xd8\x7f\xecC\xbe\xe7z\xd0\x81\xeb\x1c(<i9]\xdaC\x19\xa9\xb7=\xb6\xba\x8b\xe1O\xac\x84\x10\xaf\xad\xeaW\xe2\xf4\x8a\x12\xbe\x93/L$\x18\x0e\xd1\x1d~#\xe0\xe6\xc9\xc34\x86B\xc8\xd9vK\x02\xf3\x86\xf0\xb9<g\x84\xd09Q\x8fZ\xf80\x15\x1d\xd8\x84*\xc6^P\xe1u\r\x92T\xd5a\xf5$ o\x12\xa97\xd2\x1e\x0e\x14r\xbfRh\xd9\x1d1\xcc\xd8L3hs|/w\x8aKuClY\x9c\x92@CI\xa6y\xe3\xeei\xbbWB\x8d\x01c#\x06\xabK\x1f\xf6\xdfR\xe8~_\xdc-\xcdP\xba\x0b\x9e\xbf\xb76\xbb\xf9\xec\x96\xbc)\x9d\xcd\x84\x9a\x81K!"=\r\x8b\xad\x89G\x7f\xfa\xa9*\xe6\xc0\xc0\xf8\xf4\x0b\xdb:=rB9\xd2S\xc0\n.#\x1b\xeao\x1dj\x0bO\x03\xc7\x90\x9b\xf4cC\xc0 \xab\xe1\x0c\x9a\x80%\xcc\x19\x9e\xea\xc1dh\xf4\xfb\xd6\xef\xa8\x92$\xabn\xa6\xca\x04<\x1e\xfc\xebZV\xd4\x03\x02\x05\x83\t\xde\x8aD\xaf\x91\x03\xb9\x9e\x91&\x82#\xf2\xe4\xaa\xb3\xc7C|*\xd7{\xa2\xac\xc4\x0e\x81\xd8i\xf0\x99P\x08(RH\xad\xbd\x19\\\x91*n\xce\x1f\xb44\x9b\x04n$\xf1\x93\x00\xacr\x158{\xb6\x801h>\x15oA\xe0\xee`uA\xd4\x82\x98\xe6"\xd9K\xb8t\xe6rt\xa2]\xd3NS\x05\x99\xca\xb4\xafZ<[Z\x04\xc8\xfa\xac\xec\xcfQ8 \xc7\xe3d\xaf\xa11\x81\xda\xdb\\\xcdt\x11\xa2\xd9\x1b\x7f\xe75b\xbf\xf5u|\xf3F\x07D\xbc\x95\x97\x84\xcb\x05`\x81kD\xbd\x15:\x97\xd9\xc2(*\xbf\x12\xb4\xa89\x9c\x16\x99?\x88\x93\x01&\xc5\xfe\x0e\xfa\xa3\xeb\x17\x07l\x0er\xb6\xcb\xdc|\xad\x88?\x91&\xde\x83\xfd\xca\x07K$\r\xe5X\x1c\xebqb_(+\xb5me\xc2*\x90`|\xc0k.g\x98\x00\x8e6\x18>9NJO,,9\x843W\xccvT!\xd3\x99&\xb7\xf9bJ\xca\xbb\x8a\xca\x9f\xe0\xcd\x0b1l\xd2\x0f6\xce\x82\xa4\xe7\xf4#L\xeb\x164\xb5\'XV\x01B\x1eN\x86T0\x1b\xcd8\xb6\xf4[\x9b\x0f\x00\xb9l\xa6\xc1^\x8c\x8c\xf7\xebL\xfb\xe9\xd2\x12xcw\xc8\xdd\xca\xc7GR\xf3ZmsG\x8ao\x80SW\xf7&\xbf\xdf#\x90u\xafxi\x1f\xe1\x02\xd6rt\x82\x98\xf9c\xf6\xdd\xcd\x92\xc4\x81\xab\x81\x96\xbf,\xd9\x08\x82w\xf1\xcc\xdc\x9a\x03\xc7=/\x84\xf9\x9a6\n\x944x\xb0\x08\xe6\xf8VGC\xb4\xe4\xc6K\xdf')

	fake.md5(raw_output=False)
	# '5ed8c83b90a5d3f6e6709c5af5087219'

	fake.sha1(raw_output=False)
	# '94ef2d2229568df015160bc1c5107aa783dc564d'

	fake.null_boolean()
	# False

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

	fake.uuid4()
	# 'ece6616e-b154-cc6c-6537-96052b07ae89'

	fake.language_code()
	# u'mg'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Ababei'

	fake.name_female()
	# u'Paraschiva Stancu'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Jane Barbu'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'B\u0103nel Tabacu'

	fake.first_name()
	# u'John'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Darius'

	fake.first_name_female()
	# u'Dina'

	fake.last_name_female()
	# u'Mazilescu'

	fake.last_name()
	# u'Pop'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'1-817-671-3190x465'

	fake.msisdn()
	# '6191025954594'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'838 John Port\nLake John, KS 58933',
	#     'birthdate': datetime.date(1962, 7, 6),
	#     'mail': u'jane77@hotmail.com',
	#     'name': u'Rebeca Diaconescu',
	#     'sex': 'F',
	#     'username': u'aaneijane'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'7197 Preda Expressway Suite 674\nJanestad, OR 07537',
	#     'birthdate': datetime.date(2019, 3, 12),
	#     'blood_group': 'A-',
	#     'company': u'Tomescu, Popescu and Popa',
	#     'current_location': (Decimal('85.4072365'), Decimal('161.347046')),
	#     'job': 'Chief Marketing Officer',
	#     'mail': u'mpopa@yahoo.com',
	#     'name': u'Rica Victoria Florea',
	#     'residence': u'94724 Stan Lodge\nJohnberg, SC 82572-6243',
	#     'sex': 'F',
	#     'ssn': u'043-31-6200',
	#     'username': u'johnnistor',
	#     'website': [u'https://www.tabacu-nistor.info/', u'http://stan.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'JdJUvmZBFIgblzZqkCNw', u'XLOrYKballftKygiWSDY', u'lmazilescu@gmail.com', 7974, 390, u'puscasujohn@yahoo.com', u'QsEOPGnMRFyptoEnICDm', 618660524.0, -521.415, u'QvggWPhJXhnTtSkUsWLL', u'oWqNMGAKaPLcCHdddKCD', u'ldJEnxpLYjUHrTOkcBQd', u'lRiBHXOtjVIITYwvWxpf', 4126])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'john31@popa.com',
	#         u'https://www.pop.org/list/list/about/',
	#         u'ntWDsGbiwqtGtXEamjNL',
	#         u'peSmySZIQAOpqVzYvILu',
	#         datetime.datetime(1993, 6, 22, 2, 29, 7),
	#         u'dXKsytbUrFcsGXjgFbxB',
	#         u'wpCatwgxAOGEuVFrlGgp',
	#         u'KrmGVZFmgVPcNUWTYsKG',
	#         8593,
	#         u'http://nemes.com/'],
	#     {   u'aliquid': 7517,
	#         u'aperiam': -683755087464983.0,
	#         u'aspernatur': 4.505983415375,
	#         u'ea': u'ethLYgUCblfrCRbQJEHY',
	#         u'laboriosam': u'dLYUHLUxdCxmSUVAzwIk',
	#         u'magnam': Decimal('-64060.0'),
	#         u'quas': u'diaconescujohn@preda.com',
	#         u'reprehenderit': 3008,
	#         u'sequi': 4012,
	#         u'voluptatum': 6030},
	#     {   u'accusamus': {   5: 6242,
	#                           6: [   69124369511388.0,
	#                                  datetime.datetime(2015, 6, 3, 23, 17, 51),
	#                                  9575],
	#                           7: {   5: 1492,
	#                                  6: u'AsbMmjajeMqSuYQHYWjh',
	#                                  7: [   u'http://www.pop.com/tags/wp-content/search/category/',
	#                                         u'https://www.marin-oprea.com/index/']}},
	#         u'dignissimos': {   0: 1228,
	#                             1: [   u'nistorjohn@hotmail.com',
	#                                    u'http://nemes-georgescu.com/search/list/index/',
	#                                    u'cRIzdmmDLDpavdlcGeMK'],
	#                             2: {   0: u'fyCKbjNoNAZdlEHfocsY',
	#                                    1: u'lwFZmxFRhLazrGiOMphx',
	#                                    2: [   Decimal('-9480035666.71'),
	#                                           Decimal('-44624025.4703')]}},
	#         u'error': {   3: u'dSYPKxfoTsvbHyUqzocL',
	#                       4: [   7764,
	#                              u'xguhQAUWLdFjVStBPoqf',
	#                              u'jane97@gmail.com'],
	#                       5: {   3: u'vqxGfUUeFGwtEkazGTEv',
	#                              4: u'XydjWiuoABRpbcMvOLaE',
	#                              5: [5787, Decimal('541792488.681')]}},
	#         u'eveniet': {   7: -4.18629919,
	#                         8: [1921, 9656, Decimal('-1.11769374239E+14')],
	#                         9: {   7: u'mbxRrgHYmJQYVJBSUvHn',
	#                                8: Decimal('-600.6813569'),
	#                                9: [   u'http://ionita.info/',
	#                                       u'https://www.mocanu-stancu.net/']}},
	#         u'facilis': {   9: u'nZXExgbHhlnNgqpiYOgg',
	#                         10: [   datetime.datetime(2002, 11, 12, 20, 7, 44),
	#                                 -56.9326,
	#                                 datetime.datetime(2000, 5, 22, 23, 37, 32)],
	#                         11: {   9: u'MfPvEPOluhIaUguBPeok',
	#                                 10: u'sbmlMyNSlKxbLoLKAGTT',
	#                                 11: [   u'estoica@hotmail.com',
	#                                         u'johnstanescu@yahoo.com']}},
	#         u'iste': {   8: 4947,
	#                      9: [   u'xMkfRZuYDrEGtgyRLvWk',
	#                             u'ppGWqWfBtICwsaXlrGUr',
	#                             u'ufYgFteDVBDUcwvKLEes'],
	#                      10: {   8: u'EEOzXWXBAtxgakoljtdV',
	#                              9: 7352,
	#                              10: [7394, -7597034.8273]}},
	#         u'libero': {   4: u'dzDvMFjujZPgZsvBhiTw',
	#                        5: [   u'http://popa-stancu.com/privacy/',
	#                               u'mPICjivelBIXgPugWnhe',
	#                               u'DdTmaDtTkWUYFcBrMihN'],
	#                        6: {   4: u'fJiDuPaKDbGYyjzqpxDY',
	#                               5: u'marinjane@diaconu.org',
	#                               6: [7736, u'MJUgHersGaXvhwxpQecV']}},
	#         u'nisi': {   1: u'https://www.stan.com/main/tag/homepage/',
	#                      2: [   datetime.datetime(1994, 8, 31, 10, 7, 48),
	#                             u'XGIcITAuuLFftaafJPBE',
	#                             u'mZEHTuAbTxKtOmOAkbVj'],
	#                      3: {   1: u'http://toma-georgescu.org/tag/explore/tag/index.htm',
	#                             2: u'diaconescujohn@hotmail.com',
	#                             3: [   u'http://www.nita.biz/login/',
	#                                    u'kVPyoscwhFRBDGjsLeHS']}},
	#         u'possimus': {   6: -6.6685,
	#                          7: [   u'http://manole.com/faq/',
	#                                 u'https://www.ene.com/login/',
	#                                 u'oaAFpAepaZeZnGDFVKlm'],
	#                          8: {   6: u'lqgNYbaaLqQtfPAHjfEg',
	#                                 7: 3458,
	#                                 8: [3241, Decimal('-7083093.28854')]}},
	#         u'quia': {   2: 4.495519413,
	#                      3: [-776717898267.85, 343763888.37, 91474074988.94],
	#                      4: {   2: u'http://pop.biz/search/categories/category/',
	#                             3: u'john57@hotmail.com',
	#                             4: [   Decimal('422919187803'),
	#                                    datetime.datetime(1991, 5, 1, 14, 9, 22)]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   3533,
	#     u'mcPicWZYPbOpcEZyusQe',
	#     u'https://tabacu-dima.net/',
	#     u'rBeQKBKkzzjdbnotLWFq',
	#     u'jane71@hotmail.com',
	#     9245,
	#     912]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'uDFPjqoUMmefZbCMnNmm',
	#     u'jFBPGMgbEEaGXyAtiBke',
	#     datetime.datetime(2007, 1, 20, 10, 1, 42),
	#     u'http://oprea.org/wp-content/login/',
	#     datetime.datetime(1978, 8, 18, 15, 58, 54),
	#     35.6205,
	#     8469)

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([5059, u'sfVxQDFKmDfRZaLLbkWd', u'oKrfYAzIuhrtOrckcMDQ', 6412, u'vpreda@stanescu-marin.com', 691599.0, u'janemarin@gmail.com', datetime.datetime(1991, 4, 30, 7, 1, 53), u'suciujohn@ionita.com', u'EqDuOYnjlHomHkWjFNtN', datetime.datetime(1989, 12, 9, 11, 3, 12), u'esPqRKhfFQvoyWPUHZfL', u'leraNuORRalNUNTMowqd'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'dolore': u'http://ionescu.com/privacy/',
	#     u'dolorum': Decimal('6075471262.5'),
	#     u'ex': u'tpuscasu@yahoo.com',
	#     u'impedit': u'TLeigGadPnIGaXzrWPOo',
	#     u'in': 8680,
	#     u'non': u'tqhOrFZVeccdEfOsdKys',
	#     u'quo': u'naZdkIzjkqokrqjkKhKJ',
	#     u'voluptate': 9959}

	fake.pyint()
	# 5308

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'232-18-6494'

	fake.ein()
	# u'71-0803683'

	fake.itin()
	# u'929-91-3606'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 5.2; sd-IN; rv:1.9.0.20) Gecko/2017-04-05 21:52:43 Firefox/3.6.15'

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

	fake.opera()
	# u'Opera/8.65.(X11; Linux i686; is-IS) Presto/2.9.190 Version/10.00'

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

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Trident/3.0)'

	fake.user_agent()
	# u'Mozilla/5.0 (Windows NT 6.0; sr-ME; rv:1.9.2.20) Gecko/2012-05-29 23:29:05 Firefox/4.0'

	fake.linux_processor()
	# u'x86_64'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5362 (KHTML, like Gecko) Chrome/60.0.844.0 Safari/5362'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_11_8 rv:4.0; ml-IN) AppleWebKit/535.36.1 (KHTML, like Gecko) Version/5.0.4 Safari/535.36.1'
