
Language bs_BA
===============

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

::

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

	fake.building_number()
	# u'22211'

	fake.street_address()
	# u'78492 Johnson Springs Suite 381'

	fake.postalcode_plus4()
	# u'38885-3025'

	fake.city_prefix()
	# u'East'

	fake.military_ship()
	# u'USNV'

	fake.city()
	# u'South Jaredshire'

	fake.zipcode_plus4()
	# u'20634-3351'

	fake.state_abbr()
	# u'NJ'

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

	fake.street_suffix()
	# u'Inlet'

	fake.city_suffix()
	# u'shire'

	fake.military_dpo()
	# u'Unit 1297 Box 7938'

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

	fake.country()
	# u'Kiribati'

	fake.secondary_address()
	# u'Suite 478'

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

	fake.postalcode()
	# u'47103'

	fake.address()
	# u'865 Coleman Circles Apt. 285\nGarrettberg, KY 86001-2915'

	fake.state()
	# u'Wyoming'

	fake.military_state()
	# u'AP'

	fake.street_name()
	# u'Dave Point'

	fake.zipcode()
	# u'08843'

	fake.postcode()
	# u'78033'

	fake.military_apo()
	# u'PSC 8644, Box 6135'

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

::

	fake.license_plate()
	# u'BOV 424'

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

::

	fake.bban()
	# 'GGZR9950816899010'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB92DSXL4095768945588'

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

::

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

	fake.ean13()
	# u'2633357315374'

	fake.ean8()
	# u'08894724'

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

::

	fake.rgb_css_color()
	# u'rgb(53,139,75)'

	fake.color_name()
	# u'DeepPink'

	fake.rgb_color()
	# u'196,29,175'

	fake.safe_hex_color()
	# u'#aa7700'

	fake.safe_color_name()
	# u'fuchsia'

	fake.hex_color()
	# u'#77ebbf'

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

::

	fake.company()
	# u'Williams, Martin and Flynn'

	fake.company_suffix()
	# u'Inc'

	fake.catch_phrase()
	# u'Multi-tiered empowering orchestration'

	fake.bs()
	# u'aggregate B2C relationships'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 16 digit\nRichard Gutierrez\n3544002108866693 01/26\nCVC: 034\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'AMP'

	fake.currency_code()
	# 'CRC'

	fake.currency_name()
	# 'Iraqi dinar'

	fake.cryptocurrency_name()
	# 'Dash'

	fake.cryptocurrency()
	# ('UBQ', 'Ubiq')

	fake.currency()
	# ('BGN', 'Bulgarian lev')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 14, 8, 26, 48)

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

	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(1990, 9, 5, 20, 37, 35)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2015, 11, 1)

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

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

	fake.day_of_week()
	# 'Wednesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2013, 10, 28, 13, 52, 4)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2008, 4, 17, 8, 27, 53)

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

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(2015, 5, 3)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2017-01-18T23:48:55'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2011, 6, 12)

	fake.month()
	# '10'

	fake.year()
	# '2017'

	fake.day_of_month()
	# '18'

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

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

	fake.century()
	# u'XVI'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(1903, 10, 14)

	fake.time_object(end_datetime=None)
	# datetime.time(17, 30, 58)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 1, 1, 48, 8)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1992, 10, 15, 2, 39, 25)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 12, 16, 54, 4)

	fake.month_name()
	# 'January'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(498, 3, 5, 6, 15, 47)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(10987, 16723)

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

::

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

	fake.mime_type(category=None)
	# u'video/webm'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/nostrum/similique.html'

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

	fake.file_name(category=None, extension=None)
	# u'qui.csv'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'andersonsusan@yahoo.com'

	fake.image_url(width=None, height=None)
	# u'https://www.lorempixel.com/489/67'

	fake.tld()
	# u'unsa.ba'

	fake.email(*args, **kwargs)
	# u'don96@hotmail.com'

	fake.url(schemes=None)
	# u'https://www.stevens.edu.ba/'

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

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

	fake.uri_extension()
	# u'.php'

	fake.uri_page()
	# u'author'

	fake.free_email_domain(*args, **kwargs)
	# u'outlook.com'

	fake.safe_email(*args, **kwargs)
	# u'nortonwilliam@example.com'

	fake.ascii_email(*args, **kwargs)
	# 'dylan00@hotmail.com'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'jameshale@hernandez.ba'

	fake.domain_name(*args, **kwargs)
	# u'russell.ba'

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

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

	fake.slug(*args, **kwargs)
	# u'id-tempore'

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

	fake.company_email(*args, **kwargs)
	# u'mcleantheodore@gutierrez-richards.unsa.ba'

	fake.uri()
	# u'https://johnson-phillips.com.ba/category/'

	fake.ipv6(network=False)
	# 'f7ef:346f:6a10:74a9:e866:9ac:db9c:8a24'

	fake.free_email(*args, **kwargs)
	# u'nmoon@hotmail.com'

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

	fake.mac_address()
	# u'ba:77:b3:09:3b:74'

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

::

	fake.isbn10(separator="-")
	# u'1-352-99357-0'

	fake.isbn13(separator="-")
	# u'978-0-9551911-9-0'

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

::

	fake.job()
	# 'Armed forces technical officer'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Nam nihil ullam nisi explicabo non vero. Repudiandae quo numquam veniam vel cumque. Quas itaque necessitatibus unde.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Unde optio dolorum aut assumenda quibusdam. Ullam est maxime illum consectetur perspiciatis.',
	#     u'Illo reiciendis delectus. Debitis quis reprehenderit illo exercitationem molestias velit.',
	#     u'Eos rerum sunt dolorum molestias. Laboriosam sed fugit. Dicta nihil nesciunt molestiae sequi nesciunt.']

	fake.words(nb=3, ext_word_list=None)
	# [u'aspernatur', u'minima', u'dignissimos']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Laudantium assumenda porro deserunt itaque exercitationem nemo.',
	#     u'Rerum cupiditate occaecati deleniti fuga quo ex harum.',
	#     u'Excepturi cumque debitis praesentium quasi.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Aliquam voluptatem eos soluta.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Ex dolore ab tenetur adipisci laboriosam.'

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

::

	fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
	# u'!zC)Z&_rW5'

	fake.locale()
	# u'sq_ML'

	fake.binary(length=1048576)
	# bytearray(b'1\x81\xc0D\xa0i\xa0\xac#\xe1\xbf\x00i\x05\x86\xa4\xa5h\xed\xe9Q\x98\x12\xd7\xc9\nT\x8e\xb6\x8a8\x91\x84w\x15+t\x81\x9a\x87\xcf\x1c\xaeN8Y\xfe\x0e;^\x18m5\x84\x07;\x8c\x1f\xa4\x1ds\xe70}_K:#\x0fOM\x10\x96\xdfL\xa1Ke\xbf\x82a,\xd0A\xdb\xba\x808o\x94mM\xb7\x1e\xcbD\xee\xb8\xc6\xcf-z?\xae\x8f\x7f\xb8\xac!\xdb\x9e\xaa3D\xa4YG@\x80\xf4i;F\x13\xc0\x19%[\xefE\xc0\xe6\x9d\xdb\x90U8\xd2\xef\xc9Gy\xc9\x9f\xd9l\xd8B$\t\xafq\xc2\xc1\xce\xadV\x8dJ\xf5\x1dS\x93\x82]w5\xd6\xc4\xb58\xc0%\xd9\xaf\xc2\xd5Q\x16\xadz#\xc9\xc2\xa0\xa1\x01\xdf\x18\xde\x0c\x80\xc0zHx\xd3V2\xcf\x11\xc9\xee\xaa\x04\xec\xd5U\xd5$\xb3vx\xd8L\xb4`8\xbe\xc60\xa1\x98\x96\xe9:\xa18\xbb\'\xcd\xf1\xe7v\x9d\xef\x9d\xf9JI/W\xee\x9f\t\xe6\x8d*\x02\xcf=\xa9V=\xb4\xb1\xd7<*\xff\x82\xc3aBUz\xe6\xf3\xdc\xf8\xb7\x93\x1f\xdap\x98\xbaN4k\xcc\xd4t\xa8\xae\x9cen\xfeA\xc4R\xf3!V\xde[\xc8\x85r\xd4\xf9i\xcb\xfd\xc2\x86\x8e\x97{\x0e\xfbm\xe5\x89\r#Nc\n\xc9\x81\x88M\xf2\xab\x86^x\xd6\x1a].\xc3#2b+\xea\xf4\xf0xed\x7f$\x8f\xa0\x02l\xda\xd4\x1e\xb1%\x00\xe1&c\xc6\x0b\xac\x9a.]\xec\x95&\xd6(\xe0\x96kQ\xff\x89\x86\xe0\xde2\xa7\xff\xb9\xc6P\x06\xf4\xea\xe9zRo\x9d\xacX\xa0\xc6f\xcf+\xb4\xdd\x0f\xefhk\xce\xe0\'JW\x1f\xcd# \xa5\xab\xda\x04b6\xb1\xa4,i\xfdb\xa7\xa9\xa7\x02\xbf\x0f\xc3\xaeZ\x8f\x10%G\xfd\xaf\x9as\x90sP\xec\xce\x94\xeenZ\xad\x81o?\x0b\xae7\xe1\xf7PN\xd8\x92\xba\xdb\xd0\\S\xaf\xb7\x98<+\xab\x8d\xc5\xfe\xfc\x9b\x0f\x94U0\x00|\xe9\xc3 \xf4\xd3\xfc\xcc$\xfa.e\xc8_3\xc3;\x84\xca\x1fj\xff\x97\x9a9I\x9de\x0c\xe9@b\xd1\xdd\xe1\xf7g\x12\xac\xf2\x01\x05\xe0\x8c\x06\xa9y\xfay\xc6\x18\xa6O\xf2\xcd\x9b(\xa0\x81\xa8t\x8a\nRT\x1c\xa8}\xa6\\\xcem\x13\x0bua\x92\xec<\x01C<\x1f;\xf5\x05\xec\x1cg^<\x9b\xc4o\x7f\xaf\x7f\x06$\x19<\xa2.UG!\xf7\x04ht\xf9\xf2V\xc1%\x87u\x18\x83e\xea\x8c\xc5\x9b\xf0\xec\x18\xd3\xc4;K\xf1\x14\xf9\x1f\x1b\xff\x01\xa3\x82z\x05Rv\xda\xb2\x13F\xdd+\xcd\xad\xa7\xbc-\xfe`\xb9(\xc2\xd7\xcf\x9c\xc21\x15?z\xe3\xac\x9b\x90\xbd`\x96c\xae\x9d\xba\xec\x9b\xd3\x0c\xa5\xed\x81#w\xca\xbe\x84\xcc\xde\xe3\xf8\x00*\x18\xf9\xd8G\xf6\xe4\xab\xefF\xa5\xa9S\xeb\xce"\xcf\xc3\xcdwKwA\x7fi\xac,\xce\x7f\xb5\xa7\xc6\x06P=\xcd\xf6\x97\xfa\x83&\xb6\xe6sb\xafV\xc1A\x11\xd6\x07\xc0N,\xc1e3\x07\xe2\xab\xa0jB\x9d\xd7\xbc\xcd\x81T\x03\xed\x91\x02f\x9a\xa4\x06\x1fB\xcb.\x98\xbe\xfc\xf4\xc0\x1b)@\'`\xe2|\xb2B_\x8f\x8f\xd5*\xe2\xda\xb3\x9clG\x8d\xafx\xb2\xc3$=_\x17p\xf9\x01d\x90F\x98\xf4\x93\xbdlR4E\xd2\x0c|Uw_#\xf8\xfe\xd9\xf4\xc9\xd9\xf3\xf8\xdaY\x84\x8a}|\xf0\x89\x1f\x94\xa9-\xf8}\x08\xb1\xa50\xb6\xc0\xfc\xf8\x17\xdf\xe3\xf0\xb9\xebX3\xa8\xc6\xeb\x9f\xd0_\x14y\x8eA\xdd\xc5\xa3\xe1\x1a\x8e\xc4SA\xbe\xb6x\x9d\xc0\xcar\xdf\x11\x06\xb4(.ln\xb7\xa1\xe0(\xe5\xa7~7$]\xd6\xa5X\x99\xc6\xb7\xea\x880\x97\xb3\x10m\xed\x188I\x8c\xff\xfd\xce\x1d\xaf3\xa9%i\x96|j]y.\thh\x01\xa5\x8c:cp\xc2)\xf4P\xfd\x81\xf3\xbfU\n\x98\x1091\xb9\x90\x85\xacE4\xba_\x86Z\xb0\x964\x10\xbb\xdb\x83r\xb7%f\x8d\x10g\x05\x10*[\xd1\x7f\xf9!>\xb3\x8d\x1b\xf3\xab\xca\xf2Y\xc3@*b\x08\xb8\xb1\xfe\x85&\x193}bn\xac\x110\xa6R\xe6,?\xac}')

	fake.md5(raw_output=False)
	# '12e53fb818682573ae3b201bb53e89e0'

	fake.sha1(raw_output=False)
	# 'eab67de893a1bbd23fc65fc1177998b24472bea8'

	fake.null_boolean()
	# None

	fake.sha256(raw_output=False)
	# '933101272871107dd252536072e1e334943842f6f80eb67ed6572b66acb4fd96'

	fake.uuid4()
	# 'c2c400ab-61f4-ba82-a327-d4f8f29297d2'

	fake.language_code()
	# u'hak'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Klein'

	fake.name_female()
	# u'Ashley Little'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Mr.'

	fake.name()
	# u'Nicholas Taylor'

	fake.suffix_female()
	# u'DVM'

	fake.name_male()
	# u'Adam Cruz'

	fake.first_name()
	# u'Kevin'

	fake.suffix_male()
	# u'MD'

	fake.suffix()
	# u'PhD'

	fake.first_name_male()
	# u'William'

	fake.first_name_female()
	# u'Latasha'

	fake.last_name_female()
	# u'Weiss'

	fake.last_name()
	# u'Chandler'

	fake.prefix_female()
	# u'Dr.'

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

::

	fake.phone_number()
	# u'034 899 444'

	fake.msisdn()
	# '2002171524423'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'4455 Lynch Square\nRogerstad, FM 95325-0396',
	#     'birthdate': datetime.date(1963, 9, 9),
	#     'mail': u'valerie81@bih.net.ba',
	#     'name': u'Daniel Erickson',
	#     'sex': 'M',
	#     'username': u'ewalsh'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'432 Sheri Gateway\nWest Jeremy, WA 43040',
	#     'birthdate': datetime.date(1927, 12, 11),
	#     'blood_group': 'AB-',
	#     'company': u'Davis, Allen and Jones',
	#     'current_location': (Decimal('-45.4385455'), Decimal('-33.237438')),
	#     'job': 'Land/geomatics surveyor',
	#     'mail': u'tylerford@yahoo.com',
	#     'name': u'Thomas Moreno',
	#     'residence': u'115 Barry Freeway\nEast Richardberg, SC 48523',
	#     'sex': 'M',
	#     'ssn': u'587-72-4755',
	#     'username': u'joshuacarter',
	#     'website': [   u'http://www.martinez-kerr.com.ba/',
	#                    u'https://house.net.ba/',
	#                    u'https://fowler.gov.ba/',
	#                    u'http://www.zuniga-meza.edu.ba/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'rodneyporter@gmail.com', u'bTfFuUEFbpKXKzqjKpfB', 2407, datetime.datetime(2001, 2, 9, 20, 9, 58), u'IgSRbcnhQQsHdEuBgtQq', u'http://solis-stewart.ba/post.html', 2462])

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'YyoAXJPnfeWNwbzrxfaK',
	#         u'https://browning.net.ba/categories/categories/search/home.htm',
	#         u'ZuSCLHkOInhIYMsXSrpB',
	#         u'ljliZUAWHykbsQKWMjxi',
	#         u'ycastro@cruz.net.ba',
	#         4362,
	#         -928632613.0,
	#         u'http://www.simpson.gov.ba/',
	#         datetime.datetime(1993, 3, 29, 0, 42, 37),
	#         u'UnBZDJXEsLDGqzDfmBlO'],
	#     {   u'ab': 1597089784542.96,
	#         u'beatae': -134147.20169,
	#         u'doloribus': -7659973520.95689,
	#         u'magni': u'ian19@yahoo.com',
	#         u'nihil': 3828,
	#         u'similique': u'FMSCQGHpIsOBuEwJZiPw',
	#         u'unde': Decimal('-8.98157996787E+12'),
	#         u'velit': 3260,
	#         u'voluptatibus': u'CClfrsmLBGMFnyuDexXC',
	#         u'voluptatum': Decimal('9.17173')},
	#     {   u'accusamus': {   4: 2288,
	#                           5: [   u'https://macias.unsa.ba/',
	#                                  u'jacob90@burns.net.ba',
	#                                  u'smithamber@reid.unsa.ba'],
	#                           6: {   4: u'geoffreyschroeder@young.edu.ba',
	#                                  5: u'xyMBCdymXfNjEpdpkuxd',
	#                                  6: [   datetime.datetime(2018, 3, 29, 11, 39, 51),
	#                                         -5647825.176]}},
	#         u'adipisci': {   9: u'NDUZyajqAEcRnzMeuiFP',
	#                          10: [   u'kMIyvdtEZhEeGOPdpyVC',
	#                                  u'jeffreydecker@hotmail.com',
	#                                  Decimal('-4.4')],
	#                          11: {   9: u'TdHjNyfqufQTXZnraeZr',
	#                                  10: 819,
	#                                  11: [   u'bqTIvhKxofLmckArcGBg',
	#                                          Decimal('9.65376868354E+14')]}},
	#         u'culpa': {   1: Decimal('-386803.5759'),
	#                       2: [   9582485.24131284,
	#                              u'nqMKBiqnxNcUaUnFcthu',
	#                              7052803689.4177],
	#                       3: {   1: u'DbzGDhBRyVzYDrEtUwAM',
	#                              2: u'http://www.grant.edu.ba/faq/',
	#                              3: [-67692337182.7, u'VzDJoCBKhBivRmQCuGak']}},
	#         u'in': {   5: 9960,
	#                    6: [3515, 5503, Decimal('2.87916029968E+13')],
	#                    7: {   5: u'UdBqeTTdVAOMookAPhNH',
	#                           6: Decimal('-3627580.46'),
	#                           7: [   u'dFAFqDsJNkEgzcvtQOLV',
	#                                  u'aauUpNwQhmJYahlHvJXs']}},
	#         u'ipsum': {   6: u'GsINUdAHNopCXEjefPBz',
	#                       7: [   datetime.datetime(1998, 2, 25, 21, 8),
	#                              u'BtDiTAKqYdnFdFrmznsR',
	#                              u'jenniferwelch@peterson-wong.org.ba'],
	#                       8: {   6: datetime.datetime(1997, 3, 16, 9, 41, 25),
	#                              7: u'qYnTlTSUsiQlReOGYIft',
	#                              8: [u'ieJgMoBLCQmTHecMfZSR', 5337.2109658]}},
	#         u'iusto': {   8: u'rkkoARTkPDbofrntMFfO',
	#                       9: [   u'qeYGAOmvMFrjXJjySSUZ',
	#                              u'http://www.lloyd.net.ba/posts/privacy.htm',
	#                              Decimal('-6.8744442483E+13')],
	#                       10: {   8: u'johnsonrobert@hotmail.com',
	#                               9: -3206063.35627,
	#                               10: [   u'wCfJFWOfObvtTWXxegsH',
	#                                       u'BHceKNJJYXXBYPbRQZuE']}},
	#         u'mollitia': {   0: 7926,
	#                          1: [   u'janWzJSyxQAkueWNCqBK',
	#                                 -924699030510.56,
	#                                 u'fegQoWnTmeVhIcNCqwwN'],
	#                          2: {   0: 83156530718.914,
	#                                 1: Decimal('-717180.0'),
	#                                 2: [   u'EEOrwsKmgYZAXwwvYTZn',
	#                                        -8628431000433.3]}},
	#         u'quaerat': {   7: u'https://francis-farrell.edu.ba/categories/category/about.html',
	#                         8: [   u'hhDvfJKzSztHlkmsCnZh',
	#                                u'dOxEtVLBBRJsBJyDplFH',
	#                                u'XFZLztRjDhHGfIzLLBAM'],
	#                         9: {   7: datetime.datetime(2016, 3, 31, 6, 4, 30),
	#                                8: u'mwells@outlook.com',
	#                                9: [   u'GRewXVFGqnNKmDSfCUhs',
	#                                       u'csNuEaEFOonWafRCSHHv']}},
	#         u'voluptate': {   3: u'DdCtneRvkyfgPCZqeVPu',
	#                           4: [   5650,
	#                                  datetime.datetime(2016, 11, 21, 16, 41, 48),
	#                                  u'https://www.gonzalez-holmes.unsa.ba/blog/posts/login/'],
	#                           5: {   3: u'tlambert@bih.net.ba',
	#                                  4: 9949,
	#                                  5: [   datetime.datetime(1984, 12, 3, 9, 23, 36),
	#                                         u'CmdXATunUshuujDINuaU']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'NAfoTJtECCqRuHwzDmzL',
	#     u'oZFOCdwycKkMeRamkiFf',
	#     -9171.5086,
	#     u'kbUOtXRHdTEKMMNVckLY',
	#     u'https://haynes-wells.edu.ba/explore/posts/homepage.html',
	#     u'penningtonhoward@yahoo.com',
	#     u'JLbKRXEHzCItUmrzrSHj',
	#     u'vanessajames@outlook.com',
	#     u'jovJaXLcdnJZAJMqmBDE',
	#     u'AMGBYQDFunOBBylFXWNe']

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'DFuldSNVquuGCEXmJcac',
	#     u'dnGXrttdHZxyfdhdwLzN',
	#     u'rhPCTkonmfpdXfjprxMk',
	#     u'http://www.jones.edu.ba/privacy.php',
	#     6293,
	#     u'ucNPSteLIMHuwbnzStpi',
	#     Decimal('2.07755553014E+12'))

	fake.pybool()
	# True

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'mlVUuMjsmWrtJBgRGMeD', u'yyocNrGmqeSGFFGSgIxa', 8680, u'CcKRgibFmKJDHVnCZkaO', 9867, 2380, 33330.4819190792, datetime.datetime(1972, 12, 7, 9, 12, 1), datetime.datetime(2011, 6, 21, 0, 31, 6), -5.85224572, u'HgOtYCPgkaAEploeRRmi', 5694])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'dolore': 92627316.0,
	#     u'inventore': u'milleradam@gmail.com',
	#     u'necessitatibus': u'exOgHJTQaMQxrKZYJTXP',
	#     u'nemo': 4065,
	#     u'nobis': u'MGgRyyyfvaVvLeWAuyhd',
	#     u'occaecati': datetime.datetime(1973, 6, 12, 14, 55, 10),
	#     u'porro': 3104,
	#     u'possimus': u'GOobszJtsFoIKPbJYdFI',
	#     u'praesentium': u'yzBqkWzFyPiqTwWJHRyH',
	#     u'quas': u'http://howell.unsa.ba/homepage.html',
	#     u'ut': u'hLTXgtYapAQhVpbjqIHM'}

	fake.pyint()
	# 2177

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'657-32-3052'

	fake.ein()
	# u'63-3414868'

	fake.itin()
	# u'918-91-4134'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 6.0; ht-HT; rv:1.9.2.20) Gecko/2015-09-10 13:59:08 Firefox/6.0'

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

	fake.opera()
	# u'Opera/8.84.(Windows NT 5.1; om-ET) Presto/2.9.168 Version/10.00'

	fake.windows_platform_token()
	# u'Windows CE'

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/531.16.2 (KHTML, like Gecko) Version/5.0.2 Safari/531.16.2'

	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_9_7) AppleWebKit/5341 (KHTML, like Gecko) Chrome/44.0.828.0 Safari/5341'

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

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_5 rv:6.0; hak-TW) AppleWebKit/533.11.2 (KHTML, like Gecko) Version/4.1 Safari/533.11.2'
