
Language uk_UA
===============

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

::

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

	fake.street_name()
	# u'\u043d\u0430\u0431\u0435\u0440\u0435\u0436\u043d\u0430 \u041a\u0440\u0443\u043f\u0441\u043a\u043e\u0439'

	fake.address()
	# u'\u043d\u0430\u0431\u0435\u0440\u0435\u0436\u043d\u0430 \u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0441\u043a\u0430\u044f, 98, \u0441\u0435\u043b\u0438\u0449\u0435 \u0412\u0456\u0440\u0430, 46682'

	fake.street_address()
	# u'\u043d\u0430\u0431\u0435\u0440\u0435\u0436\u043d\u0430 \u041a\u0440\u0430\u0441\u043d\u043e\u043f\u0430\u0440\u0442\u0438\u0437\u0430\u043d\u0441\u043a\u0430\u044f, 738'

	fake.postcode()
	# u'77555'

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

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

	fake.country()
	# u'\u041b\u0430\u043e\u0441'

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

	fake.street_prefix()
	# u'\u0432\u0443\u043b\u0438\u0446\u044f'

	fake.street_suffix()
	# u'\u0443\u0437\u0432\u0456\u0437'

	fake.city_prefix()
	# u'\u043c\u0456\u0441\u0442\u043e'

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'020'

	fake.street_title()
	# u'\u0421\u043c\u0438\u0440\u043d\u043e\u0432\u0430-\u041b\u0430\u0441\u0442\u043e\u0447\u043a\u0438\u043d\u0430'

	fake.city()
	# u'\u0441\u0435\u043b\u043e \u0417\u0438\u043d\u043e\u0432\u0456\u0439'

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

::

	fake.license_plate()
	# u'952047'

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

::

	fake.bban()
	# 'NMXL6124960511981'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB47EFDP3094887045396'

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

::

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

	fake.ean13()
	# u'9983520852889'

	fake.ean8()
	# u'70453881'

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

::

	fake.rgb_css_color()
	# u'rgb(188,159,56)'

	fake.color_name()
	# u'\u041b\u0456\u043b\u043e\u0432\u0438\u0439'

	fake.rgb_color()
	# u'20,118,176'

	fake.safe_hex_color()
	# u'#ee5500'

	fake.safe_color_name()
	# u'silver'

	fake.hex_color()
	# u'#41ea96'

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

::

	fake.company()
	# u'\u0426\u0438\u043c\u0431\u0430\u043b Group'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Optimized upward-trending Graphical User Interface'

	fake.bs()
	# u'aggregate bricks-and-clicks ROI'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 16 digit\n\u042e\u0441\u0442\u0438\u043d\u0430 \u0410\u0440\u0445\u0438\u043f\u0435\u043d\u043a\u043e\n3583122222444623 05/22\nCVC: 889\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'ZEC'

	fake.currency_code()
	# 'SYP'

	fake.currency_name()
	# 'Cuban peso'

	fake.cryptocurrency_name()
	# 'Waves Platform'

	fake.cryptocurrency()
	# ('AMP', 'AMP')

	fake.currency()
	# ('MUR', 'Mauritian rupee')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 19, 1, 41, 17)

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

	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(2008, 5, 28, 22, 2, 25)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2017, 5, 26)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 4, 29, 20)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 9, 2, 13, 46, 57)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2004, 1, 16)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2005, 5, 30, 20, 6, 4)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1974-08-27'

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1991, 8, 9)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 6, 18)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '1999-10-05T23:43:15'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2004, 2, 3)

	fake.month()
	# '07'

	fake.year()
	# '2011'

	fake.day_of_month()
	# '28'

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

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

	fake.century()
	# u'III'

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

	fake.time_object(end_datetime=None)
	# datetime.time(16, 12, 45)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 4, 2, 5, 17, 32)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(2006, 11, 3, 11, 49, 18)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '04:15:30'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 8, 12, 59, 53)

	fake.month_name()
	# 'September'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1364, 7, 18, 16, 47, 44)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(7150, 70896)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/animi/repellendus.tiff'

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

	fake.file_name(category=None, extension=None)
	# u'blanditiis.avi'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'kyrylo85@gov.ua'

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

	fake.tld()
	# u'ua'

	fake.email(*args, **kwargs)
	# u'ssirko@shevchenko.info'

	fake.url(schemes=None)
	# u'http://haidenko.net/'

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

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

	fake.uri_extension()
	# u'.asp'

	fake.uri_page()
	# u'homepage'

	fake.free_email_domain(*args, **kwargs)
	# u'meta.ua'

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

	fake.ascii_email(*args, **kwargs)
	# 'bbandura@email.ua'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'stepanvenhrynovych@talan.org'

	fake.domain_name(*args, **kwargs)
	# u'derehus.ua'

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

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

	fake.slug(*args, **kwargs)
	# u'vero-possimus'

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

	fake.company_email(*args, **kwargs)
	# u'orkhyp73@karpa-andriichuk.\u0443\u043a\u0440'

	fake.uri()
	# u'https://fareniuk.org/search/list/privacy/'

	fake.ipv6(network=False)
	# 'f055:6942:674d:1019:170:5117:c769:1f03'

	fake.free_email(*args, **kwargs)
	# u'frants73@gov.ua'

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

	fake.mac_address()
	# u'74:bb:09:3b:c4:fc'

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

::

	fake.isbn10(separator="-")
	# u'0-508-53211-6'

	fake.isbn13(separator="-")
	# u'978-1-4566-9165-3'

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

::

	fake.job()
	# u'\u0424\u0456\u0437\u0438\u043a'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Vitae quaerat sit dicta. Eum suscipit error a praesentium nulla.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Laudantium voluptate asperiores atque nesciunt. Voluptatibus aperiam ut quae.',
	#     u'Saepe magni dolor. Dolore alias earum repellendus. Explicabo possimus voluptates cumque.',
	#     u'Ipsam hic perferendis vitae autem ipsam nostrum. Ex accusantium voluptatem cumque aperiam ipsa. Illum at quidem culpa.']

	fake.words(nb=3, ext_word_list=None)
	# [u'libero', u'accusamus', u'at']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Perspiciatis officia aut eaque maxime.',
	#     u'Impedit commodi aperiam optio nulla pariatur dolorum.',
	#     u'Omnis minima rem veritatis quasi.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Aut dolores atque. Quis vitae blanditiis aperiam ut quam.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Architecto officia quo dolorum deleniti.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'zW2(Rv*bM$'

	fake.locale()
	# u'nso_ZA'

	fake.binary(length=1048576)
	# bytearray(b'\xaa\x14c{\xa8v\\\xff\xbb\xbb(Ld\xc9\x0c\xa3s\x945\xe7D\xee\x9a\xefX\'\x96\x15\\Qw\xc3\xb8\xcek1-7\xd0q\x8fq\x8e\x06\xb3r\x1f\x1fX\xe8\xf0{\x1835\xbb%-m*4J\xd5G^x\xf4n\xc3\xaf\xbe\x1d\x07HL\xc3\x19\xb0|\xdd\xa3\x99\xda\x9bAQ\x95\xc2h\xa4\x07\xa4S\x8c*G\xf9\x8e\xebC0\xb3\xac\x15*\xdc\x7fEBR\xdb\xee\xb9O\xf9\xab5\x95<\x0b\x9c^\xbf\x13Q\xce\x1e\x9f\x17I\x86l\xbcN\xe1}\xa5\xd8\x15\xa8k\x833\xb7\x8a\xb3\xf6\x8e\xffw\x81\x07G\xc8:S\x92\x13\xe0\xce\x83\r1\x96\xcf\xe9>q4\xb3\x80\x00\x13\xc9\x08\xe4`\xb7PI\x96\xf8g\xdfZ\xde\xe4\xba]\x1a$\x0cby\x10\xb4\xf5v7J1\x99\xf9\x89\xf6wO\xfb\x91\xad\xec\xb4a\xd7E\x82\x7f\xc9\xe5\x8f\xda\xec,\x80\xdbz\xa4A|\x94v\xa06A\xfc\x15\xa7h1LO{\t\xaf\xe3\x96\xd8*\x81\x8a?\x1f\xcc\xab\xa8#\x1f{\xe7\x8fs\x89\xe6,\x96\x98\xc9\xc8C(\r:\x14\x9cr&\xbe\xaa%\xa3(9C\x85p\t\xb4v$e=\xc3r\x94H\x15\xac*g\xcb\x85\xa9S\r\x13\x1f:2\xd92US\xdaX|4\xb0\xb2\xe7Z\x86\xbc\xc28\xc4S\\\nJ\xc6\x13^@\xe37o8Z\t$I\xdaT\xd8A6\xe3O\xc9\xab\xfc8\xba\xb5\x18%\xe4\x8e\xa7s\xc35^\xf8\xbesp\x11\xf3|\xe7\xb8\x14k\xe2W\xc5+\xb8\x17\xe9\x9f\'\x16\xb7\tJ\xdc\xa9\xddr\x87\xb4\x02\x82.\xbb\xce\xa6EK\x11\xcb\xb5-\x90\xcb@\xda\xccd\xac\xea4\x817_]#f,\xbf\xf2z\xab\x16\x98\xd1HEYb$\x94\x06C\x9f\x86\xd502\x86\xbf!\xcd\xe3^Ls9\xfd/\x06S\x1d=\x07k\x80\xc3\xc9\xb6/4wCK\xf4\xa5\xebE\xd5\xbe\xba9\xa3K\xd5C\\\xa1\t\x15\xc8\xab\x7f\r\xcd\x8d*6\xcan\xfa\xb1\xb4\x8e\xa6\xb1\xca\n!\xbeM\x1d\x11F\xd5\\!a\xbe\xac4\xf4\xad\x8b\xddD\xcbpV\x9c\xf97\xbb\xf2b\xee\x97q\xa4\x85w}\xe2g\x12p\xd1\x04\x9b\xb1AI\\\xef[\x885h\x02\xeaT\x02>_\xf7$i`\xa5\x0e\xd3.\xda\xfdj\x02\xb4\xc4;t\x02=9O\x16$\x9d\xbc\xa7\xb0\xe8U\xc3-\x01\x07gW\xabtu\xd9\xee_\xba8\xe7\xd2X\x0b\xe2vCp\xcc/ew \xd9\xa2qK\xaex\x86\xb3\x19\x9b\xd9F\xa7\xa8`|Pl\xfe]\xbc\xd5\xed\xc5\xd9\x07*X\xbc\x0c\xb0\xbcTE\xbf\x92\x05[\x08\xc2I\x8d\x7fd\xa2\xdeJ\xa0d\xa8\xa7a\xb3\xa1%f\xaa\xbb]\x17"\xc7q\xe5\xd43\xae|a2\xfaWm\x13]:\xfd\xae\xb4\x84\xf4\x95X\xe6x\xf3\xab~];zL\x12\xc7\xa5#\x84\x11\x0cW\xc0\x0f!\x10\x9f\tk\xe09\x8e\x19b\xa9\xe1\xbb\xfe\x80\xef8\xabF\xa1\xb0Z\x01\x19M\x01\xd5\xd9l\xf4b\xbb\xcc[!`\x9c\x0b\xe76\xde;?y/\x8f\xf3\xf2\xa8qT\xf5x\x8c\xcdQ\x92\xb0\xbb/\xd7\xa4NT\xef\x91\xf6\xc6C\xd5\xc1?bv\xca\x8b\xc1\x8b>-j\x02\xd1\x9bef\xba\x804\xcfl\xfd\x1cG\xe3\xec\x0e\x83\xb8\xa1\xf5\x19\xb2i;\xdc\x9fc\x146sHU\xe1M\xd6\xd1\xdeLN\xadQ\xbd\x05o\xa1\xf3\xaa\xf8M=\x194\xbf+cii\xf9\xcc\xd5/\xb5Y\xe0?v\xd8\xab\xf9\xf5u\xa7\xa6\xfd)\xf5\xbb<[79\x95\'\xc3\x88%\x84J\xc2\xba\xc6Kv0\x13\xc4\xf4v\x17\x83\xa5\x96j;\x12z\xfeh\x07?\xa6\r\xd9T!\xc0\xabb\xe5[\x81\xa8\xef;V\x84k\xadb^U1\x96M%,\x1b\'\xbf\xf7\x80l\xed\x7f\x15\x9c{M-k\xa5\xbd\\.\x80S;\x94\xde\x1f)n\x8b\x14/\x86\xe4\xdbi\xa4&m\x0b\xebh(\xe7r\xef?\x0fU\xe9{\x021\x04D\x9c@1\x93w7\xf3\xdb?,\xe6\x13\x89f(\xdb\x9a\xdf\xed\x0b\x07C\xde%ta\'\x9aa\x1e\x80\xefL\x9d\xfb1FT\x88\xf8\x87')

	fake.md5(raw_output=False)
	# '547127d5e394cef95a492b1e22a5c75d'

	fake.sha1(raw_output=False)
	# '6667f3b575dc236d0914feefb142ee5a61d2f564'

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# 'ca175054-0b75-2021-130d-815ec2c766f4'

	fake.language_code()
	# u'cv'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'\u0413\u043e\u0433\u043e\u043b\u044c'

	fake.name_female()
	# u'\u041f\u0440\u0456\u0441\u043a\u0430 \u0414\u0430\u043d\u044c\u043a\u043e'

	fake.prefix_male()
	# u'\u043f\u0430\u043d'

	fake.prefix()
	# u'\u043f\u0430\u043d'

	fake.name()
	# u'\u041d\u0430\u0437\u0430\u0440 \u0417\u0430\u0454\u0446\u044c'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'\u0410\u0430\u0440\u043e\u043d \u041f\u0435\u0440\u0435\u0431\u0438\u0439\u043d\u0456\u0441'

	fake.first_name()
	# u'\u0415\u0434\u0443\u0430\u0440\u0434'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'\u042f\u0440\u043e\u0441\u043b\u0430\u0432'

	fake.first_name_female()
	# u'\u0414\u0430\u0440\u0438\u043d\u0430'

	fake.last_name_female()
	# u'\u0428\u0430\u0445\u0440\u0430\u0439'

	fake.last_name()
	# u'\u041f\u0430\u0432\u043b\u0438\u043a'

	fake.prefix_female()
	# u'\u043f\u0430\u043d\u0456'

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

::

	fake.phone_number()
	# u'+38 (007) 980-34-08'

	fake.msisdn()
	# '2112882595020'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'\u0432\u0443\u043b\u0438\u0446\u044f \u041a\u0440\u0430\u0441\u043d\u043e\u0430\u0440\u043c\u0435\u0439\u0441\u043a\u0430\u044f, 684, \u0441\u0435\u043b\u043e \u0425\u043e\u043c\u0430, 101469',
	#     'birthdate': datetime.date(1960, 10, 29),
	#     'mail': u'vkalchenko@ukr.net',
	#     'name': u'\u041c\u0430\u0440\u0442\u0430 \u0404\u0432\u0442\u0443\u0448\u043e\u043a',
	#     'sex': 'F',
	#     'username': u'zlatoslava63'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'\u043d\u0430\u0431\u0435\u0440\u0435\u0436\u043d\u0430 \u0420\u0443\u0434\u043d\u0435\u0432\u0430 \u041d\u0438\u043a\u043e\u043b\u0430\u044f, 21, \u0441\u0435\u043b\u043e \u0406\u0440\u0438\u043d\u0430, 58565',
	#     'birthdate': datetime.date(2009, 6, 12),
	#     'blood_group': 'B-',
	#     'company': u'\u0411\u0435\u0432\u0437, \u041a\u0438\u043b\u0438\u043c\u043d\u0438\u043a and \u0422\u043e\u0432\u0441\u0442\u043e\u043b\u0456\u0441',
	#     'current_location': (Decimal('86.8201145'), Decimal('-41.257818')),
	#     'job': u'\u0415\u043b\u0435\u043a\u0442\u0440\u043e\u0441\u043b\u044e\u0441\u0430\u0440',
	#     'mail': u'baranykorysia@ukr.net',
	#     'name': u'\u0406\u0440\u0435\u043d\u0430 \u0421\u0430\u043c\u043e\u0439\u043b\u0435\u043d\u043a\u043e',
	#     'residence': u'\u0432\u0443\u043b\u0438\u0446\u044f \u0416\u0434\u0430\u043d\u043e\u0432\u0430, 739, \u0441\u0435\u043b\u043e \u041b\u044e\u0434\u043c\u0438\u043b\u0430, 76800',
	#     'sex': 'F',
	#     'ssn': u'3959814619',
	#     'username': u'semen19',
	#     'website': [u'https://drobiazko-yeroshenko.ua/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'uGwusASoerhcmxAsTUPh',
	#     9336,
	#     1401,
	#     u'olha25@nazarenko.\u0443\u043a\u0440',
	#     u'https://www.makohon.org/',
	#     u'http://www.skyba-shakhrai.net/homepage/',
	#     datetime.datetime(2010, 1, 21, 4, 27, 41),
	#     u'jIEDDxYacRdcQPVQAtin',
	#     7318]

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'https://www.zabashta.org/search/app/blog/index.html',
	#         Decimal('-5196920652.23'),
	#         datetime.datetime(1975, 12, 22, 2, 11, 48),
	#         Decimal('4.40696443714E+13'),
	#         u'edmuybYGHetfwegBLkGB',
	#         u'YkvfZAtfJScsZRzNDRvR',
	#         datetime.datetime(2004, 4, 28, 1, 14, 54),
	#         Decimal('-897.0'),
	#         Decimal('-35963564.8'),
	#         u'ZOSGZsDymECoOlIIqvKC'],
	#     {   u'a': Decimal('1.66334788743E+14'),
	#         u'ab': u'VGSRKgEnOcVRmllzCLQQ',
	#         u'accusamus': 3423,
	#         u'atque': 1235,
	#         u'esse': -209126956351693.0,
	#         u'minima': datetime.datetime(2010, 1, 17, 6, 58, 18),
	#         u'quo': u'CpVsrgTNWXQtYkWjnyQf',
	#         u'rem': datetime.datetime(2016, 4, 2, 5, 50, 7),
	#         u'sint': datetime.datetime(1974, 10, 20, 1, 9, 44),
	#         u'voluptatibus': u'svitlana13@gov.ua'},
	#     {   u'cupiditate': {   0: u'gTKvhekBwtsnBPYJcBqV',
	#                            1: [   u'xqCyCzpRxeitTCiLESgm',
	#                                   u'FGVlHHeGIGElJXnZajkI',
	#                                   3321],
	#                            2: {   0: Decimal('369476.434087'),
	#                                   1: u'liIXbdIgsaQPTlTdqQPn',
	#                                   2: [96010603.58, u'azQwDJWPXjJzZkJilVjj']}},
	#         u'facilis': {   4: -7617.88989559359,
	#                         5: [   u'http://www.khrystych-samoilenko.com/search.php',
	#                                u'https://www.danylenko.com/about.html',
	#                                u'pylyp62@romanets-atroshchenko.org'],
	#                         6: {   4: 7427,
	#                                5: 2055,
	#                                6: [   u'raklukian@gov.ua',
	#                                       u'IpFpGPnNtfvUCxIlSNnV']}},
	#         u'fugit': {   8: datetime.datetime(1989, 8, 22, 17, 50, 46),
	#                       9: [   Decimal('0.64'),
	#                              u'PRVhLGvzQrEMRxIqhIjC',
	#                              u'trcLAjCkNmJfFHdWpbhl'],
	#                       10: {   8: 2280,
	#                               9: u'xowZySbpeZbvZezFYNoz',
	#                               10: [   datetime.datetime(1983, 5, 25, 6, 15, 30),
	#                                       u'nhowweMWFTnnprjLgcDI']}},
	#         u'id': {   6: u'NOpxrYRxOuiRaznDHgkC',
	#                    7: [   u'http://hres.info/main.html',
	#                           u'ftelizhenko@artymovych-ivanychuk.info',
	#                           u'qibUWLaytJkeKVLxyGHe'],
	#                    8: {   6: u'zsuprunenko@vakulenko-simashkevych.info',
	#                           7: u'https://www.vermenych.net/',
	#                           8: [   u'https://babiuk.ua/search/',
	#                                  u'yiaremkiv@abramchuk.com']}},
	#         u'laudantium': {   1: u'znXWQvJgGVLlqTUzNFVZ',
	#                            2: [5423, u'orkhyp62@petryk.org', -971350.201],
	#                            3: {   1: u'AGLxAjPTmQOApwXtylfZ',
	#                                   2: u'uehlqNAukmRroenEcWVo',
	#                                   3: [   u'QRoYydUWcxgNSJYtpuip',
	#                                          datetime.datetime(1985, 7, 10, 21, 21, 46)]}},
	#         u'mollitia': {   7: u'opanasbaranyk@gov.ua',
	#                          8: [   u'averchenkoerika@ovsiienko-yeresko.info',
	#                                 u'PXuQEUXRhBUDTJaBvonl',
	#                                 u'WaqBhwOoLubzhDXyOSgG'],
	#                          9: {   7: u'npiatachenko@email.ua',
	#                                 8: -2928989.19817,
	#                                 9: [   u'MHvycshhpQjdDSnBJZhr',
	#                                        u'okonoplia@tkach-charnysh.\u0443\u043a\u0440']}},
	#         u'nemo': {   5: u'uAyMiGedWZrzujchjEbl',
	#                      6: [   9027,
	#                             9005,
	#                             u'http://www.zaporozhets-tykhyi.ua/register.htm'],
	#                      7: {   5: u'https://korpaniuk.ua/explore/list/faq/',
	#                             6: u'cbabiuk@ivanenko.\u0443\u043a\u0440',
	#                             7: [   u'chHvPaFMXAxUKJvwydRH',
	#                                    u'iurchenkohanna@satsiuk.org']}},
	#         u'similique': {   9: u'https://www.zhuk-yeromenko.info/register/',
	#                           10: [   6018,
	#                                   u'FPqCZquQMlURSMvLIWlV',
	#                                   Decimal('743116.736')],
	#                           11: {   9: 5049,
	#                                   10: u'http://abrahamovskyi-shakhrai.org/homepage.asp',
	#                                   11: [   Decimal('84638176540.7'),
	#                                           u'gKyZPpvMATPBHaDinLya']}},
	#         u'totam': {   3: u'dbabiuk@ukr.net',
	#                       4: [   datetime.datetime(1973, 7, 16, 18, 53, 58),
	#                              Decimal('-4244940071.67'),
	#                              u'vitaliideriazhnyi@vovk.org'],
	#                       5: {   3: datetime.datetime(1999, 10, 21, 13, 18, 41),
	#                              4: u'ynIGffbyJGZsvvzeucQv',
	#                              5: [8839, 8729]}},
	#         u'voluptatem': {   2: u'RvFoTmMAanFzyTEHsCkj',
	#                            3: [   9513,
	#                                   u'nZuKVSAFCATCGkZzglYa',
	#                                   u'CNRdhHdGlImmZCngJgJF'],
	#                            4: {   2: 1457,
	#                                   3: Decimal('26955.774'),
	#                                   4: [   u'rSivflJZgWYfHTIjmmQj',
	#                                          u'HLPAusUPVLEcvWJYJbNd']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   -8739.952,
	#     u'zWTAUAULWSnLZHHiXFOE',
	#     u'http://www.bevz.info/category/',
	#     Decimal('-145552111631'),
	#     Decimal('-74464654.6173'),
	#     u'mariia53@zarudnyi.\u0443\u043a\u0440',
	#     u'YtftXbEvnApRtlydHlaa',
	#     datetime.datetime(1982, 2, 2, 12, 32, 45),
	#     u'iAsAUogdkTFTDxnYfdKK',
	#     3520,
	#     u'vjWjjEkerjwdrhUHxycx',
	#     u'VRaHKBBiUSVCuLRIpXtY']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'VxdtuRJKytFARjjaCZJq',
	#     -34303296963.415,
	#     u'WHfxgZStmTvMJnKxFlly',
	#     u'IqeKokAXjqGFgJdMqoek',
	#     u'RZxzHroTBnTBxlptcQpa',
	#     u'GGWEQKTGlrYNMrphXAoP',
	#     Decimal('-38.2'),
	#     590,
	#     datetime.datetime(2008, 11, 15, 2, 2, 53),
	#     8983,
	#     u'http://nosenko.com/main/homepage.jsp',
	#     -5.89492474590896)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'lzaiets@gmail.com', u'dggJmlLczfoTlgCLLJCb', 135, 1356, datetime.datetime(1978, 12, 2, 6, 14, 15), u'http://www.tokar-babak.net/category/posts/search/register.jsp', u'nurJJaRkcYbWYnMBpXRp'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'asperiores': u'vhuJcLQRyVldCtuWwvtq',
	#     u'at': u'sZHIoqnaJpVBzgIVaGXW',
	#     u'eligendi': u'GictzJuPKCcBWKERGlUe',
	#     u'iste': 3832,
	#     u'praesentium': Decimal('7.21274275072E+13'),
	#     u'rem': 8668,
	#     u'voluptates': u'bXagRwnxqcpvHYsrUiwu'}

	fake.pyint()
	# 9437

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

::

	fake.ssn()
	# u'3189555259'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.5.20) Gecko/2010-04-24 10:53:08 Firefox/3.8'

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

	fake.opera()
	# u'Opera/9.39.(X11; Linux i686; mt-MT) Presto/2.9.176 Version/11.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5321 (KHTML, like Gecko) Chrome/19.0.842.0 Safari/5321'

	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_5_3) AppleWebKit/5361 (KHTML, like Gecko) Chrome/62.0.890.0 Safari/5361'

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

	fake.safari()
	# u'Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/535.21.7 (KHTML, like Gecko) Version/5.1 Safari/535.21.7'
