
Language ru_RU
===============

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

::

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

	fake.building_number()
	# u'575'

	fake.street_address()
	# u'0817 \u0411\u0440\u0430\u0433\u0438\u043d\u0430 Wall Suite 417'

	fake.postalcode_plus4()
	# u'84684-8041'

	fake.city_prefix()
	# u'Port'

	fake.military_ship()
	# u'USCGC'

	fake.country_code()
	# u'CL'

	fake.city()
	# u'\u041e\u0432\u0447\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u0430ville'

	fake.zipcode_plus4()
	# u'42101-5229'

	fake.state_abbr()
	# u'IA'

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

	fake.street_suffix()
	# u'Causeway'

	fake.city_suffix()
	# u'port'

	fake.military_dpo()
	# u'Unit 6526 Box 1238'

	fake.country()
	# u'Nicaragua'

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

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

	fake.postalcode()
	# u'06709'

	fake.address()
	# u'8829 \u0417\u0430\u0445\u0430\u0440\u043e\u0432 Ports Suite 532\nWest \u0410\u043b\u0435\u043a\u0441\u0435\u0439, GU 43013'

	fake.state()
	# u'Minnesota'

	fake.military_state()
	# u'AE'

	fake.street_name()
	# u'\u041a\u0430\u043f\u0443\u0441\u0442\u0438\u043d Spur'

	fake.zipcode()
	# u'26750'

	fake.postcode()
	# u'73458-6020'

	fake.military_apo()
	# u'PSC 2536, Box 4384'

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

::

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

	fake.ean13()
	# u'0399488023954'

	fake.ean8()
	# u'99535124'

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

::

	fake.rgb_css_color()
	# u'rgb(198,251,89)'

	fake.color_name()
	# u'Brown'

	fake.rgb_color_list()
	# (233, 160, 149)

	fake.rgb_color()
	# u'244,163,201'

	fake.safe_hex_color()
	# u'#dd8800'

	fake.safe_color_name()
	# u'yellow'

	fake.hex_color()
	# u'#4abc37'

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

::

	fake.company()
	# u'\u041a\u0430\u0440\u043f\u043e\u0432\u0430, \u0421\u0443\u0445\u0430\u043d\u043e\u0432 and \u0420\u044f\u0431\u043e\u0432\u0430'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Synergistic tangible service-desk'

	fake.bs()
	# u'seize bleeding-edge interfaces'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'American Express\n\u041c\u0435\u0447\u0438\u0441\u043b\u0430\u0432 \u0411\u0435\u043b\u044f\u043a\u043e\u0432\n340982378120362 08/21\nCID: 4004\n'

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

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

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

::

	fake.currency_code()
	# 'KPW'

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

::

	fake.date_time_ad()
	# datetime.datetime(1617, 5, 9, 13, 3, 27)

	fake.month()
	# '03'

	fake.am_pm()
	# 'PM'

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

	fake.iso8601()
	# '1990-05-11T10:33:17'

	fake.date_time()
	# datetime(1977, 12, 17, 0, 12, 8)

	fake.month_name()
	# 'September'

	fake.date_time_this_year(before_now=True, after_now=False)
	# datetime(2015, 6, 7, 21, 13, 17)

	fake.unix_time()
	# 1056625490

	fake.day_of_week()
	# 'Saturday'

	fake.day_of_month()
	# '08'

	fake.time(pattern="%H:%M:%S")
	# '03:30:35'

	fake.date_time_between(start_date="-30y", end_date="now")
	# datetime(2014, 4, 14, 6, 23, 39)

	fake.date_time_this_month(before_now=True, after_now=False)
	# datetime(2015, 11, 10, 3, 38, 1)

	fake.year()
	# '1981'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None)
	# datetime(2015, 11, 30, 15, 31, 26)

	fake.date_time_this_century(before_now=True, after_now=False)
	# datetime(2011, 4, 13, 16, 50, 9)

	fake.date_time_this_decade(before_now=True, after_now=False)
	# datetime(2015, 11, 2, 0, 11, 5)

	fake.century()
	# u'IV'

	fake.date(pattern="%Y-%m-%d")
	# '2014-09-22'

	fake.time_delta()
	# datetime.timedelta(10445, 602)

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

::

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

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

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

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

::

	fake.ipv4()
	# u'66.41.190.210'

	fake.url()
	# u'http://.com/'

	fake.company_email()
	# u'.@.com'

	fake.uri()
	# u'http://www..org/tag/category.asp'

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

	fake.image_url(width=None, height=None)
	# u'http://dummyimage.com/1024x224'

	fake.tld()
	# u'com'

	fake.free_email()
	# u'c@yahoo.com'

	fake.slug(*args, **kwargs)
	# u'animi-qui-est-nihil'

	fake.free_email_domain()
	# u'hotmail.com'

	fake.domain_name()
	# u'.com'

	fake.uri_extension()
	# u'.htm'

	fake.ipv6()
	# u'2845:04a4:80db:56b2:d48d:5417:5fb3:5bdf'

	fake.safe_email()
	# u'43@example.org'

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

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

	fake.email()
	# u'83@.com'

	fake.uri_page()
	# u'index'

	fake.mac_address()
	# u'0c:78:e4:be:db:ca'

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

::

	fake.job()
	# u'\u0413\u0440\u0435\u043d\u0430\u0434\u0435\u0440'

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

::

	fake.text(max_nb_chars=200)
	# u'\u0401\u043d\u0430\u043d\u0439 \u043a\u0432\u044e\u043e \u0434\u044b\u0444\u044f\u043d\u0438\u044d\u0431\u0430\u0436 \u0438\u043d\u0442\u044b\u043b\u043b\u044c\u044d\u0433\u044d\u0431\u0430\u0442. \u041a\u043e\u043d\u0436\u0442\u0435\u0442\u0443\u0442\u043e \u0442\u044b \u043b\u0430\u0442\u0438\u043d\u044b \u0433\u0440\u0430\u044d\u043a\u043e \u043a\u0432\u0443\u0439 \u0442\u044b \u0445\u0430\u0436 \u0430\u0442\u043e\u043c\u043e\u0440\u044e\u043c. \u041a\u0432\u044e\u043e\u0442 \u0445\u0451\u0437 \u043d\u0438\u0445\u0439\u043b \u0442\u043e\u043b\u043b\u0439\u0442 \u044b\u044e\u043c \u0434\u044b\u043b\u044b\u043a\u0442\u0443\u0447. \u0401\u0443\u0436\u0442\u043e \u043c\u0430\u0439\u044b\u0436\u0442\u0430\u0442\u0439\u0436 \u044b\u044e\u043c \u0434\u044b\u0442\u044b\u0440\u0440\u044e\u0438\u0437\u0449\u044d\u0442 \u043a\u0435\u0432\u0451\u0431\u044e\u0436 \u0430\u043f\u044b\u0438\u0440\u0451\u0430\u043d \u043c\u044e\u043d\u0434\u0439.'

	fake.sentence(nb_words=6, variable_nb_words=True)
	# u'\u0427\u0430\u0434\u0438\u043f\u0436\u043a\u0451\u043d\u0433 \u0436\u044f\u0442 \u043c\u044e\u0442\u0430\u0442 \u044d\u043b\u0438\u0442\u0440 \u0434\u044b\u0442\u0440\u0430\u043a\u0436\u0439\u0442 \u044d\u043a\u0437 \u043c\u044d\u043b\u044c \u0445\u0430\u0436.'

	fake.word()
	# u'\u0443\u0442'

	fake.paragraphs(nb=3)
	# [   u'\u0425\u0451\u0437 \u0443\u0442 \u0432\u0435\u0434\u044f\u0442 \u043a\u0432\u0443\u0439 \u044b\u0451\u044e\u0437 \u0444\u0430\u043b\u043b\u044f \u044d\u0440\u0440\u043e\u0440\u0438\u0431\u0443\u0437. \u0414\u0435\u043a\u0430\u0442 \u043f\u044d\u0440\u0442\u0438\u043d\u0430\u043a\u0451\u0430 \u0432\u0438\u043c \u044b\u0432\u044b\u0440\u0442\u044f\u0442\u044e\u0440 \u0442\u0430\u043a\u0435\u043c\u0430\u0442\u044b\u0448 \u044e\u0440\u0431\u0430\u043d\u0439\u0442\u0430\u0436 \u044b\u0442. \u041d\u043e\u043c\u0438\u043d\u0430\u0442\u0439 \u0447\u044d\u043d\u0437\u044d\u0440\u0435\u0442 \u0434\u0451\u0437\u0441\u044d\u043d\u0442\u0451\u0430\u0448 \u044b\u043b\u044c\u0438\u0433\u044d\u043d\u0434\u0438 \u0438\u0433\u043d\u043e\u0442\u0430 \u043f\u0440\u043e.',
	#     u'\u0418\u043d\u0442\u044b\u043b\u043b\u044c\u044d\u0433\u044d\u0431\u0430\u0442 \u0434\u044d\u043b\u044c\u044c\u044f\u043a\u0430\u0442\u0435\u0437\u0448\u0438\u043c\u044f \u0430\u0434 \u0434\u044b\u0442\u0440\u0430\u043a\u0436\u0439\u0442 \u0440\u044b\u043a\u0432\u044e\u044b \u043e\u043c\u043d\u044b\u0437 \u043e\u0434\u0435\u043e. \u0412\u044b\u0440\u043e \u043a\u043e\u043d\u043a\u044b\u043f\u0442\u0430\u043c \u043e\u043f\u043e\u0440\u0442\u044d\u0440\u044b \u043a\u0432\u044e\u043e\u0434\u0436\u0451. \u041f\u0430\u0443\u043b\u043e \u0444\u0430\u043a\u0438\u043b\u0438\u0437 \u0432\u0438\u0442\u044e\u043f\u044d\u0440\u0430\u0442\u043e\u0440\u0435\u0431\u0443\u0437 \u043b\u044b\u0433\u0438\u043c\u0443\u0437 \u0431\u043e\u043d\u043e\u0440\u044e\u043c \u0434\u044b\u043b\u044b\u043a\u0442\u0443\u0447 \u043f\u043e\u0440\u0440\u043e \u043c\u0430\u0433\u043d\u0430. \u041a\u0432\u044e\u0430\u044d\u0447\u0442\u0438\u043e \u0448\u0430\u043f\u044d\u0440\u044d\u0442 \u043f\u043e\u0440\u0440\u043e \u043a\u0432\u044e\u043e\u0434\u0436\u0451\u043d\u044b\u0433\u043b\u044d\u0433\u044d\u043d\u0442\u0443\u0440 \u0434\u044d\u043b\u044c\u044c\u044b\u043d\u0451\u0442\u0451 \u0430\u0442\u043e\u043c\u043e\u0440\u044e\u043c \u043b\u0443\u043f\u0442\u0430\u0442\u0443\u043c \u044b\u0451\u044e\u0437.',
	#     u'\u0418\u043d\u0442\u044b\u043b\u043b\u044c\u044d\u0433\u044d\u0431\u0430\u0442 \u043c\u044b\u0438\u0441 \u044b\u043f\u0438\u043a\u0443\u0440\u044d\u0438 \u0442\u0430\u043c\u043a\u0432\u044e\u0430\u043c. \u0414\u044b\u0442\u044b\u0440\u0440\u044e\u0438\u0437\u0449\u044d\u0442 \u044b\u043f\u0438\u043a\u0443\u0440\u044d\u0438 \u043d\u044b\u043a \u0444\u0430\u043b\u043b\u044f \u0430\u043b\u044c\u0438\u043a\u0432\u0443\u0430\u043d\u0434\u043e \u043e\u043f\u043e\u0440\u0442\u044d\u0440\u044b \u043f\u0440\u043e. \u0414\u044b\u0447\u044d\u0440\u0443\u043d\u0442 \u044b\u0442 \u0430\u0442\u043a\u0432\u044e\u0435 \u0430\u0434\u043c\u043e\u0434\u0443\u043c \u0434\u0435\u043a\u0430\u0442. \u0420\u044d\u043f\u0443\u0434\u0451\u0430\u043d\u0434\u0430\u044d \u043d\u043e\u0436\u0442\u0440\u043e \u0437\u0439\u043c\u044e\u043b \u0432\u044d\u0440\u0442\u044b\u0440\u044d\u043c \u0430\u0434\u0435\u043f\u0439\u0436\u043a\u0439\u043d\u0433 \u0430\u0442. \u0413\u0440\u0430\u044d\u043a\u0438 \u0442\u0430\u0442\u0438\u043e\u043d \u043c\u0430\u0446\u0438\u043c \u043c\u0451\u043d\u0451\u043c \u043f\u044b\u0440\u0444\u044d\u043a\u0442\u043e \u043c\u0451\u043d\u0451\u043c.']

	fake.words(nb=3)
	# [   u'\u043c\u0430\u0446\u0438\u043c',
	#     u'\u044b\u0442',
	#     u'\u043e\u043c\u043d\u044d\u0436\u043a\u0432\u044e\u044b']

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
	# u'\u0410\u043f\u043f\u044d\u0442\u044b\u0440\u044d \u043f\u044d\u0440\u043a\u0439\u043f\u0435\u0442 \u043c\u0451\u043d\u0451\u043c \u0434\u0443\u043e \u0430\u0437\u0436\u044e\u044b\u0432\u044b\u0440\u0438\u0442. \u0412\u044f\u0448 \u0442\u044b \u043d\u043e\u043d\u0443\u043c\u0439 \u044b\u043f\u0438\u043a\u0443\u0440\u044d\u0438 \u0430\u043f\u044b\u0438\u0440\u0451\u0430\u043d \u0451\u043d\u0430\u043d\u0439 \u044b\u0432\u044b\u0440\u0442\u044f\u0442\u044e\u0440 \u0445\u043e\u043d\u044d\u0437\u0442\u0430\u0442\u0451\u0437 \u043b\u0443\u043f\u0442\u0430\u0442\u0443\u043c. \u041a\u043e\u043d\u0436\u0442\u0435\u0442\u0443\u0442\u043e \u0434\u044b\u0442\u044b\u0440\u0440\u044e\u0438\u0437\u0449\u044d\u0442 \u0451\u043d\u0430\u043d\u0439 \u0432\u044f\u0448 \u043e\u043c\u043d\u044b\u0437 \u044d\u0432\u044d\u0440\u0442\u0451 \u0446\u0440\u044f\u043b \u0432\u0438\u0442\u044e\u043f\u044d\u0440\u0430\u0442\u043e\u0440\u0435\u0431\u0443\u0437.'

	fake.sentences(nb=3)
	# [   u'\u0412\u0438\u0442\u044e\u043f\u044d\u0440\u0430\u0442\u043e\u0440\u0435\u0431\u0443\u0437 \u0434\u0438\u043a\u0443\u043d\u0442 \u043c\u043e\u0434\u043e \u0434\u043e\u043b\u043e\u0440\u044d\u043c \u043d\u043e\u0436\u0442\u0440\u043e.',
	#     u'\u0412\u044d\u0440\u0442\u044b\u0440\u044d\u043c \u043f\u044d\u0440\u043a\u0439\u043f\u0435\u0442 \u043d\u043e\u0436\u0442\u0440\u043e \u043b\u0443\u043f\u0442\u0430\u0442\u0443\u043c.',
	#     u'\u041f\u043e\u0448\u0436\u0438\u043c \u0432\u0438\u0440\u0439\u0437 \u0438\u043d\u0442\u044b\u043b\u043b\u044c\u044d\u0433\u044d\u0431\u0430\u0442 \u043a\u0435\u0432\u0451\u0431\u044e\u0436.']

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

::

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

	fake.locale()
	# u'es_AG'

	fake.md5(raw_output=False)
	# '0682de0d77906bd483fac200fc0cc27b'

	fake.sha1(raw_output=False)
	# '11cac9008068ff5d8b2b6c89ec1a0dccf7b746b2'

	fake.null_boolean()
	# True

	fake.sha256(raw_output=False)
	# '0a4bcab9a6af5c1e37a7ca29490c951e333ec8e62341b1ef706408cf95d21ec8'

	fake.uuid4()
	# 'b1763dd4-3ee9-4c0f-a124-dd8dbc379b95'

	fake.language_code()
	# u'pt'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'\u041d\u0438\u043a\u043e\u043d\u043e\u0432'

	fake.name_female()
	# u'\u041c\u0430\u0439\u044f \u041a\u043e\u043b\u043e\u0431\u043e\u0432\u0430'

	fake.prefix_male()
	# u'\u0433-\u043d.'

	fake.prefix()
	# u'\u0442\u043e\u0432.'

	fake.name()
	# u'\u0410\u0444\u0438\u043d\u043e\u0433\u0435\u043d \u0411\u044b\u043a\u043e\u0432'

	fake.suffix_female()
	# ''

	fake.name_male()
	# u'\u0414\u0435\u043d\u0438\u0441 \u0421\u0430\u0444\u043e\u043d\u043e\u0432'

	fake.first_name()
	# u'\u041d\u043e\u043d\u043d\u0430'

	fake.suffix_male()
	# ''

	fake.suffix()
	# ''

	fake.first_name_male()
	# u'\u0420\u0430\u0434\u0438\u043c'

	fake.first_name_female()
	# u'\u041f\u0440\u0430\u0441\u043a\u043e\u0432\u044c\u044f'

	fake.last_name_female()
	# u'\u041f\u0430\u0432\u043b\u043e\u0432\u0430'

	fake.last_name()
	# u'\u0421\u043e\u043a\u043e\u043b\u043e\u0432\u0430'

	fake.prefix_female()
	# u'\u0433-\u0436\u0430'

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

::

	fake.phone_number()
	# u'+7 285 191 5659'

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

::

	fake.simple_profile()
	# {   'address': u'Unit 9406 Box 5939\nDPO AP 74501',
	#     'birthdate': '2011-02-22',
	#     'mail': u'g@yahoo.com',
	#     'name': u'\u0420\u0443\u0441\u043b\u0430\u043d \u0414\u0430\u0432\u044b\u0434\u043e\u0432',
	#     'sex': 'F',
	#     'username': u'.'}

	fake.profile(fields=None)
	# {   'address': u'43325 \u0410\u043f\u043e\u043b\u043b\u0438\u043d\u0430\u0440\u0438\u0439 Fords\nEast \u041d\u0438\u043d\u0430view, MN 85142',
	#     'birthdate': '2002-11-21',
	#     'blood_group': 'B+',
	#     'company': u'\u042e\u0434\u0438\u043d\u0430 LLC',
	#     'current_location': (Decimal('72.067019'), Decimal('-42.928295')),
	#     'job': u'\u0411\u0443\u043b\u044c\u0434\u043e\u0437\u0435\u0440\u0438\u0441\u0442',
	#     'mail': u'.@gmail.com',
	#     'name': u'\u0415\u043b\u0438\u0437\u0430\u0440 \u0428\u0435\u0441\u0442\u0430\u043a\u043e\u0432',
	#     'residence': u'3091 \u0415\u043b\u0438\u0441\u0435\u0435\u0432\u0430 Point Suite 508\nLake \u0415\u0432\u0434\u043e\u043a\u0438\u043cstad, HI 33276-6834',
	#     'sex': 'F',
	#     'ssn': u'139-07-6245',
	#     'username': u'.',
	#     'website': [u'http://www..net/', u'http://www..com/', u'http://www..biz/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'Rem aliquam eos.', Decimal('405814.864'), u'Magni adipisci.', u'.@yahoo.com', datetime(1993, 7, 4, 17, 13, 28), 8867, u'81@yahoo.com', u'Praesentium omnis.', u'Ipsum totam eos.', u'Eveniet fugiat.', u'Aspernatur.', Decimal('32133809.6'), Decimal('-79182909588.2')])

	fake.pystr(max_chars=20)
	# u'Vel nihil nisi.'

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

	fake.pystruct(count=10, *value_types)
	# (   [   -8828214905.0,
	#         6054,
	#         8976,
	#         1285,
	#         930,
	#         4073,
	#         69985.216,
	#         4871,
	#         u'Maiores reiciendis.',
	#         7073],
	#     {   u'delectus': u'Perferendis labore.',
	#         u'eos': u'Ut assumenda ut.',
	#         u'fugiat': u'.@.com',
	#         u'id': -915660.8827,
	#         u'libero': u'Sunt assumenda nam.',
	#         u'occaecati': u'Sequi hic est.',
	#         u'quis': u'Autem quia et.',
	#         u'rerum': Decimal('192224.97243'),
	#         u'sint': 8461,
	#         u'voluptas': u'Nisi rerum qui.'},
	#     {   u'corrupti': {   3: u'Illo dolores qui.',
	#                          4: [   -6.8743,
	#                                 u'Explicabo est eum.',
	#                                 u'Molestiae omnis.'],
	#                          5: {   3: 6961, 4: u'd@.biz', 5: [3347, 4520]}},
	#         u'incidunt': {   5: u'Ipsum et nobis.',
	#                          6: [   u'Enim non nostrum.',
	#                                 u'Reprehenderit porro.',
	#                                 -684999169587451.0],
	#                          7: {   5: u'Qui impedit quidem.',
	#                                 6: u'Autem soluta dicta.',
	#                                 7: [u'.@.com', 0.7691607665]}},
	#         u'laboriosam': {   2: datetime(1982, 3, 2, 1, 14, 40),
	#                            3: [   u'.@yahoo.com',
	#                                   3025,
	#                                   Decimal('-503959551.0')],
	#                            4: {   2: 964,
	#                                   3: 978929694245658.0,
	#                                   4: [   u'Autem vitae vitae.',
	#                                          u'In ut enim.']}},
	#         u'nemo': {   9: u'Quis voluptates.',
	#                      10: [u'Quia architecto.', 2012, u'y@gmail.com'],
	#                      11: {   9: datetime(1979, 11, 9, 4, 21, 6),
	#                              10: 996,
	#                              11: [   u'Distinctio dolorum.',
	#                                      u'Quisquam earum et.']}},
	#         u'nulla': {   8: u'http://.net/post/',
	#                       9: [   u'Nihil consequuntur.',
	#                              -247011891.8,
	#                              datetime(1992, 7, 2, 3, 4)],
	#                       10: {   8: Decimal('-4130530770.54'),
	#                               9: -81.468144442908,
	#                               10: [u'.@hotmail.com', u'Omnis qui saepe.']}},
	#         u'sapiente': {   1: -7.8702,
	#                          2: [   Decimal('213713.391707'),
	#                                 u'Ut qui autem.',
	#                                 datetime(1984, 12, 5, 4, 25, 13)],
	#                          3: {   1: u'http://.com/post.html',
	#                                 2: u'Itaque dolor minima.',
	#                                 3: [u'Accusantium qui.', 9683]}},
	#         u'sed': {   0: u'A ut aperiam.',
	#                     1: [   7717,
	#                            u'At ipsam ratione et.',
	#                            u'http://www..biz/blog/post.html'],
	#                     2: {   0: u'Distinctio labore.',
	#                            1: u'http://www..com/list/post.html',
	#                            2: [3815, u'.@.org']}},
	#         u'similique': {   6: u'Odit molestias illo.',
	#                           7: [8869, Decimal('2326945291.8'), 1334],
	#                           8: {   6: datetime(2008, 2, 17, 1, 45, 28),
	#                                  7: Decimal('-52.209'),
	#                                  8: [u'.@.com', -87.5938066351599]}},
	#         u'tenetur': {   4: u'Eum fuga optio ut.',
	#                         5: [u'Itaque quis.', 5842, Decimal('-2336649.156')],
	#                         6: {   4: 410123.761082326,
	#                                5: u'Eveniet dolores et.',
	#                                6: [u'Eum quasi aliquam.', 9683]}},
	#         u'ut': {   7: datetime(1971, 3, 29, 10, 58),
	#                    8: [u'Nobis ipsa ut.', u'Id labore aliquid.', 5851],
	#                    9: {   7: u'.@hotmail.com',
	#                           8: 7684,
	#                           9: [datetime(2000, 3, 28, 7, 56, 45), -81.0]}}})

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'Dolorem reiciendis.',
	#     u'http://.org/',
	#     u'Ea consequatur.',
	#     9389,
	#     u'.@gmail.com',
	#     u'Sint et quia beatae.',
	#     Decimal('662068993.156'),
	#     u'Voluptatum quo.',
	#     u'http://.com/tags/register/',
	#     5241]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   3297,
	#     u'Blanditiis expedita.',
	#     u'02@gmail.com',
	#     -6306695190669.7,
	#     u'Eum est optio autem.',
	#     datetime(1976, 10, 15, 8, 22, 33),
	#     u'Nihil itaque odio.',
	#     u'In quis et nulla.',
	#     Decimal('-5.49007534922E+13'))

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([Decimal('-769894959595'), Decimal('6.07620469088E+13'), u'56@yahoo.com', u'Explicabo nemo iure.', u'Molestiae est harum.', Decimal('4116.9'), u'.@hotmail.com', u'Tempora sed ea et.', u'.@gmail.com', u'http://.com/app/posts/homepage.htm'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'debitis': 351820366857.0,
	#     u'dolorem': datetime(2003, 10, 18, 19, 9, 52),
	#     u'dolores': 9079,
	#     u'fugit': u'http://.com/list/tags/explore/search.htm',
	#     u'magni': u'http://www..com/search/search.asp',
	#     u'quo': datetime(1978, 6, 13, 5, 46, 26),
	#     u'sit': 6216,
	#     u'vel': -57769.9114,
	#     u'velit': u'Est consequuntur.'}

	fake.pyint()
	# 1228

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

::

	fake.ssn()
	# u'366-95-2111'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/2011-05-25 00:12:32 Firefox/3.6.4'

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

	fake.opera()
	# u'Opera/8.50.(Windows NT 4.0; it-IT) Presto/2.9.171 Version/12.00'

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

	fake.internet_explorer()
	# u'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.1)'

	fake.user_agent()
	# u'Opera/9.23.(Windows NT 5.0; it-IT) Presto/2.9.189 Version/11.00'

	fake.chrome()
	# u'Mozilla/5.0 (Windows 95) AppleWebKit/5360 (KHTML, like Gecko) Chrome/15.0.803.0 Safari/5360'

	fake.linux_processor()
	# u'i686'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_1 rv:4.0; en-US) AppleWebKit/535.8.6 (KHTML, like Gecko) Version/4.0 Safari/535.8.6'
