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

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

::

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

	fake.building_number()
	# u'2217'

	fake.street_address()
	# u'771 Jane Summit'

	fake.postalcode_plus4()
	# u'81171-6898'

	fake.city_prefix()
	# u'West'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'Predaberg'

	fake.zipcode_plus4()
	# u'37939-4034'

	fake.state_abbr()
	# u'PW'

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

	fake.street_suffix()
	# u'Road'

	fake.city_suffix()
	# u'ville'

	fake.military_dpo()
	# u'Unit 1675 Box 0396'

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

	fake.country()
	# u'Algeria'

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

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

	fake.postalcode()
	# u'00733'

	fake.address()
	# u'30595 Jane Estate\nJaneburgh, CT 16972-0513'

	fake.state()
	# u'Virginia'

	fake.military_state()
	# u'AP'

	fake.street_name()
	# u'Jane Curve'

	fake.zipcode()
	# u'94983'

	fake.postcode()
	# u'23779-1584'

	fake.military_apo()
	# u'PSC 0110, Box 1882'

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

::

	fake.license_plate()
	# u'HRQ 932'

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

::

	fake.bban()
	# 'IROF6512726820395'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB19QBBV3506206945537'

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

::

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

	fake.ean13()
	# u'5976520795533'

	fake.ean8()
	# u'42926290'

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

::

	fake.rgb_css_color()
	# u'rgb(113,81,220)'

	fake.color_name()
	# u'RosyBrown'

	fake.rgb_color()
	# u'144,52,163'

	fake.safe_hex_color()
	# u'#66cc00'

	fake.safe_color_name()
	# u'yellow'

	fake.hex_color()
	# u'#e56e15'

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

::

	fake.company()
	# u'Gheorghiu-Manole'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Ameliorated 24hour Local Area Network'

	fake.bs()
	# u'deliver e-business interfaces'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Maestro\nJohn Cristea\n571123812257 02/23\nCVV: 557\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'BCH'

	fake.currency_code()
	# 'MGA'

	fake.currency_name()
	# 'United Arab Emirates dirham'

	fake.cryptocurrency_name()
	# 'Zclassic'

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

	fake.currency()
	# ('IRR', 'Iranian rial')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 18, 9, 36, 46)

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

	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(2001, 2, 7, 3, 0, 43)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2012, 7, 27)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 7, 16, 56, 11)

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

	fake.day_of_week()
	# 'Friday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 12, 20, 10, 43, 18)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 12, 25, 17, 15, 2)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1994-03-07'

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 10, 57, 30)

	fake.date_object(end_datetime=None)
	# datetime.date(1985, 5, 9)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1973-09-19T02:29:31'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2011, 12, 19)

	fake.month()
	# '11'

	fake.year()
	# '1970'

	fake.day_of_month()
	# '05'

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

	fake.timezone()
	# u'Indian/Antananarivo'

	fake.century()
	# u'XIV'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1981, 8, 22)

	fake.time_object(end_datetime=None)
	# datetime.time(22, 24, 49)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 2, 28, 16, 31, 39)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1972, 4, 14, 18, 37, 36)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '06:36:47'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 7, 13, 56, 4)

	fake.month_name()
	# 'July'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(139, 12, 28, 1, 47, 29)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(15174, 57112)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/deleniti/deleniti.avi'

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

	fake.file_name(category=None, extension=None)
	# u'dicta.wav'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'janeene@yahoo.com'

	fake.image_url(width=None, height=None)
	# u'https://placeholdit.imgix.net/~text?txtsize=55&txt=420x168&w=420&h=168'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'johnstanescu@yahoo.com'

	fake.url(schemes=None)
	# u'https://tabacu-voinea.biz/'

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'homepage'

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

	fake.safe_email(*args, **kwargs)
	# u'eftimiejohn@example.net'

	fake.ascii_email(*args, **kwargs)
	# 'johnflorea@ardelean.com'

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'john63@dinu.org'

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

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

	fake.domain_word(*args, **kwargs)
	# u'albu-pop'

	fake.slug(*args, **kwargs)
	# u'sapiente-nobis'

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

	fake.company_email(*args, **kwargs)
	# u'janealbu@suciu-stanescu.com'

	fake.uri()
	# u'https://suciu-stoica.com/posts/login/'

	fake.ipv6(network=False)
	# '1e59:a51b:367b:726:1201:e136:8e89:c234'

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

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

	fake.mac_address()
	# u'6f:33:c4:73:2b:34'

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

::

	fake.isbn10(separator="-")
	# u'1-186-12781-3'

	fake.isbn13(separator="-")
	# u'978-0-12-098345-2'

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

::

	fake.job()
	# 'Mechanical engineer'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Porro fugit voluptatum quis ducimus. Assumenda cumque suscipit.\nRepellendus consectetur occaecati natus rem. Ipsam tempora consequatur incidunt distinctio in doloribus optio.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Fuga odit saepe accusamus itaque. Ipsam fugit in autem magni.',
	#     u'Blanditiis ratione quia quam corporis.',
	#     u'Fugit ullam accusamus excepturi voluptatem reprehenderit veritatis quibusdam. Minima placeat nobis accusamus ullam voluptas.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Reiciendis vitae atque cupiditate voluptatum atque voluptates.',
	#     u'Sint eveniet velit odio cum perspiciatis repudiandae.',
	#     u'Quae hic unde quod.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Dolorum nostrum deleniti deserunt ea temporibus. Recusandae ipsa nostrum natus dolores molestiae. Dicta provident ad necessitatibus.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Tenetur nam itaque culpa quo aspernatur.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'^ij&6*Qf32'

	fake.locale()
	# u'am_ET'

	fake.binary(length=1048576)
	# bytearray(b'-\xd4;\xd9sK\xf6*\xb5X&0\xa2I\xb8\xe7|\xfd%F\xc8,! 8W\x1b\x9fQ\xee\x9f\xa0_Px\xa0\xdf_K\xc7\xf3#\xad~\x9a]\xd3\x89[\x82\xab\x00\x9c\xff,<\xd6\xc2\xd3O\xe8\xa2\xc5\x80\x03A~\xe2\xe0\x83~\xba\xb9w\xf8k@\xf84>\xdf\x0e\x19\xf5Z\xd5\x06\x12\x8b\x7f\x91A\xcc\x91\x88\xfa/\x10-\x07\x06\x19\x922\x03"\x1a%\x06\x9dB\x08r\x89Xzu~\x1aj\xc8`"\xffBy\xb4\t\x19e\xc1\xbaOR+f-\x82\\\x07\x9d\x9e\xb2njhK\x99<7\xac\xd4\xb0g=n\x8a\xfb\t\xae\xc8\xe4$\x84\x8e\x82 \xb8\x0f\x19`\xa8\xe8,\xba\x1a\x0b%\x1aT,e:\x9do\xdeu\x8f\x86\xaa6^\xaa\xba\xc5m\xe6WV\x1f\x8d\x92&q1M\x0ee\x0f\x8c\xc6&\x9e\\\xe1*\xc7\x1aP\x98\x02\xc0J\xce\x82\xd9\x8f\x17?)\xa8\xef\x96\xa0\xab6\xb5\xdbj\x98\x16\xb5\x18\x1e\x10<\xc2c\xeac_y,\x18\x0e<\x0c(i\xce\x9c>8-u\x11\xc0*yuG\xddtR\xf2Z(\xbf\x88u\xb8\x89\xb7n3\xd8\xaf\x13\xb91\xb6\xde\x17\xa7\xe7x}r\xd3\x90e+i\xb1\x15\xf1\x0eb\x96.\xd4cz5r\xd5\xd9\x05t\x0ee\xe6&,\xe3\xf1a\xf7\x1d\x0b\xb0\xed\xdd\x12\x9d\xb8d"\xbbO4\x8eU\xeatZ\x13\x87tz\xf2\xc0\xfe\xe1y\x1f@oa\x89\xd5\xc9_\xb0S\xa9\xdf[\xa1f\xb8\xd2\xaf\x11\x9c\xad\x10\x04\xfb|I|~\x1f\xc4\xe3\xb4\x92Rf\xe0E\xe2\x80Rc+\x1a\x05\xb5\xf6\xf9U\x8b\x03\x12\xf8)\xd9\xdd2\xb17\xaa\x8e;\x83\x117\xdb\x92V\x86\xf7\xfa\xfc[\xa9\x97-\x14N\xee\x08!\x99V7\x98\nz\xd9\xd0\xfd\x83m">\x1c/\xb9\xc2T\xd4\x17\x98i\xc6\xeb34\x18\x9b\xf0v\xe1\xc1\x8c0\xbeCV;\xb0\x9d\x85\x87f\x1c\x1aP\xe1\x8b\x9a[\xc5\x1d\x0f\x11}\xac\x85\xbd$\xdbZg\xec\x05K\xc9\x82\x9e\x89\x814\x94\x07G\xb6/\x15\x03\x90x\xd2\x1b-b\t\x17`=\x93p\xaf!@\xf9\x1e\xeaJ\xec\xf1C\xfa\xb3\xe0{\xa8e\xe1\xb7w\x87WB:\xf2*K\xce\xe5-\xb0\x91!\xda\xb38G\xd2D\x08\xac}~\xaa\xdf\x8cGL1\xa1\xb5\x93a\xca\xcb55\x1a\xa7V\x93O\xaf\xb1{\x19m\xbdk\xad\xda\xd9\x1f\x02p\xba\xd4\x8b\x89\x95\xa3\xdc\xc4}M\x90\xf3\x81\x82u\x9a\x81\x10r>\xde\xfa\xb9\xfd\xd3\x17\xf74\xa2\x16\xb2\xb3\xce\xd5\xdf\xbb/D\xf0\xc7\x8c\xdeC\x01[\xcbF\x13\x82|\x97}\x8f\x87f\x89\xbe>\x94\xa3\xab2\xea)\xcc\xfdJ\x82\xc9\x91\xb1\xfc\xd0\x03xH$\x8e\xc7\xfe0icIT}\xa2\x80\xe8\xcd\x12\xbb\xea\xc6\'\xfa\x03#\xc4`W\x10\xae\xa2\xad\x1b\xcd\xb1;\x19_\x92K\x05^,ts\xfa\xf5\xb9c\x1e\xf0~\xa7\x96~\xac\xf5\xc9@\x1e\xc9\x80\xa5*A\xba\xf9Y\x15K\x14\x8c\x84\x97\x12\xe0ZG~\\\xcd\x91\'~\xd8\x99y\x1c]\xa6\xe6\xf5\xdb\x04\xed\x87\r\xe6L\xbb\xfd\xa2\xe6\x8a\xb1X\x04\xb4x")E\xf8\xb5\x0b\x80\xf6\xd1wV:\xc1\x7f?\xcaY\xee\xa0cTS\x06\xce\xc5rJ\x88\xa7\xfa(\x88\\\xc0\x889\x8e&\xdf\xf7\x08y5\x93P8H~{\xd0\x8d_n\xebQEU3L4\xf3\xc0\xd3!\'6\xc0D:\xb1\xb1@UI\xb0Q\x86\xdd\x07\xf2\x969\xcd\xd86\x15\x0f\n\x8f\xf9\xca\xd0)\x93\x98\xf7\xb8\x96\xbbj\x9d\x9b=S+M\x9c\x80\xb22\xb8\x97\xb3\xb2XV\xe0sY\xd6*.\xd9\xa7g\x98\xca\xcb\xed\x19J\xdeE\xdb\x98~\x94\xc5]\x83 \xecr\x8d\xcb\xb5u\xe9@4.WZ\x1cB\xdc\xf7<6\x02\x93\x13\xb6\x0b\xb1D\\C\x07\x95\x15\x8e?-\xcd\x8d\x0fr\xd0\xceb[\x81\x92}\xb2\x0c\xb6]\x93$[\xdaX<\xdd\xdc\xa8>\xc3L\x11J\r\x94bw\x12\x7fK7\xdc\x9f\xc5q#z\xa4siW\x95r\xe5o\x03]\xdbGu\xd9\xc7\xb4\x8a\x0e\xc2juoE,W\xdb')

	fake.md5(raw_output=False)
	# '887a4e7c8b6b78a9ed9fcbae45c532f4'

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

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '1a7839e9e0e6a755b2640f4c6184bd4ee0b43dc634712c920721277d113c05e5'

	fake.uuid4()
	# 'a6b74148-0131-7658-8198-057396f377a9'

	fake.language_code()
	# u'ne'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Stan'

	fake.name_female()
	# u'Octavia Minodora Marin'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Jane Popa'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Anatolie Florea'

	fake.first_name()
	# u'Jane'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Gregorian'

	fake.first_name_female()
	# u'Aurelia'

	fake.last_name_female()
	# u'Stoica'

	fake.last_name()
	# u'Cristea'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'(454)504-7272'

	fake.msisdn()
	# '9139375654787'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'8307 Mazilescu Bridge Suite 325\nNorth Jane, FL 96558',
	#     'birthdate': datetime.date(2011, 9, 25),
	#     'mail': u'dinujane@hotmail.com',
	#     'name': u'Vasilic\u0103 Dorinel Preda',
	#     'sex': 'M',
	#     'username': u'jane87'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'67901 Jane Valley Apt. 089\nStancutown, MI 72443-3478',
	#     'birthdate': datetime.date(1974, 5, 3),
	#     'blood_group': 'AB-',
	#     'company': u'Popa, St\u0103nescu and Tabacu',
	#     'current_location': (Decimal('22.425463'), Decimal('-173.073260')),
	#     'job': 'Television floor manager',
	#     'mail': u'diaconujane@hotmail.com',
	#     'name': u'Eleonora Suciu',
	#     'residence': u'45633 John Road Apt. 716\nJohnhaven, NE 10562-9190',
	#     'sex': 'F',
	#     'ssn': u'182-79-1140',
	#     'username': u'janeionita',
	#     'website': [u'https://manole-dochioiu.com/', u'http://marin.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'https://www.dima.net/explore/app/author.jsp', 353, u'obEyXkOSFgBXPCoQhhpk', Decimal('8269992480.14'), datetime.datetime(1982, 2, 25, 3, 18, 4), datetime.datetime(2017, 9, 2, 14, 39, 8), 1167, u'qHqOjXXtbtbYAIFCCLaE', u'nistorjane@hotmail.com', u'https://ionescu.com/explore/blog/category/terms.php', u'WPoTPmGobeYJYOxNPFJw'])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'NjcxxJlogxKRuvjxHMEy',
	#         u'rdHGHZbzGwySuiYGWlbo',
	#         9.7079642393224,
	#         u'yYPqbevdghZeAsHEFbsA',
	#         u'https://georgescu-stoica.com/homepage.jsp',
	#         u'KsSKCBYwmuuplxKnLgtF',
	#         u'IybRHbQXYMmbfXslbgGx',
	#         2961229607.44041,
	#         3846,
	#         u'tLRUqxPUAVWsNBOgYIvG'],
	#     {   u'blanditiis': 4668,
	#         u'culpa': 8993,
	#         u'debitis': Decimal('-9.16395858973E+13'),
	#         u'enim': Decimal('-71.88766635'),
	#         u'est': u'HElgjvgoXliPaPkkMERT',
	#         u'ex': 5498,
	#         u'excepturi': u'john05@suciu.com',
	#         u'quod': u'https://florea.com/tag/main/home.jsp',
	#         u'vel': datetime.datetime(2011, 12, 13, 7, 20, 12)},
	#     {   u'aperiam': {   9: u'GKMnVwwpALjZnPsXcSWb',
	#                         10: [   u'https://www.puscasu.com/',
	#                                 Decimal('207.142456'),
	#                                 2931],
	#                         11: {   9: 3733,
	#                                 10: Decimal('2944786695.22'),
	#                                 11: [   u'VyllgFGRmggmBrXxpMXa',
	#                                         Decimal('-4242832.31634')]}},
	#         u'asperiores': {   5: u'john77@gmail.com',
	#                            6: [   u'http://www.nemes-dobre.net/tag/search/about.html',
	#                                   u'jdFuXyGIBIaeqlWLWiHM',
	#                                   u'https://tudor-dochioiu.org/category/tag/explore/login/'],
	#                            7: {   5: datetime.datetime(1992, 11, 20, 20, 17, 56),
	#                                   6: datetime.datetime(1984, 11, 19, 12, 22, 51),
	#                                   7: [   datetime.datetime(2009, 5, 26, 13, 22, 26),
	#                                          u'eftimiejane@ionita-florea.com']}},
	#         u'commodi': {   8: -14731046542.0,
	#                         9: [   Decimal('-4.36697180752E+14'),
	#                                u'http://dinu-tudor.com/blog/tags/category/',
	#                                u'https://stanescu-oprea.org/'],
	#                         10: {   8: u'https://www.stan.com/categories/tag/main/',
	#                                 9: u'TiZDQKiAzlNqqMOSDBMp',
	#                                 10: [   datetime.datetime(1971, 5, 25, 10, 0, 58),
	#                                         u'iXcIfIRRkLxDDXDdxyuC']}},
	#         u'cum': {   1: u'aOplJcBtmgOuWBHaqzHp',
	#                     2: [   u'https://www.dinu-nistor.org/search/tag/tag/main/',
	#                            u'xNGGLOTiaeOyvgdZGThf',
	#                            9852],
	#                     3: {   1: 7038,
	#                            2: u'janediaconu@hotmail.com',
	#                            3: [   u'MqvRkEnZandsSoCYefcI',
	#                                   datetime.datetime(1997, 8, 12, 9, 29, 45)]}},
	#         u'impedit': {   7: u'FHOzTiUNGyTDRmEcsmXM',
	#                         8: [   Decimal('6292639456.6'),
	#                                u'UAtCOKtxVsJeVfGQWAUa',
	#                                u'aaneijane@diaconu.biz'],
	#                         9: {   7: u'ababeijohn@hotmail.com',
	#                                8: u'kwRaJGHCmxiDTzLoWGjp',
	#                                9: [   datetime.datetime(1982, 9, 18, 21, 4, 13),
	#                                       u'tXcpmJkRGJoFRbswBPQa']}},
	#         u'ipsum': {   6: u'UsdGQhkZNEBNWItGGNJr',
	#                       7: [   1778,
	#                              u'uxKKhXVeCrWblKPoEzNy',
	#                              u'http://www.stoica.biz/register.html'],
	#                       8: {   6: u'https://www.popa.net/home.asp',
	#                              7: -80388233598355.7,
	#                              8: [   datetime.datetime(2007, 2, 10, 1, 32, 54),
	#                                     Decimal('6668.2250249')]}},
	#         u'natus': {   4: datetime.datetime(1977, 12, 18, 4, 39, 35),
	#                       5: [8080, 80766597.1, u'KixRJTwygBDKcmbYfodJ'],
	#                       6: {   4: u'kCOlpMbvtTOulPVvSKdC',
	#                              5: u'MfmiCwqpRzvZFOXifTVU',
	#                              6: [u'popescujane@hotmail.com', 7680]}},
	#         u'nesciunt': {   2: datetime.datetime(1994, 8, 8, 6, 45, 39),
	#                          3: [   u'BOIDHBpNMnpGwtsmoxUl',
	#                                 u'AiFBWcaJxOdDXWuLZVXR',
	#                                 -4750339.2],
	#                          4: {   2: u'john86@florea-albu.info',
	#                                 3: 3189,
	#                                 4: [   u'DUCWlhowyZpKEeOhfQNN',
	#                                        datetime.datetime(2010, 3, 22, 12, 31, 13)]}},
	#         u'pariatur': {   0: u'RjQjljzySBQepqQruTuo',
	#                          1: [   3856,
	#                                 u'WRIBxypXqFMQxUyQRqsv',
	#                                 u'vwyibMCCFMLShZkxgbyg'],
	#                          2: {   0: datetime.datetime(2015, 12, 2, 11, 20, 37),
	#                                 1: u'CdCpcyaNDPnEmRSJLvSq',
	#                                 2: [   Decimal('4.15001652305E+13'),
	#                                        u'PkpXGUJGYVaSafALECpu']}},
	#         u'veniam': {   3: 85904674.96221,
	#                        4: [   9752,
	#                               u'xdochioiu@dima.net',
	#                               u'SGtvhvhYaNHMgJkuoLpY'],
	#                        5: {   3: u'https://www.eftimie-ardelean.biz/tag/search.html',
	#                               4: -467372410007.0,
	#                               5: [   u'johnmazilescu@diaconescu.com',
	#                                      u'QmczSgfMSGAnZjdXNGZD']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'CpvpHIdDChhaUxblBNwk',
	#     u'zzfVmMKHXsvuAvmwykWw',
	#     -703526852599.253,
	#     -1266602.53232189,
	#     u'VmeOLMTFVYYHFpTcEuDd',
	#     u'iUpboKbnjKLZkOsXYcEN',
	#     u'zjDKHxxxSaQRgRWFQKee',
	#     3606]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'xbTScDUlWvJgntQlWAFX',
	#     Decimal('96659500.43'),
	#     u'aDcIlMXKSDqMvkdsnGAR',
	#     u'zIfZwaZRBJzSfHdWKZWo',
	#     u'fZBVTfhSrlpmInLtWuSx',
	#     u'http://florea-nemes.org/about.htm',
	#     -7.67,
	#     u'gUhcLlbpWOjGGBZWmrvF')

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'VEjASaSGcSeYyFvWxGuS', u'lRiYwpGsRgfDLgCCzDVd', 2033, u'gfffDoiwsInvuIwpjFhH', u'fbgtYwQgXQqpAIwLOEej', u'johnpopescu@hotmail.com', u'OFDnXBEoAJcXsMCtjhoq', 7801, u'pdbBAPbAaqZbtmmhwTdJ'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'assumenda': u'qPILjgIYmIjBUXQdjVOh',
	#     u'eligendi': 6733,
	#     u'possimus': datetime.datetime(1977, 8, 26, 5, 48, 41),
	#     u'quia': datetime.datetime(2013, 4, 25, 11, 18, 21),
	#     u'quibusdam': u'wuOYjfYdmIBLuqdhWPRX',
	#     u'recusandae': u'FZccjNgfpFwhVaRvRzmA',
	#     u'sed': u'sPQcebrGNPytyIEyiFBX'}

	fake.pyint()
	# 7100

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'706-86-0176'

	fake.ein()
	# u'91-1960304'

	fake.itin()
	# u'941-81-7023'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_2; rv:1.9.2.20) Gecko/2016-01-12 19:06:38 Firefox/3.6.2'

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

	fake.opera()
	# u'Opera/8.50.(Windows 98; ku-TR) Presto/2.9.170 Version/12.00'

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

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 9.0; Windows 95; Trident/5.1)'

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

	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_8_1) AppleWebKit/5320 (KHTML, like Gecko) Chrome/63.0.809.0 Safari/5320'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_4 rv:6.0; ur-PK) AppleWebKit/534.16.2 (KHTML, like Gecko) Version/5.1 Safari/534.16.2'
