
Language sv_SE
===============

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

::

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

	fake.street_name()
	# u'Strandstigen'

	fake.address()
	# u'Parkv\xe4gen 98\n96269 Helsingborg'

	fake.street_address()
	# u'Aspgatan 89'

	fake.postcode()
	# u'85040'

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

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

	fake.country()
	# u'Sydkorea'

	fake.city_name()
	# u'Lund'

	fake.street_prefix()
	# u'Park'

	fake.street_suffix()
	# u'gatan'

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

	fake.city_suffix()
	# u'Ville'

	fake.building_number()
	# u'374'

	fake.city()
	# u'Lule\xe5'

	fake.state()
	# u'Kronobergs l\xe4n'

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

::

	fake.license_plate()
	# u'21-G339'

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

::

	fake.bban()
	# 'UCLR3734959358446'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB63PRXV5983911181087'

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

::

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

	fake.ean13()
	# u'5800658566201'

	fake.ean8()
	# u'65080689'

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

::

	fake.rgb_css_color()
	# u'rgb(134,0,246)'

	fake.color_name()
	# u'Azure'

	fake.rgb_color()
	# u'29,119,209'

	fake.safe_hex_color()
	# u'#33dd00'

	fake.safe_color_name()
	# u'fuchsia'

	fake.hex_color()
	# u'#b5706b'

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

::

	fake.company()
	# u'Lindkvist HB'

	fake.company_suffix()
	# u'HB'

	fake.catch_phrase()
	# u'Pre-emptive scalable firmware'

	fake.bs()
	# u're-intermediate rich info-mediaries'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'Discover'

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nNils Karlsson\n4951823931931451 03/23\nCVC: 515\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'PPC'

	fake.currency_code()
	# 'BMD'

	fake.currency_name()
	# 'Hungarian forint'

	fake.cryptocurrency_name()
	# 'Dogecoin'

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

	fake.currency()
	# ('BRL', 'Brazilian real')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 2, 20, 49, 25)

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

	fake.date_between_dates(date_start=None, date_end=None)
	# datetime.date(2018, 8, 17)

	fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
	# datetime.datetime(1999, 9, 1, 17, 3, 50)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2017, 8, 2)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 14, 9, 40, 28)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2011, 4, 6, 9, 54, 27)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(1996, 3, 4)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2009, 10, 19, 6, 19, 13)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '2014-09-15'

	fake.am_pm()
	# 'AM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 17, 8, 10, 6)

	fake.date_object(end_datetime=None)
	# datetime.date(1980, 8, 15)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2014-07-12T20:08:31'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2010, 11, 13)

	fake.month()
	# '06'

	fake.year()
	# '1994'

	fake.day_of_month()
	# '20'

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

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

	fake.century()
	# u'V'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1972, 11, 11)

	fake.time_object(end_datetime=None)
	# datetime.time(23, 16, 5)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 3, 20, 1, 37, 34)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1987, 6, 14, 15, 10, 42)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '20:41:26'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 31, 6, 49, 1)

	fake.month_name()
	# 'January'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1476, 1, 29, 14, 1, 41)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(10452, 65242)

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

::

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

	fake.mime_type(category=None)
	# u'text/css'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/perferendis/vitae.mp4'

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

	fake.file_name(category=None, extension=None)
	# u'quam.webm'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'christer46@gmail.com'

	fake.image_url(width=None, height=None)
	# u'https://dummyimage.com/607x614'

	fake.tld()
	# u'com'

	fake.email(*args, **kwargs)
	# u'anderssonfredrik@swipnet.se'

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

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

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

	fake.uri_extension()
	# u'.jsp'

	fake.uri_page()
	# u'post'

	fake.free_email_domain(*args, **kwargs)
	# u'spray.se'

	fake.safe_email(*args, **kwargs)
	# u'johanssonmatilda@example.org'

	fake.ascii_email(*args, **kwargs)
	# 'mikaelandersson@yahoo.de'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'leif12@nordin.se'

	fake.domain_name(*args, **kwargs)
	# u'persson.com'

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

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

	fake.slug(*args, **kwargs)
	# u'magni-asperiores'

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

	fake.company_email(*args, **kwargs)
	# u'aronssonmichael@eriksson.se'

	fake.uri()
	# u'http://larsson.com/'

	fake.ipv6(network=False)
	# '4919:85ec:13f3:f7ab:7b27:4440:d945:d721'

	fake.free_email(*args, **kwargs)
	# u'fjonsson@yahoo.de'

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

	fake.mac_address()
	# u'cc:98:d3:4e:8c:23'

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

::

	fake.isbn10(separator="-")
	# u'1-192-77968-1'

	fake.isbn13(separator="-")
	# u'978-1-897162-14-9'

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

::

	fake.job()
	# 'Engineer, water'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Est quia saepe excepturi expedita ea temporibus. Voluptatem non alias quaerat nam quia. Vel aspernatur soluta iure sapiente.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Natus tempore provident magni voluptate vero perferendis. Repellendus aspernatur eum ullam cum.',
	#     u'Nihil necessitatibus itaque tenetur commodi eius molestias numquam. Est quam iusto omnis minima.',
	#     u'Modi ad numquam excepturi. Fuga quod repellat atque. Adipisci blanditiis odit iusto architecto adipisci at molestiae.']

	fake.words(nb=3, ext_word_list=None)
	# [u'molestiae', u'ab', u'rem']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Modi deserunt in ab unde.',
	#     u'Iure repellendus amet at maxime consequuntur consectetur.',
	#     u'Veniam necessitatibus temporibus nemo eaque molestiae assumenda.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Nemo vel non veniam quasi. Officia aspernatur ipsa sapiente. Animi minima debitis ipsam nobis qui earum.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Occaecati saepe amet repellat quos.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'+2I8RDhm#q'

	fake.locale()
	# u'bn_IN'

	fake.binary(length=1048576)
	# bytearray(b'\xa0\xe8\xfa\x7f\x94\xce\xa74y"\x91\xf6yaZ\xe0\x14\xc5K\x1f\x15\xa88\xdf=\x16\xae\xb4\xb83\x06\xcc\x046\xe5\xbdh-X\x05\xb5\xec(\x98\xcc\x91\x00\xf4|\xe9\x04\xaf\x7f:I,\x00\x143\xbd\x0c,\xd5\xe56\xee\xc7\xc8\x11OH%\xc7\xcd\xa1\x81\x01\x13\xe8\xca\x15\xc8\xaf\x19e\'tH\xc1\x01f\x18g\xc3\n\xd21\xc5\xc9\x7fz\x13\x10j0\xd9\x8e[\x91\x15\xd7\x1a\xd8\xdc;C\x04\xcdQ0\xac\xd5\xaf\xa9\xb9$\xe0HO\x13\x1fW9\x0eS\x9e]Z\xa2\xf7\xb2\xb5v\xcfj=\xcd\\\x1aq\xdd\x98\xe9-+4S/!C\x9b\xcb\x94\x8b\xea\xf6Y\xeb\x9aa7\x9eV#EM\xa7\x92\xec\t\x01\x95\xf7u\xe3\x89\xb9\xe6\xf5\x142\xbc\xc8\x88\xd3\xd0\x96\xd9s\xb8\xd5\x03-\x04.\xf4\'\xdf\x9c\xc2\x878\xe9\xd6\x999\xf7\xc7>\xf7\x92\x84\xb7\xe0\x8e\x907\n\x1d\xe4\xfaP\x95\x99!\x01@\r\xb7j/\x03\xe5\xf4\xa3\xff\x98\xc2V{\xd8\xec\xb1J\xd0H\x7f\xed\xbd\xec\xc0\x068\xdf\x05\xd9\x1f\x83\xb5\x06\xb9ii\xc6U\x82\x9cl\x08\xea\t\xd7\xf7\x13\x07\xef\xd9A\x00T\xe9K\x00\x14\xc6\xa8-<\xe2A\x07\xf2\xe4\x1e\x97\x94\xe6\xcd\xa3d\xaeS-\xe0\x15fS\xaa\x100BL\xbews\x9bO~\x8a\xdf@H8u\xa41\xc6\x95k\xeb%\x00g`\xe8W\xc8T\x12!\xc26\xab&\x06\x919\x9c\x0356r\x87\x8f()br\xc9<\x96\x94\xde\x1d\x0f\xaf\x9fa\x05\x87\xda\xc9\x87"S\xb8.\xb5\x105N]\xf8\x9c\xd7\x8e\xe1\x97\x96h\x84\xb5\x90U\xec\xd8\xf7\x87\xa6\x95e\xe2\x01\xff\x97\x93\x8d\x01A?:\xfe\x0bE\xac^\xbf%V\x04\x9c0\xcb\x98\x7f\xf4\x07\x8a\xa4\xa5\xf4X_\x9c\xa7fP,`\xb8\x8e\xd86J\x05\xf1\xba\x07GL\r\x8b\xe6\xb1Y\xd1\x82\xd1\xc5\x84e\x0e\xa7P\x9ekc\xefY\xab\xa5\xa8\x9d\x1b\x17\xb5\x10\x04\xf2\xb1\xd5O\xeb\xd6\xf8\xa3\x07\xa7\xae!e\xf7M<L$\x11\x8e\xe0jtc\xad\x83qu\xec\x13\x7f\xa6\x04\xbd6\xaeE,\xa3\xf9\x13\xf8L\x88\x07_3$\x7f\x8b\xdbL\xd79\x18ny\\\x8bQ\xf0\x95\x7f\xb1gJ\xa3f\nM\xe8\x9b\t\xf2\x9ed\x1du\xf6\x9b\xdd)\xabb\x81\xe70\xb47FP;\x03]\xa4P>\x1e\xfc\x92\x17\x99\xdb\xd0\xf3\xeba\x1fu\x15\x9b\x0c\x08\xa9\xd2\xe1;\x1c(6\x92\xa3HR\xad\xee\xdd\xc8:X\xdb\xc8z\x1fB6/\x99A\x15\x98wn)}\xea\xa9\x03\xae\xc9\xb8\xe3\x9d\x9a&\xb3\x94\xc9\x8d\r3\xa7\xc8\xb2H\x84\x92\xd2\x0bX\xea\xf2\xffO\xf3\x03\x05\x95\x84\xdcB/Q+BA\xd3\xc1\xfa\xc9\x85L\x03D\xddG\xe0\x7f\x18\xe4-\x04\x81\x0e+j\xd8\x1bx\xfa\xf7]u$\xef\xa8\xec\xfc\xf7\x16w\xe6\xfc\xa2\x8eB\x99\xd2X\xfa\x98fr\xd2\xbc\x0e\x03z\xc7b\x91\xde\xff\x81\xba\xbb\xef\xe9\xa1\xcaA\xe7}!\xb3\x0b\x88%;H\xb3OB\x99\x84*@\xfds<\xab\xf9\x97\xcf([\xde\xe9Tb\xbb\x83\xbdaV\x10S0\xca\x9d\x01\xab\x11\x06\xa4\xd25\x91\x14\xc7\x81\xbb\x96*\xabWx\x01_\x8b\x01x\xe4\xf2\x8a7\x97\xca\xdcmg{"\xd4\xb2\x99\xbbH\x9e~m9e\x83$\x0e\xb9\x06\x91\x03\x82\xba\xe0\xa63\xf1aQ\xb7\x15+x\xec\xa2\x18\x9a\xe8=\x80\xba&\xdd*\xabZf\xdfW\xc1r\x04\x80|\xff\xc7/\xc6/\xf3\x8c\xc9\xadO6{\x0b?\t\x7f3\x17\xf3\x94\xbbM\x93\xedY\xa4o\xf3\xd5Up>\x06h\xad\xe1%\x9c,\xe7\x91\xa4\x94(\xa0C\x8e \xe1\xd3\xfc\xc8\xd2FSbX\xe5V\r\xdd2\xfa\xd6\x17\xa7q\xea+t\x17\xd4\xf7w\xedD\x18f\x00L\xa7\xb7\xa5)\xa0\xd8\x11j\xa6v"\x86ri\xd2\xf7[\x08d\x1a_\xde\xb1+\xe1/\xf8\xd1e\x93\x8c\x01K\x13\x08Q\x0e:&\x12Z7\xa6G\x7f3\x1c&\xf7\x10\x98H`FZ<\x05m\xe9NI\x91!\x90\'\xd0!\xeb\xc6\x04C\x93\xf3\x15\xd9\x84l\x1b\xef\x9fuw\x04')

	fake.md5(raw_output=False)
	# '002534a491bfcdfc8468425c73178661'

	fake.sha1(raw_output=False)
	# '48584df5327edfad63b693c233a15ca3d83a445c'

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# '52855fcc-451a-a6fd-cc0f-acee49e4e518'

	fake.language_code()
	# u'bg'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Andersson'

	fake.name_female()
	# u'Maria Andersson'

	fake.prefix_male()
	# u''

	fake.prefix()
	# u''

	fake.name()
	# u'Kristina Ros\xe9n'

	fake.suffix_female()
	# u''

	fake.name_male()
	# u'Carl Gustafsson'

	fake.first_name()
	# u'Eva'

	fake.suffix_male()
	# u''

	fake.suffix()
	# u''

	fake.first_name_male()
	# u'Rune'

	fake.first_name_female()
	# u'Rebecca'

	fake.last_name_female()
	# u'Larsson'

	fake.last_name()
	# u'J\xf6nsson'

	fake.prefix_female()
	# u''

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

::

	fake.phone_number()
	# u'071-83 26 19'

	fake.msisdn()
	# '7418826825689'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'Kvarngatan 4\n26139 Helsingborg',
	#     'birthdate': datetime.date(1983, 7, 31),
	#     'mail': u'mjakobsson@swipnet.se',
	#     'name': u'Margit Bergqvist',
	#     'sex': 'F',
	#     'username': u'johanssonhjalmar'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'Kyrkov\xe4gen 407\n62417 G\xf6teborg',
	#     'birthdate': datetime.date(1970, 4, 15),
	#     'blood_group': 'A-',
	#     'company': u'Viklund Nilsson AB',
	#     'current_location': (Decimal('46.261634'), Decimal('-84.274732')),
	#     'job': 'Museum/gallery curator',
	#     'mail': u'dsvensson@spray.se',
	#     'name': u'Margareta Blom',
	#     'residence': u'Gengatan 16\n08594 S\xf6dert\xe4lje',
	#     'sex': 'F',
	#     'ssn': u'320702-0656',
	#     'username': u'kerstinlindell',
	#     'website': [u'https://www.engstrom.com/', u'http://johansson.com/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([7906, Decimal('-7.97857136297E+12'), 45055.5236233, 2792, u'JIMlFupQRxUyfSpyJzsf', 7.65684014866, 5813, u'NGWnlbOfkIwMimXrJAae', 6102, u'GJBcUkILElXbfiCYWKtl', u'LHemMzoHMuwcjSGiiUHg', -2955.0])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'https://www.andersson.com/post/',
	#         u'tGGVHSbueZkJtYfukJKi',
	#         datetime.datetime(1982, 12, 28, 14, 7, 18),
	#         u'FAWEwMhVnnwehxshiVAD',
	#         Decimal('9.609'),
	#         u'nytlTDxmjxfXZIqrLLVY',
	#         267943.0,
	#         datetime.datetime(1993, 11, 24, 1, 1, 3),
	#         u'julia33@rosen.com',
	#         u'afnPTzxNDKKemNXpEGHt'],
	#     {   u'ab': Decimal('-329209822.525'),
	#         u'beatae': u'HhPJiNnihhoxhmTJeUWY',
	#         u'debitis': -636024.56118,
	#         u'facilis': u'https://www.sundin.com/main.php',
	#         u'harum': Decimal('1745153.91'),
	#         u'occaecati': datetime.datetime(1986, 1, 31, 15, 28, 22),
	#         u'quibusdam': u'https://eriksson.se/wp-content/home.php',
	#         u'reiciendis': u'margaretaljungberg@swipnet.se',
	#         u'totam': datetime.datetime(1988, 12, 29, 22, 25, 49),
	#         u'vero': u'vQTbhtzrpCrxSZOWTbzg'},
	#     {   u'ad': {   3: Decimal('159.147022357'),
	#                    4: [   u'perssonbengt@andersson.com',
	#                           u'ilaFiRrPgvKfxtrgaHXM',
	#                           Decimal('-4.71748474515')],
	#                    5: {   3: u'RTUAzVAErqRdJrvyaNcC',
	#                           4: u'eYmuZgetRTkvRMdrDMDS',
	#                           5: [   u'NOpxtaOdaXuRfNtYriPB',
	#                                  u'wmoZCcwbalmEETHRdPJP']}},
	#         u'aspernatur': {   4: Decimal('517.47'),
	#                            5: [   8309,
	#                                   u'https://www.andersson.com/terms/',
	#                                   6939],
	#                            6: {   4: u'http://www.johansson.com/search/categories/category.asp',
	#                                   5: u'xpODVbhVydawMYUcLrgH',
	#                                   6: [   6584448206801.4,
	#                                          u'vhqoHAPCOsTnEcHcgvtP']}},
	#         u'corrupti': {   8: u'UPdDxkKPiuMdUKODZEPb',
	#                          9: [   u'http://www.nilsson.com/index.htm',
	#                                 u'eLYKwYZAOfNjcAceQllI',
	#                                 Decimal('-7442.4976452')],
	#                          10: {   8: u'BSFTCGxHOJZpKkrKmoZU',
	#                                  9: 5627,
	#                                  10: [   u'TYaNGFIokjtLeFxWJFQP',
	#                                          u'erikssonkarin@telia.com']}},
	#         u'dolorum': {   7: 5748,
	#                         8: [u'eIULOTkpLkMFlJKBYUFI', 3581, 6145],
	#                         9: {   7: u'DJXYNrrGGZKIXZYdeekD',
	#                                8: u'TnMkiFHoLgkSLxygejMp',
	#                                9: [   Decimal('614173783911'),
	#                                       u'https://www.jonsson.com/']}},
	#         u'harum': {   1: -795.2603,
	#                       2: [   u'UTBmciBMSufvPrhhhiFk',
	#                              u'dCReVXMxcQZwhVPKnhja',
	#                              datetime.datetime(1988, 1, 2, 16, 42, 53)],
	#                       3: {   1: u'JPvUONCwCQMtrZHBbKAS',
	#                              2: u'tcLYfjGLGMRBWdVoLotQ',
	#                              3: [   u'kristerhallberg@jansson.com',
	#                                     u'QUgpUurUrbOrfXWtSzCQ']}},
	#         u'laudantium': {   9: Decimal('-5833180.9'),
	#                            10: [   u'erik31@swipnet.se',
	#                                    u'WCTAXLvicYgIcBNibZzY',
	#                                    u'https://andersson.com/explore/wp-content/categories/homepage.php'],
	#                            11: {   9: 69042228610747.2,
	#                                    10: u'gpFXcYWQxlhZMueqvJLv',
	#                                    11: [   u'TnzjRQLDooSWCzoSSDHM',
	#                                            u'oVVsCzaWKnlgaJMBcLwd']}},
	#         u'pariatur': {   6: 5678,
	#                          7: [   u'IxgghTUPFrCTPyBskoLq',
	#                                 u'nvdWwXvfOZCLPvhisHXy',
	#                                 49665.6149],
	#                          8: {   6: u'sPxWvdiMSrPXfnsprbai',
	#                                 7: 8511,
	#                                 8: [   u'YxkntbWplXPagFcGiXQp',
	#                                        u'YFlQzIWqUXfdMtppdKYL']}},
	#         u'quam': {   5: u'MRgfvcaNzzeCkLGJQYWX',
	#                      6: [   u'http://www.augustsson.com/',
	#                             u'AHZQYZLxwYMRhcKNSfdj',
	#                             u'https://forsberg.com/author.asp'],
	#                      7: {   5: u'BYAaPIsjHPBjPqvluyjZ',
	#                             6: u'http://persson.org/main/categories/posts/login.htm',
	#                             7: [   u'uVcwsPTnqEzyadKhKQrU',
	#                                    u'http://www.eriksson.org/categories/search.html']}},
	#         u'tempore': {   2: 191,
	#                         3: [   u'OBgUNUQbWhqpMeEFcyXR',
	#                                datetime.datetime(1986, 1, 15, 5, 45, 25),
	#                                34847468.5373242],
	#                         4: {   2: u'mCYffQcAXKNUgnnizGHH',
	#                                3: u'fnGXklLqeDPlHmfGjRGl',
	#                                4: [1389, -7954904109.8132]}},
	#         u'voluptate': {   0: u'HNZyVFURyOCmGIufrksb',
	#                           1: [   u'RggObyRTWFKrlmGfaWHC',
	#                                  3269,
	#                                  u'vUsxqRhLoCKuqQqpIDPj'],
	#                           2: {   0: Decimal('73.645'),
	#                                  1: u'ACbnDQWgWoNtCQtxGUrM',
	#                                  2: [8134, u'uUwUCkDWSdlOdpdkemmt']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'ltzMnCtTTwrOYzaXuPYP',
	#     u'JnpJiLNYmjnkAvPkLRdH',
	#     u'uitLEnplnpFohFkAnCuP',
	#     u'yeJpecNYoUOKJccyVqJP',
	#     datetime.datetime(2001, 9, 28, 3, 39, 2),
	#     u'ulHtyjEjtTVprwmRyncr',
	#     u'GmFbgWbPmgpCozyTfECQ',
	#     1850]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'NcNOLPLIXKAhrVqhMYpA',
	#     u'https://gustavsson.com/list/wp-content/login/',
	#     2180,
	#     293,
	#     6087,
	#     u'YAbfRiHuOhbrrWIQATER',
	#     Decimal('11418124.0'),
	#     u'sarakarlsson@karlsson.org',
	#     3407,
	#     u'erlIZBLHiqjEgzbBboqv',
	#     u'kDxXWKbbGitrhxPsHmGx')

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'FfmXQJcXqOBWaDEdNTXh', 92260991206.17, u'GhZsuiuzmWmAhATvNkae', u'wJBPnjyegIjwKFzneeuR', u'KgNTulZqcPDBJOsjPkja', u'DGKChdppgtqcFxRMZUJw', u'CGzgAapZjTmybLTrptGA', Decimal('-16.713296828'), u'anderssonemanuel@johansson.se', u'sYYqZgVUJhdQZmTtlyyD'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'ab': 5858,
	#     u'accusantium': -76417.0,
	#     u'atque': u'BDZGKgFGifDspGrcnRQp',
	#     u'cum': u'kXZiITDsHXWxwSBtbcpG',
	#     u'deleniti': u'XbMvHiUEposRryjopHWD',
	#     u'expedita': datetime.datetime(2009, 4, 6, 9, 30, 26),
	#     u'labore': 5207730610.5157,
	#     u'laborum': u'http://carlsson.se/about.asp',
	#     u'numquam': u'MfiUGOkxolZPnnRwtLit',
	#     u'officia': 972.826668,
	#     u'quos': u'vRqGHEZipYxyDrEGCwFr',
	#     u'veniam': u'xIqLpWsACmDtBdefhMRU',
	#     u'voluptatum': u'johanna76@gmail.com'}

	fake.pyint()
	# 5578

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

::

	fake.ssn(min_age=18, max_age=90)
	# u'721030-5277'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.0; cv-RU; rv:1.9.2.20) Gecko/2013-06-03 18:42:52 Firefox/3.8'

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

	fake.opera()
	# u'Opera/8.20.(X11; Linux i686; or-IN) Presto/2.9.162 Version/11.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.2; 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; Intel Mac OS X 10_10_0) AppleWebKit/5341 (KHTML, like Gecko) Chrome/18.0.813.0 Safari/5341'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; ce-RU) AppleWebKit/531.14.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B119 Safari/6531.14.4'
