
Language en_GB
===============

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

::

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

	fake.street_name()
	# u'Stevenson views'

	fake.address()
	# u'Flat 54i\nLowe harbors\nNew Hazel\nPO7M 8UA'

	fake.street_address()
	# u'9 Jacob parks'

	fake.postcode()
	# u'PO1B 1AH'

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

	fake.country()
	# u'Angola'

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

	fake.secondary_address()
	# u'Flat 95'

	fake.street_suffix()
	# u'pass'

	fake.city_prefix()
	# u'Lake'

	fake.city_suffix()
	# u'land'

	fake.building_number()
	# u'9'

	fake.country_code()
	# u'AR'

	fake.city()
	# u'South Francesca'

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

::

	fake.license_plate()
	# u'CL83PGA'

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

::

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

	fake.ean13()
	# u'5862773476148'

	fake.ean8()
	# u'27942154'

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

::

	fake.rgb_css_color()
	# u'rgb(188,230,210)'

	fake.color_name()
	# u'LightBlue'

	fake.rgb_color()
	# u'227,78,61'

	fake.safe_hex_color()
	# u'#aa3300'

	fake.safe_color_name()
	# u'green'

	fake.hex_color()
	# u'#1ab532'

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

::

	fake.company()
	# u"O'Brien Group"

	fake.company_suffix()
	# u'Inc'

	fake.catch_phrase()
	# u'Customizable 24/7 process improvement'

	fake.bs()
	# u'enhance B2B e-markets'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'Diners Club / Carte Blanche'

	fake.credit_card_full(card_type=None)
	# u'VISA 13 digit\nJoshua Quinn\n4238028443119 01/22\nCVC: 165\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'GRC'

	fake.currency_code()
	# 'HKD'

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

::

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2006, 12, 1, 5, 37, 19)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(1996, 10, 8, 18, 44, 59)

	fake.time(pattern="%H:%M:%S")
	# '04:52:52'

	fake.date_time_ad(tzinfo=None)
	# datetime.datetime(844, 2, 17, 1, 38, 21)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2011, 5, 14, 13, 7, 56)

	fake.time_object()
	# datetime.time(22, 24, 59)

	fake.iso8601(tzinfo=None)
	# '1988-10-20T18:34:05'

	fake.time_delta()
	# datetime.timedelta(3885, 51021)

	fake.am_pm()
	# 'PM'

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

	fake.date_object()
	# date(2002, 11, 5)

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2017, 9, 24, 20, 57, 22)

	fake.date_time(tzinfo=None)
	# datetime(1973, 10, 31, 7, 19, 41)

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

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

	fake.month()
	# '09'

	fake.unix_time()
	# 315039328

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 9, 5, 6, 56, 57)

	fake.day_of_month()
	# '17'

	fake.year()
	# '2008'

	fake.timezone()
	# u'Pacific/Auckland'

	fake.century()
	# u'XVII'

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

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2017, 7, 1, 1, 8, 9)

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2017, 8, 20, 14, 55, 3)

	fake.month_name()
	# 'January'

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

::

	fake.file_path(depth=1, category=None, extension=None)
	# u'/consectetur/magnam.txt'

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

	fake.file_name(category=None, extension=None)
	# u'non.png'

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

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

::

	fake.url()
	# u'https://www.hudson.com/'

	fake.company_email()
	# u'ichan@robinson-akhtar.com'

	fake.uri()
	# u'http://www.atkins.com/login.html'

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

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

	fake.domain_name(levels=1)
	# u'naylor.com'

	fake.tld()
	# u'net'

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

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

	fake.slug(*args, **kwargs)
	# u'neque-iste-iure'

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

	fake.uri_extension()
	# u'.asp'

	fake.ipv6(network=False)
	# '5e59:ab46:f1c6:923d:8cf1:3974:5bea:1a36'

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

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

	fake.email()
	# u'rileyjoan@chan.com'

	fake.uri_page()
	# u'author'

	fake.mac_address()
	# u'70:0c:57:53:c5:a1'

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

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

::

	fake.isbn10(separator="-")
	# u'1-82238-046-4'

	fake.isbn13(separator="-")
	# u'978-1-202-17094-4'

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

::

	fake.job()
	# 'Theatre manager'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Aperiam facilis expedita minus id. Laboriosam esse cum adipisci deserunt corporis perferendis tempora.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Unde est laboriosam praesentium. Consequatur fugit veritatis neque reiciendis porro voluptate animi. Nemo nemo perspiciatis praesentium alias officia tempora maxime.',
	#     u'Aperiam libero est ab possimus animi consequatur repudiandae voluptate. Praesentium officiis excepturi harum. Aperiam unde nam sapiente placeat. Praesentium harum dicta eius molestias enim.',
	#     u'Ipsam alias occaecati quod. Cupiditate nobis illo voluptate sint. A in earum tempora accusamus provident. Perspiciatis iusto aut reprehenderit officia omnis autem.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Placeat doloremque rerum perspiciatis earum accusantium quaerat.',
	#     u'Maiores nisi temporibus enim officiis.',
	#     u'Laboriosam quod voluptas at earum ut praesentium quidem.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Eius dolore possimus veniam eos. Sit tenetur corrupti porro saepe velit eum. Minus non asperiores odio vitae assumenda quos fugiat reiciendis. Quisquam inventore tempore quibusdam laborum.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Soluta ratione quos quas id quaerat vel.'

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

::

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

	fake.locale()
	# u'unm_US'

	fake.binary(length=1048576)
	# bytearray(b'{\xc5f\xe0\x07\x80\xfc\x9b\xeb\xa8\xd9j\x83\xf9sN\xba\xc9\xe1\xba\x15\x97\xf3T\x8a`\x16\xcbrPa\x17-\xc8\xb9M*\xa2\xf9oB\xa5S\xf6\xe8\xe6\xb62IB\xa5_\xfbaf\xb81N\x9e|\xda\xe3x\xb3\xe6i\xaey\xb8\x02yR;\xf0\xb9\x82\xd9\xda{\x9f-\x01\x92\x1b\xb8%v\xc94\x82E7\xdf\xdb\xa1B\xd4D\xddYk\xda\xf2\x1bz\x1c\x93\xc8"^\xae\xc6\xca\x10\xa07\xbb|\x9d\xa8X\xbf\x1f\xf7\xe2r\x8b\xc0\xfa(\xa5\xeaI\xbbz\xd3A#\xb2"P\xf9\xebcU\xc3\xee#E\xe1\xef\xca\xb5\x81\xc7$\xe5\xa4\xa2\xe2\x9b\x12\x1c\x15\xbe.\xce7u\x88i\xb6W\xd8\xeep\xb4\xf6,\xe3E\x1c\xb5\xdc\xfe\x17\x92OX&c}\x08\xf7\x0e\xba\xa2\xb4~\x84\xe1\x03\xd6\x01\xef&\xbc\xfc\xf5E\x01\xb7\xe31\x14-X\xdb5\x0c\x94\xec\x8aj\x1d\xd2:\xec\xbd\xf9\xea\xa4\xf9\xe7\x1fQ\xbb\xd2\xd0\n7\xfd\xc6B~\x1bX-\xd7\xc4*\x12\xf9\xe6E\xc9s\x92\x8eM\xed\xea8S\x9c<\xac\x98\x10\x14N\xff\x8b\xe6\x86\x82\xd4\x1c\xf7y\x9eiT\x13\xddgz\xa3:$;\x81\x0b\xbb`\xa9\x07i(\x10\x8b\xaf\x8a/\xa3\x9e\x1a\xe2/\xca\x903\xdd\x03\xae\x00\xd3\x0b\x1e\xb5\xd9I\xa5+\xff\x1f\x00t\xa7\xc5\xe6,yb4\xc9\xe1\xee\xa3\xeb\xa3\x90\xe3ueHA\x1b\x06\xa4\xd5+\xe1\x8c@w\xb5^\x93\x99\xe3\x859p\xd1\xb3\xc2\xeb.\xd4Rt\x8c\xb2b\x08\xab\x9d&|\x1fs<\xbf"=}\xc8+"\x1c\'\x9a\xca\xc4\x17V\xc9\xe3\xb5\xec\x90\x98\xa5\x9e3\xfd\xf1\xa4\xfd\x08]R\x9b[\xfe2\x86\x9dD7NX\x01\x14\xed\xd3\xcb\xc5\x8d\x85\xe7\xee\xe6\xff\x8c7\xa1|\x99\x8d\xcbDG\x976Y_x\x1b"MrO\xa3\xac\xfcr\xf4\xe6v\xc8\xa1X>\xe87\xdbb\x7f^\xebe\xfd\xfd\x11p\xdfZ\xf7\xf5\xe3\x8f\x15\x89\'O\x16\xcc\x84\x01H\x86E\xec\xdf\xa6.\x1d\xe0\x18B\xbb\xf9\xf9\x1bnc\x17\xb9\xb9@\xa4\x01\xf1)\x1a\x9cp\xf7\xa2m\xb0-\xa2/\xb2\xde\xcd\x0e\x0b\x1b2G\xffE\xea\xd7\x02\xeb\xec:a\x8d\xe4\xba\x11\x89\x7f\xa1\xd6_\x02\x9c\x95\rrM\xe9Z1p\x9bw\xd3\x81\xbc\xd2\\\xf9\x98\xa5\x862\xf7\xd9\xaeZ\xaa\x1a\r\x1d\x1e\xfe\xc6\xa8\x99\x9e1\xf6\xbc\x9f\xdf\xdf\xf6i$O9\xa6X\x9dx\x84zGU\xf7\xa6\xbe\xd9\x14\xf7\xe3\xac6\xa8\x9bM\x94\xab\x94_9z\xdb\x17\xe5~\xb1\x8e\xeb\xca\rN`Y\x0c\xe8\xb8\x10\x9d|\xf5\x01s\xc3a\xb6\xc7\x11\x92\x18\n\xf1\x8bOm\x1c\x1d?\xd4\xc5\xcbQ\rW\xbd\xfaP\x04\xbc\x9c\x91\xde\xf1\x9cCQ\xf2>\xa7\xed\xb0\xf7\xa6i\xa2%\x9b\xe2#\xfdWy\xb6ty\xe6z1[\xe1/O\xdd\xb4I\xd2_\xc0\xc3\x8a\x06\xfc\xa9\xbc%\x95\xb4\x13\xfd\x049vO\x85\xcf\x17\x04o\xf9\xd9\xc4\xd9\x92\xd5\x83\x95t\x01 \x1f\xdf\x11\x00`\xe5\xfa\xc7s\xf0\xd7\x8bP\xb14\xa7\x86\x92\xa0\xa4\xa6=\xd1!\xb5OdQ\xf2\x98 \xfcX\xcdc]\x18\xb4\x15W\x0f\xc2\xbdE3p\x1b\xfb\xb6hH\xdb\xc5\xc06{U\x1e[%M\xb9P\xb6\xd0XW\xa2\xa3\xbae\x9a\xe9\x87\xc5\xfb\x00\xc9\x00\xd5\xb8in\xbc\xcc\xe1;R\xcc62\x9e\xaf\x04\xa3#Q\x9b\x14\xa7\xd1\x12\x88h\xb2\xf3\xc1\xf7Z\xa9\x15e\xa0W\x87\x16\xc2d%\x96J\xf2o\x8a\x8e\xb4.\xb51l\xe9}\xd9M1\x00s\x9c\xc6\x19\xe3\xe6C!E\x07\xac\x19\x16\xe3j\xc5\t\x814:\x7f\x19\xd7\x1ca\xd7\x13s\x97\xeb\xf0\xeas,u\x1e+c\x89\x8eQ\x0c\xd4]\x8b3E\xf1q)\xb4\x04\xbf\xca^\x07R"}\xd4\xebl\x0ee\x83 \xd5Y\x9dr\xb1=\xe3\xa9\xdc\xc6k\x1bI\x00\xdc\xcaL\xc9\x98\xdcB\xa8#3\x8d\xdb\x97\xd8f^\xc3@\xe7\xe2\xed\x9f9\xc4\xd33\xb75\x18\xe24\xe1J\xe0\xd3\xdf,\x94\x9f\\\xc0\x8c_\xf8Q\xf0\x13\xff L{\xa3\xb4\xd4\x9b\x8dxb8"+\xfeK\xe14\x19')

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

	fake.sha1(raw_output=False)
	# '553873b5276eee4bbb3f467ad0ef3f94411e8c39'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '5090d7b81f9d261caeb40efea4c7e53868899123f4801851c463a9d70e960293'

	fake.uuid4()
	# 'a844653c-4e2a-2f52-5aaa-42540d0144bf'

	fake.language_code()
	# u'mr'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Davison'

	fake.name_female()
	# u'Bethany Burgess'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Mr. Garry Palmer'

	fake.suffix_female()
	# ''

	fake.name_male()
	# u'Albert Ingram'

	fake.first_name()
	# u'Gemma'

	fake.suffix_male()
	# ''

	fake.suffix()
	# ''

	fake.first_name_male()
	# u'Brian'

	fake.first_name_female()
	# u'Joanne'

	fake.last_name_female()
	# u'Brown'

	fake.last_name()
	# u'Marshall'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'(04235) 263760'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'35 Lindsey well\nBrianmouth\nL5W 3FU',
	#     'birthdate': '2005-02-10',
	#     'mail': u'fhutchinson@yahoo.com',
	#     'name': u'Leonard Cook',
	#     'sex': 'F',
	#     'username': u'zbryan'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Flat 93R\nHarry parks\nVaughanfort\nWV3H 1LZ',
	#     'birthdate': '1989-02-18',
	#     'blood_group': 'A+',
	#     'company': u'Stephenson LLC',
	#     'current_location': (Decimal('-29.3197625'), Decimal('169.699110')),
	#     'job': 'Scientist, forensic',
	#     'mail': u'hallgraeme@gmail.com',
	#     'name': u'Carol Scott-Parsons',
	#     'residence': u'Flat 4\nKelly shoal\nStuartborough\nM6T 8TE',
	#     'sex': 'F',
	#     'ssn': u'648-98-5945',
	#     'username': u'ojones',
	#     'website': [u'https://ali.org/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'pvVsiztjrLQFmeiXDsPk',
	#     u'zrLgdKwTQmNSkSTHfpNF',
	#     8152,
	#     datetime(1988, 1, 26, 7, 32, 14),
	#     2863,
	#     u'YJAHQWWZlqgEvVmKspeW',
	#     8182]

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'fwilliams@hotmail.com',
	#         Decimal('2.54517696313E+13'),
	#         4482,
	#         u'rosemarymatthews@winter-matthews.biz',
	#         u'http://www.flynn.com/search/',
	#         2721,
	#         u'thorpejulian@cole.com',
	#         u'valerie62@hotmail.com',
	#         u'JtzwVyehBifZnhPIOuea',
	#         datetime(1985, 5, 27, 20, 51, 33)],
	#     {   u'at': u'cVSpTUNpDInlqrBnsFTJ',
	#         u'corrupti': 332,
	#         u'cupiditate': Decimal('3.26016526206E+14'),
	#         u'facere': u'https://www.smith-murphy.com/posts/main/',
	#         u'maxime': u'FTkwvPKoXRIyagkaEhRh',
	#         u'nostrum': u'eclarke@gmail.com',
	#         u'odio': 66382471.78688,
	#         u'sequi': u'prJTpvPnIjmpGHCQxDgJ',
	#         u'veritatis': -7340752.9234,
	#         u'voluptate': u'pPBdNGxSWjoUtzWDQPbG'},
	#     {   u'cum': {   5: u'CriExBjNEjIGrhXHclym',
	#                     6: [   u'GPkcfpSGedKzUIwcSbPl',
	#                            4243,
	#                            u'https://owen.info/post.php'],
	#                     7: {   5: u'AlZNdTieWbNRnhxjmypg',
	#                            6: u'DXFduPnlTtVhapMtcdkj',
	#                            7: [   u'XwoAWgWPOHsfmCLnjovr',
	#                                   Decimal('6124603733.56')]}},
	#         u'distinctio': {   4: u'wzWQFZEHVZHTuDMeccaU',
	#                            5: [   u'eCXWYnXgeBzkQqOmtFqE',
	#                                   7761,
	#                                   -1357246342.3023],
	#                            6: {   4: 9891,
	#                                   5: u'IByzlxBEgsCvrzCWbjHv',
	#                                   6: [   u'http://hicks.net/wp-content/app/category/post/',
	#                                          u'taylorstephen@yahoo.com']}},
	#         u'ducimus': {   2: 1947,
	#                         3: [   u'djones@yahoo.com',
	#                                9579,
	#                                u'AguJCqSwQYdDKXqWCbnN'],
	#                         4: {   2: u'kfATTmCUcSgQLRIqFJie',
	#                                3: datetime(1999, 4, 24, 7, 18, 22),
	#                                4: [   u'qXrlUpkJMwEreYQGlZnC',
	#                                       u'UwGRKuoetAHpAfPGkjGX']}},
	#         u'facere': {   7: u'JeGdgIEedhpFVrEJGaZO',
	#                        8: [   u'lxFWLmLnHmALxubRjXpS',
	#                               9.0,
	#                               u'glennhayes@reeves.com'],
	#                        9: {   7: 9864,
	#                               8: u'vZvyIRHNCvRvYhrTGkfY',
	#                               9: [   datetime(1999, 7, 7, 10, 26, 26),
	#                                      79611.26703]}},
	#         u'molestiae': {   3: u'aAEbuumoGNjqJvyvjDhY',
	#                           4: [   u'KcBTbzlRuWDVIiahEiOu',
	#                                  datetime(1987, 11, 14, 12, 2, 39),
	#                                  9917],
	#                           5: {   3: u'YGglRJjQIoAzRqMlWsVL',
	#                                  4: u'VwrLlJFUsQQggiAdtMYj',
	#                                  5: [   u'http://www.hughes-evans.com/about/',
	#                                         50]}},
	#         u'nisi': {   0: u'https://www.adams.com/list/category/list/about/',
	#                      1: [   -347841781326146.0,
	#                             Decimal('-20866792555.0'),
	#                             u'laurenrhodes@yahoo.com'],
	#                      2: {   0: Decimal('-727.823493118'),
	#                             1: u'WSorkQzUDuZqJgHggEHs',
	#                             2: [   u'FmgcRuloVsToISIRPvbY',
	#                                    u'rKGAVCoEGHTvjafXfYnp']}},
	#         u'quasi': {   6: u'cZZZUkzPldoUdmROfRnV',
	#                       7: [   u'IYwlASlnQVoyDNrvUGPQ',
	#                              u'lucy02@gibson.info',
	#                              u'ECwfyLGkVnmRXVHQeKpc'],
	#                       8: {   6: datetime(1995, 10, 25, 20, 28, 26),
	#                              7: u'oUkQWhhIoVovPvVQjRnO',
	#                              8: [37328.43967902, u'uqZLYyIEMtXxPICQGbJP']}},
	#         u'suscipit': {   8: 778200316146.48,
	#                          9: [   u'katherine51@hotmail.com',
	#                                 u'LpGkNyyVfVviWflYJpGr',
	#                                 u'YtWuMFeHDVnvqfUeaZew'],
	#                          10: {   8: 9064,
	#                                  9: u'cherylchadwick@williams.info',
	#                                  10: [   u'http://www.miles.org/wp-content/homepage.html',
	#                                          -893669381375.82]}},
	#         u'tempore': {   9: 3815,
	#                         10: [   u'AsKZPutXbZMzaqtKIwBQ',
	#                                 2224,
	#                                 u'https://chan.com/terms/'],
	#                         11: {   9: 9881,
	#                                 10: 4665,
	#                                 11: [595312527233188.0, 6159]}},
	#         u'temporibus': {   1: u'mrQSBubLFfCJHxDreyiW',
	#                            2: [   u'coCimEFvLJYHYgzuYHJA',
	#                                   Decimal('5.0'),
	#                                   u'ILWrvzHvsSbxMBQzTlxC'],
	#                            3: {   1: Decimal('362567.14453'),
	#                                   2: u'pQPCpaRWiGwHchtgNDBG',
	#                                   3: [459, 2450]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'DkvLlRzGEjUBaCHCepCa',
	#     u'http://griffin.com/home.jsp',
	#     datetime(1972, 11, 17, 3, 36, 14),
	#     2651,
	#     u'YUyhrCdRlcgyrIQWhrWn',
	#     u'http://coleman.biz/main/tag/homepage.php',
	#     u'jwitMryXTaeJpMUQlZCe',
	#     u'vtnAOCfLdVNbBEojhanv',
	#     u'OmiygUlmKwpZbGAVDNvF',
	#     u'WKjUramyyJWoueejZkEk',
	#     u'WokQFqwRfwGUOjVZKjYJ',
	#     u'qCBDpMddwKzAhxSHEPiL',
	#     u'BzdUFNLpjrjAeIUyFVQe',
	#     u'OFWWCHvzIZQGpiTssYSC']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   62305.689565494,
	#     1415,
	#     u'http://www.armstrong.com/',
	#     1388,
	#     u'pcLzJYpcPIgvdLhVDlvD',
	#     u'STOouoHPsCrLPbyXXNoY',
	#     Decimal('-21.920262188'))

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([-500970208314751.0, Decimal('-342443686927'), u'oxoUIjVIJCliuIuYriik', u'tFcMdvgvtWsGWlQWglzx', u'oJDajgFPCqTEdNiVKdex', u'marcus20@gmail.com', 2517, u'thomaspatel@gough.com'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'assumenda': 7817,
	#     u'at': u'jjackson@cooke.com',
	#     u'dolor': u'UxSaqURGLxXDWZSmZxYs',
	#     u'dolorem': u'cIvHSYzrJOuEutWkXxbY',
	#     u'doloribus': u'LSmjmcMINKIgRxxmsrTt',
	#     u'labore': 9565,
	#     u'magnam': Decimal('-38311.6268615'),
	#     u'minus': datetime(1974, 5, 15, 22, 47, 58),
	#     u'quidem': 7570,
	#     u'quo': Decimal('93.176179898'),
	#     u'tempora': u'SmalTmLryUxyWIiOfWjc',
	#     u'totam': u'https://oconnor.biz/',
	#     u'vitae': u'http://www.taylor.biz/register/'}

	fake.pyint()
	# 2815

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

::

	fake.ssn()
	# u'003-41-4195'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 4.0; ig-NG; rv:1.9.2.20) Gecko/2017-01-31 01:34:41 Firefox/3.6.15'

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

	fake.opera()
	# u'Opera/9.18.(X11; Linux i686; ve-ZA) Presto/2.9.164 Version/10.00'

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

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

	fake.user_agent()
	# u'Opera/9.71.(X11; Linux i686; ks-IN) Presto/2.9.167 Version/12.00'

	fake.chrome()
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_7) AppleWebKit/5330 (KHTML, like Gecko) Chrome/14.0.801.0 Safari/5330'

	fake.linux_processor()
	# u'i686'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_1 rv:2.0; ko-KR) AppleWebKit/535.31.6 (KHTML, like Gecko) Version/5.0.4 Safari/535.31.6'
