
Language hu_HU
===============

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

::

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

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

	fake.address()
	# u'Pet\u0151fi Utca 76.\nH-6995 tapolcafalu'

	fake.street_address()
	# u'\xc9rdi Utca 226.'

	fake.postcode()
	# u'H-5777'

	fake.street_name()
	# u'F\xfcrd\u0151devecseri \xdat'

	fake.frequent_street_name()
	# u'Pet\u0151fi S\xe1ndor'

	fake.country()
	# u'Kiribati'

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

	fake.city_part()
	# u'kereszt'

	fake.street_suffix()
	# u'utca'

	fake.city_prefix()
	# u'dr\xe1va'

	fake.city_suffix()
	# u'hida'

	fake.building_number()
	# u'230.'

	fake.country_code()
	# u'BZ'

	fake.county()
	# u'Tolna'

	fake.real_city_name()
	# u'Szeged'

	fake.city()
	# u'tam\xe1siharaszti'

	fake.street_address_with_county()
	# u'Szentsz\xe9ki Utca 187.\nFej\xe9r megye\nH-6215 \xc9rd'

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

::

	fake.license_plate()
	# u'UON B54'

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

::

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

	fake.ean13()
	# u'0840144164776'

	fake.ean8()
	# u'50851089'

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

::

	fake.rgb_css_color()
	# u'rgb(42,145,29)'

	fake.color_name()
	# u'Black'

	fake.rgb_color()
	# u'42,56,227'

	fake.safe_hex_color()
	# u'#662200'

	fake.safe_color_name()
	# u'lime'

	fake.hex_color()
	# u'#6d2386'

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

::

	fake.company()
	# u'Nagy'

	fake.company_suffix()
	# u'ZRT'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'Discover\nM\xe1t\xe9 Szekeres\n6011295704203298 06/26\nCVC: 888\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'VTC'

	fake.currency_code()
	# 'BAM'

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

::

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2009, 8, 19, 18, 0, 13)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(1996, 12, 19, 19, 41, 44)

	fake.time(pattern="%H:%M:%S")
	# '22:05:34'

	fake.date_time_ad(tzinfo=None)
	# datetime.datetime(623, 2, 16, 17, 44, 33)

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

	fake.day_of_week()
	# u'cs\xfct\xf6rt\xf6k'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 6, 10, 1, 10, 1)

	fake.time_object()
	# datetime.time(22, 29, 8)

	fake.iso8601(tzinfo=None)
	# '1971-08-19T20:59:38'

	fake.time_delta()
	# datetime.timedelta(11092, 67780)

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2017, 9, 6, 20, 17, 16)

	fake.date_object()
	# date(1984, 10, 21)

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2017, 10, 3, 15, 35, 5)

	fake.date_time(tzinfo=None)
	# datetime(2004, 9, 11, 23, 45, 26)

	fake.date(pattern="%Y-%m-%d")
	# '1987-04-11'

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

	fake.month()
	# '09'

	fake.unix_time()
	# 1483249036

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 9, 4, 8, 42, 50)

	fake.day_of_month()
	# '20'

	fake.year()
	# '1977'

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

	fake.century()
	# u'X'

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

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 5, 7, 19, 58, 15)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2017, 8, 12, 1, 44, 39)

	fake.month_name()
	# u'augusztus'

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

::

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

	fake.mime_type(category=None)
	# u'audio/basic'

	fake.file_name(category=None, extension=None)
	# u'eum.mp3'

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

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

::

	fake.url()
	# u'https://www.varadi.biz/'

	fake.company_email()
	# u'ptith@kovacs.com.hu'

	fake.uri()
	# u'https://tith.com/search/wp-content/index/'

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

	fake.ipv4(network=False)
	# '166.117.148.227'

	fake.domain_name(levels=1)
	# u'biri.hu'

	fake.tld()
	# u'org'

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

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

	fake.slug(*args, **kwargs)
	# u'molestias-illum'

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

	fake.uri_extension()
	# u'.htm'

	fake.ipv6(network=False)
	# '26d3:750:123c:f7e2:84bd:2331:6fca:b850'

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

	fake.image_url(width=None, height=None)
	# u'http://www.lorempixel.com/352/463'

	fake.email()
	# u'ojuhasz@hajdu.com.hu'

	fake.uri_page()
	# u'search'

	fake.mac_address()
	# u'8f:d4:d9:39:f1:32'

	fake.safe_email()
	# u'takacskrisztina@example.com'

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

::

	fake.isbn10(separator="-")
	# u'1-5448-8254-8'

	fake.isbn13(separator="-")
	# u'978-1-69265-859-5'

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

::

	fake.job()
	# 'Scientific laboratory technician'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Accusamus vitae dignissimos id qui sunt blanditiis nobis. Aliquid architecto iste voluptatum sunt saepe eligendi. Rem nemo aliquid cumque dolorum.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Perferendis accusantium quibusdam reprehenderit sit nam. Odit totam corporis iste dolores aperiam. Labore et impedit aliquid quia.',
	#     u'Veniam reprehenderit sapiente quod illum iusto id modi. Reiciendis sequi reiciendis quisquam. Molestiae voluptatum tempore perferendis quos temporibus minus.',
	#     u'Magni nostrum dolor ducimus. Blanditiis consectetur commodi pariatur quam quisquam libero. Illum quod quo dolore voluptatibus quod hic corrupti.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Ex placeat aliquid nisi sapiente.',
	#     u'Vel deserunt porro excepturi consequatur placeat voluptatibus fuga.',
	#     u'Consequatur veniam voluptate laborum asperiores.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Dignissimos debitis tenetur corporis asperiores. Molestiae laborum non ipsam exercitationem esse. Iste vel ut in aperiam magni cupiditate.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Minima similique odio magni earum voluptatibus fugiat.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'5K^ArvtF$G'

	fake.locale()
	# u'uz_UZ'

	fake.binary(length=1048576)
	# bytearray(b'\x03\x1aq\x94(v\xc6\x95\xf8X\xea\xaa+\xf6\xa3\xf0,\xdf20\'\xca!T\x93\xbc\xc8>"\xa9\x96#\xcb\xfe\xe4\x91L\xc8V\x0e\xfa\xcd\xc5~\x1d\xee@\x0c\xcd\x17\xae\x1b+\xb7~@\xcd\xfe\x83\xf1\xb4&\xfb\x95\tJ\xcf2B\xbeL\x0f<\t\x8eV\xf0\x1d\xe26K\x9d\xe1\xb9\xc8\x91Rk\x04\xe4\x18\xef\xd6\xd1\xe4?\xb3\xef\xc7\x8a`\xdcZ\x13\x94L\x1eJ\xeb\xdd1%\x89\xf1/1\xecH[P\x90\x05\x8d\x16\xd51\x81\xfb\xe9\xa6`\x83\xdb\xd08\xaa\xd9\xff\x9d\xd5L\xf0\x1d9\xe8 |I\xbb,\xfb\x92n\xae\xbd\x89\'KhZ\x96\xbb\xfacE\xc0e\xab\xac\xf4$\xac\xf9\xb6~\x8b|\xcf\xb0\xf6\xa9,\x93\xe5E\xbfJ\xa5$-B\xf5\xe3W\xbc\xadZ\xb2s\xafT\xb5\xda\xfe\xff\xdb\x03xl^\xc4z>\xc8\x89S\x8d\x94z~\xefuh\x7f\x95g5\xfcF\xf93\xd3V\x0e\xdd\x0f-%\xe6^!Y\xf3c\x9a\x90\r\xd8\n\x87\x03F\x1cK\xab\x0c\x8au\xb6~\xd7\xf9hE\x8f\xfa#\x86\x834\xe0kH\xa1\x14\xf8\x07A\xfb\x9a\xf7\xd7\xd7\xdbw\xaf\xb1\xc8:\xa2\x96\xe5\xd3E9g\xa4L_\xafae\xd1\xd4\xdd\xf7\x87y\xb8\x9e>B\x9f\xb3}\xdc\xec\x13*\xe9\xdeJ81\x0b\x18g@\xd9\xb5\x81\xeeI\n\x1cA\xd7\x8f\x1bN\xa5DC\xc6u+\x04\xc2\xba\xcc\xab\xf6\x08S\x03\xa6\xb9\x93\x7f%z\x0f\xd7\x93\x98\x94\x9c\xc3\xf7\xa0M\x81B \xac\x0c\xef\x1eL\xc5U\xd5\xc8}\xd0y\x83\x97\x07\xd4\x0e\x05\x8a_c7\x0b\xaa\x02\xeef\xfa\x1dX\r\xf6\x15\xb8\x16\x06\xbcW\xfb%\xeb\xa20\x80{]Q\xd3\xe6E\x1eW\xa1;\xce*\x0eN\x8cq6\xd9\xdb\xfd\x9fQ\x83\\d\x9bv\x868m*\x95-\tf\xf2&\x83\x8b\xe8\x8dcb\xeb5hJ\xd6RJ\xbfw~j\x9f\x8b\x03N\n#+I\xd4\x03\x86\x90\xff\xf1\xb7Y\x0ex\xab\xe2"\xab\x8a\xef\xad\xd3J\xf0"\x1f\xe6\xb0\x17c1\xeaI\x81Y>\xe2\x94(\xdc\xa8mv\x80z\xc9C3\xd8*\xb8hcE2\xe3$\x15\xf4\xd4\x8c}r7\xc5j>\x9e\xc2\xd1\xfb^\xb8a\xa3\xc6\xa6\x06\xaa*\xcc.2`\xfeDWq2d\x02\xdd\x14\x016\xc6\xc1\xb2\xef\xdd\xff|\xbeHG\x15\x91LrVP\xe3-k\x8c\xfb\x88\xeb\xcbI\xa3`\xd1`\x19\x9eI"\x8a\xb3-\xef\'\x89v\xcd\xc7~\xb7\xb5\x03\xf7TF\xceo\xa2\xae\x87bDi%\xa3\xf4\\\xcdD\x93\x0b)AK\xd8p\xf2\x82\x7f\xb2\x9c\xab\x8d\x08\x81c\xc5-\xb1/\x14\'\xda\x80`\xe0\x8e\x8e^\xff\xd8J\xee\x16K,\xc4\xb1\xb24?\xa4]\x8d\xe5\xf7\xd0\x13\rK&\x8b\xe9\x04`\xce\xcf\x13\x14\xd3bA\x9c\xa0]\xaeF\x9ajJ+\x7f\xb4n\ne.\xfdi\xe55\r\xd7\xa8=W\xb8\x9f\x91\xbd\x95|S\x1d#\xa0\x97\xd1\xd8\xc9\x86\xae]\xbaS\xea\xc7W\xed\xac,\xcd\xdf\xd3\x17\xb3(|s\n\xbel}\xf2\x96\xa3\x8cP\xba\xca%\x92\xd0\x96\x90\x1b4\x18\xb1dW%\rRH\x9f\xe6\xeb\x93\xc5K\x00z\xf6\xac\xce\t_\xfd\x87g\xad\xe9\xder\xa0\x81\x9d\xcb\xdf\xc0\x93s\x15)\x83#\nsY\xa73\x01\x91\xa0`\x13v{1\xb6\x17\xa1\x8b\xfap\x04M\x18u\xdc\xb7\xb4a\xbbG\xaetc\xe7#\xc09\xa9\x93\x1c_\xea3\xd7\x96+\xbe\xe2F\\\xb8*\x8a\x17\xd2\x11TR\x1e\x0b7\x0b\xcf\xaf\xd5m\x93\x0c!\xa0\xbd\x18H{\xb4\xa54\x00\x05n\x9d\xcaZ=\x1a\x9b\xe7\xb8\x81\xe8\x84\x1a4\x12\x0c7\xa0\x1e\x9b\x84\x87\x8bF\xd3\xc4\xd6\xc2\x0e\xa6M27\x8f\xaa\x8d\x97\\\xeehM>\xa0\xae\x87\xaf\x92[O\x9c\x82q\xce\x95\x8d*^\x8a<\t\xcd\x87X~\xef\x07I\x17R\x19\xc5(\xaf5\t\xf8\x84\x84\xc2\x85\xc0\xd7\xad7^\xe1\xfb9\x1ca\x8el\xccy\xe9\xe50\'\xbd\x0e\\\xfaBx=\xc0J$\xb8\x0c\x8bf\xa3.\xfcA\x88\xb0E\xd33\xaf\xa0FO0\xd3\xc3\xc8lk\xcc\xee\x84')

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

	fake.sha1(raw_output=False)
	# '57292eeb9985a4f20003ee2c4860db03871fd0a0'

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# 'd52c1d9b-4392-882b-ab64-ba9a2b29f7d3'

	fake.language_code()
	# u'am'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'T\xf3th'

	fake.first_name_female_abbreviated()
	# u'I.'

	fake.name_female()
	# u'Dr. Horv\xe1th S\xe1ndorn\xe9 Horv\xe1th Erzs\xe9bet'

	fake.prefix_male()
	# u'Dr.'

	fake.prefix()
	# u'Prof. Dr.'

	fake.name()
	# u'N. Horv\xe1th Margit'

	fake.suffix_female()
	# ''

	fake.name_male()
	# u'Dr. T. Szab\xf3 L\xe1szl\xf3'

	fake.first_name_male_abbreviated()
	# u'J.'

	fake.first_name()
	# u'Ferenc'

	fake.suffix_male()
	# ''

	fake.suffix()
	# ''

	fake.last_name()
	# u'Kov\xe1cs'

	fake.first_name_female()
	# u'Gabriella'

	fake.last_name_female()
	# u'Szab\xf3'

	fake.first_name_male()
	# u'P\xe9ter'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'67/778-4868'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Pet\u0151fi Utca 85.\nH-9336 f\xfcrd\u0151n\xe1dasd',
	#     'birthdate': '2011-07-23',
	#     'mail': u'dhorvath@hotmail.com',
	#     'name': u'T\xf3th Vince',
	#     'sex': 'M',
	#     'username': u'martailles'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Fels\u0151i Utca 10.\nH-8561 devecser',
	#     'birthdate': '1986-07-18',
	#     'blood_group': 'AB+',
	#     'company': u'Szab\xf3',
	#     'current_location': (Decimal('-29.481594'), Decimal('160.861483')),
	#     'job': 'Osteopath',
	#     'mail': u'nemethjanos@gmail.com',
	#     'name': u'Dr. Farkas Roland',
	#     'residence': u'M\xe1trakereszti Utca 246.\nH-1284 Miskolc',
	#     'sex': 'M',
	#     'ssn': u'28105108249',
	#     'username': u'nagyzoltan',
	#     'website': [   u'http://farkas.biz/',
	#                    u'http://www.kovacs.hu/',
	#                    u'http://www.lakatos.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'http://pal.info/categories/tags/login.jsp',
	#     193,
	#     u'ozLKCOJKLEczXVrUTMUl',
	#     u'ZlmrfGtkkYjyRTbsxEQe',
	#     5574,
	#     datetime(1989, 3, 24, 8, 13, 53),
	#     u'vargaszabolcs@hotmail.com',
	#     u'alTXMstboKfcWOecbxoC',
	#     Decimal('-18474.7397762'),
	#     588.679,
	#     datetime(1971, 11, 5, 2, 35, 11),
	#     u'GoEkTqgbkUcETWUnBwwf',
	#     u'mthxSiZkCuqyVVTdezUN',
	#     8144]

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

	fake.pystruct(count=10, *value_types)
	# (   [   Decimal('9.3487365174E+11'),
	#         datetime(1972, 10, 28, 6, 1, 59),
	#         u'DDKYYnDoQrGFodTxOXRT',
	#         u'MnkmlEiwHlhfKyptGhiN',
	#         datetime(2011, 6, 9, 18, 1, 18),
	#         1730,
	#         -8502992925.49,
	#         datetime(2005, 11, 23, 0, 32, 13),
	#         u'JPXZRhirRhQTTKsDAcWw',
	#         datetime(1977, 10, 21, 2, 12, 58)],
	#     {   u'corrupti': u'baloghtunde@yahoo.com',
	#         u'dolores': u'cmbzgSYsIOjPIDukODUs',
	#         u'et': u'http://www.bakos.org/search/home.asp',
	#         u'exercitationem': datetime(1996, 12, 22, 22, 19, 31),
	#         u'inventore': u'fmARMERJXgNweixwnScK',
	#         u'modi': u'ErTEIMgGhqMCJqdHRZHh',
	#         u'officia': 3573,
	#         u'repudiandae': u'enFlxoGEenHSwyVWVITx',
	#         u'saepe': datetime(1993, 3, 11, 13, 22, 40)},
	#     {   u'alias': {   4: 126501817323.749,
	#                       5: [   u'FJqFYDqtCtnLelgSNunO',
	#                              u'IOEMnqxsKzdUVTPbdUBw',
	#                              4.36],
	#                       6: {   4: u'NGWwnsLHniHfqvlNkkOK',
	#                              5: u'PyzADIqZoRswRmsVQHkm',
	#                              6: [Decimal('-4.51030142932E+12'), 6607]}},
	#         u'cumque': {   5: Decimal('1287727679.16'),
	#                        6: [   u'cKtrHcXVaiKdobsIZgQC',
	#                               Decimal('149.12987773'),
	#                               u'ORxKMYhjYFJcVzwrQskr'],
	#                        7: {   5: u'lnemeth@gmail.com',
	#                               6: u'oxgtNIZIQpuBOZlLdZBS',
	#                               7: [   u'oXGEVuvIGrYNLJNtvZrs',
	#                                      u'https://www.tith.com/tag/main/app/author/']}},
	#         u'distinctio': {   3: u'dKXRVMIhHfHLonuPRSWm',
	#                            4: [   datetime(2014, 9, 10, 18, 9, 54),
	#                                   u'minikatith@kiss.com',
	#                                   u'GjNRdevByJnCYFHEFZHL'],
	#                            5: {   3: u'CIUipTdxXjgjvFfdcaBa',
	#                                   4: u'XwflmgkZGEDvdJAoqahX',
	#                                   5: [   u'btOVdztsGptWNwcBQNAY',
	#                                          u'wYhzwygoqChZVUFCWlfU']}},
	#         u'dolor': {   8: u'gEJeeTJgQPxeHHvZXbbW',
	#                       9: [   u'unHGduHOugVGlTAOLFrP',
	#                              u'wqccPVpcxhDFrttVYbZe',
	#                              2168],
	#                       10: {   8: u'http://www.juhasz.info/index/',
	#                               9: u'http://molnar.com.hu/register.php',
	#                               10: [   u'katalin79@hotmail.com',
	#                                       u'kovacsdavid@bogdan.info']}},
	#         u'esse': {   1: -36939526.305,
	#                      2: [   u'zsuzsannatith@boros.net',
	#                             u'wDUFZvFvMGNwudSuIclR',
	#                             u'FCXBwEJPeWpqngnpiaRV'],
	#                      3: {   1: u'margitsomogyi@papp.hu',
	#                             2: datetime(1971, 1, 26, 1, 33, 15),
	#                             3: [   u'tvVPgrFSeVmaVOiUDAIL',
	#                                    u'ZYaHfDkIxgnvwceErTLY']}},
	#         u'explicabo': {   9: 3535,
	#                           10: [   Decimal('469431.610275'),
	#                                   datetime(1994, 1, 8, 13, 22, 39),
	#                                   5050],
	#                           11: {   9: 5238,
	#                                   10: u'gMXtMKKHkBYwughtgmTk',
	#                                   11: [3021, Decimal('-7918540140.0')]}},
	#         u'fuga': {   7: u'uxITDHpZtLAAwMRAHSYC',
	#                      8: [   u'XTLKALZFrqrKvuFUofAT',
	#                             u'https://papp.biz/login.htm',
	#                             u'mPfAKwPGfrkitzboOseP'],
	#                      9: {   7: 21.88426,
	#                             8: u'dbalogh@yahoo.com',
	#                             9: [   Decimal('-1149512527.69'),
	#                                    u'https://www.kovacs.com.hu/search/category/']}},
	#         u'neque': {   2: datetime(2010, 12, 27, 22, 14, 29),
	#                       3: [   u'IhUvoyimOfpoFnzFTLLZ',
	#                              u'QcwLiazBerGqUKoYmAyO',
	#                              u'dQiiVlmNYhsuswcQgBQB'],
	#                       4: {   2: u'zsolt91@yahoo.com',
	#                              3: u'HEaNtkMjXBdfGxBBLDpr',
	#                              4: [0.212610724, u'vbalogh@barta.net']}},
	#         u'ullam': {   0: u'https://www.virag.org/search/home/',
	#                       1: [   u'bhEkySdnsJSfcAysyUTh',
	#                              u'CxchslwoHYOmTRujnMam',
	#                              3402],
	#                       2: {   0: u'jXEZcsKmvdnBCIfVYFbv',
	#                              1: -6006754069528.0,
	#                              2: [   u'GOOkvxCBcCbUpkbYhIbQ',
	#                                     u'HfaQTspQJQpkNaidXgZl']}},
	#         u'velit': {   6: Decimal('0.11275'),
	#                       7: [   4104,
	#                              u'FhChpBCkbYMNBCMIjLRY',
	#                              u'rRddRBQYyGwZNwvpgIMz'],
	#                       8: {   6: Decimal('-388139.556376'),
	#                              7: 728,
	#                              8: [u'ZRurGrnGVBXudUejYwqa', 8909344854588.26]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   datetime(1987, 3, 13, 17, 38, 59),
	#     u'KKOtCjGNeHNAWNchAOqp',
	#     datetime(2003, 9, 3, 19, 23, 49),
	#     u'DXdGKwSgMUAamgKxMTeL',
	#     datetime(1983, 4, 12, 15, 47, 42),
	#     8941,
	#     u'WDpQZQKuscFVmeHcQoUc',
	#     u'PKXNiRRSqQDoBsZUXiPU',
	#     u'JxIUcTCJLVfemETCHoqe',
	#     u'wnemeth@varga.biz',
	#     datetime(1991, 9, 29, 14, 2, 37),
	#     u'http://www.tith.hu/main.asp']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   2883,
	#     -7064771346905.2,
	#     u'ZfSQmnjmzILpYPtJLKFb',
	#     u'jiTwVBpHAJGfmpOPEOCi',
	#     u'lnkRzBdoUyZcZsStaBhz',
	#     u'https://www.nagy.net/blog/tags/author/',
	#     datetime(1994, 1, 31, 0, 56, 30))

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'xCzrDtckYQOrJXbPCaUc', 2673, 9320, 7344772.93437282, u'tithlili@varga.hu', u'iBYtZHxoxUirbcnKjbxE', u'fszabi@horvath.hu', datetime(2016, 2, 5, 19, 50, 35), u'gDWPLcUXGbJCOEHLJMZX', -48625340556.922, u'PDGehGMTistMlYDJkGHQ', 2239])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'doloremque': datetime(2007, 12, 4, 19, 31, 33),
	#     u'explicabo': u'yjJgwKGnitqmxHAVZByI',
	#     u'inventore': 5002,
	#     u'necessitatibus': 5931,
	#     u'nisi': 6893,
	#     u'quo': datetime(2000, 6, 15, 8, 1, 17),
	#     u'quod': u'TJmvjFKalDILQFSbKNGO'}

	fake.pyint()
	# 1189

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

::

	fake.ssn(dob=None, gender=None)
	# u'14512116619'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.5.20) Gecko/2017-08-08 17:36:05 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.83.(X11; Linux x86_64; sr-ME) Presto/2.9.182 Version/10.00'

	fake.windows_platform_token()
	# u'Windows 95'

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

	fake.user_agent()
	# u'Opera/9.41.(Windows NT 5.0; nr-ZA) Presto/2.9.171 Version/10.00'

	fake.chrome()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_6) AppleWebKit/5351 (KHTML, like Gecko) Chrome/14.0.894.0 Safari/5351'

	fake.linux_processor()
	# u'i686'

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/534.43.2 (KHTML, like Gecko) Version/4.0 Safari/534.43.2'
