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

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

::

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

	fake.building_number()
	# u'99456'

	fake.street_address()
	# u'054 William Valley Apt. 629'

	fake.postalcode_plus4()
	# u'98517-3368'

	fake.city_prefix()
	# u'East'

	fake.military_ship()
	# u'USS'

	fake.city()
	# u'West Ryan'

	fake.zipcode_plus4()
	# u'36562-9343'

	fake.state_abbr()
	# u'LA'

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

	fake.street_suffix()
	# u'Brooks'

	fake.city_suffix()
	# u'mouth'

	fake.military_dpo()
	# u'Unit 6295 Box 8113'

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

	fake.country()
	# u'Bermuda'

	fake.secondary_address()
	# u'Suite 383'

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

	fake.postalcode()
	# u'43921'

	fake.address()
	# u'8239 Carson Garden\nBreannaberg, AK 09708-4904'

	fake.state()
	# u'North Carolina'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Palmer Light'

	fake.zipcode()
	# u'24604'

	fake.postcode()
	# u'13099'

	fake.military_apo()
	# u'PSC 1809, Box 3826'

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

::

	fake.license_plate()
	# u'1K 5M8LIT'

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

::

	fake.bban()
	# 'RDNO0423545467899'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB97TLMB3310438552706'

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

::

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

	fake.ean13()
	# u'1375014294660'

	fake.ean8()
	# u'34682029'

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

::

	fake.rgb_css_color()
	# u'rgb(217,11,64)'

	fake.color_name()
	# u'Aqua'

	fake.rgb_color()
	# u'139,56,83'

	fake.safe_hex_color()
	# u'#441100'

	fake.safe_color_name()
	# u'aqua'

	fake.hex_color()
	# u'#db6478'

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

::

	fake.company()
	# u'Wallace, Scott and Morris'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Reduced dedicated hierarchy'

	fake.bs()
	# u'e-enable B2C web-readiness'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'VISA 16 digit\nAshley Dickerson\n4968282880178005 12/27\nCVC: 794\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'LSK'

	fake.currency_code()
	# 'NIS'

	fake.currency_name()
	# 'Angolan kwanza'

	fake.cryptocurrency_name()
	# 'Nxt'

	fake.cryptocurrency()
	# ('XDN', 'DigitalNote')

	fake.currency()
	# ('GYD', 'Guyanese dollar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 20, 0, 17, 58)

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

	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(2006, 12, 3, 4, 24, 55)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2015, 9, 18)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 3, 3, 39, 43)

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

	fake.day_of_week()
	# 'Tuesday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2016, 2, 25, 15, 28, 10)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2005, 12, 18, 21, 43, 8)

	fake.date(pattern="%Y-%m-%d", end_datetime=None)
	# '1976-11-11'

	fake.am_pm()
	# 'AM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(2016, 10, 14)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2005-06-30T13:48:32'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2013, 1, 22)

	fake.month()
	# '03'

	fake.year()
	# '1985'

	fake.day_of_month()
	# '20'

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

	fake.timezone()
	# u'Europe/Monaco'

	fake.century()
	# u'III'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(2014, 8, 24)

	fake.time_object(end_datetime=None)
	# datetime.time(23, 12, 3)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 1, 13, 6, 11, 34)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1993, 10, 19, 0, 25, 52)

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

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 8, 10, 15, 26, 35)

	fake.month_name()
	# 'October'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1808, 4, 16, 15, 54, 4)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(9904, 558)

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

::

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

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

	fake.file_path(depth=1, category=None, extension=None)
	# u'/voluptate/consequatur.ods'

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

	fake.file_name(category=None, extension=None)
	# u'voluptate.doc'

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'dclark@bih.net.ba'

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

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

	fake.email(*args, **kwargs)
	# u'tpalmer@burke.gov.ba'

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

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'privacy'

	fake.free_email_domain(*args, **kwargs)
	# u'tel.net.ba'

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

	fake.ascii_email(*args, **kwargs)
	# 'iduke@outlook.com'

	fake.ipv4_network_class()
	# u'b'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'jacobscott@smith.edu.ba'

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

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

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

	fake.slug(*args, **kwargs)
	# u'voluptas-occaecati'

	fake.uri_path(deep=None)
	# u'category/search'

	fake.company_email(*args, **kwargs)
	# u'barbara50@williams.unsa.ba'

	fake.uri()
	# u'http://pierce-smith.unsa.ba/register.jsp'

	fake.ipv6(network=False)
	# 'b5bb:76eb:7f08:9a4e:eb1c:baa1:c93d:d962'

	fake.free_email(*args, **kwargs)
	# u'ygarcia@outlook.com'

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

	fake.mac_address()
	# u'2d:ed:61:9c:b3:65'

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

::

	fake.isbn10(separator="-")
	# u'0-607-52401-4'

	fake.isbn13(separator="-")
	# u'978-0-2285-0081-0'

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

::

	fake.job()
	# 'Surveyor, quantity'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'In voluptatibus veritatis natus. Error dolores aliquam vero voluptate vero vitae. Saepe repellendus blanditiis in itaque aspernatur.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Beatae vitae corrupti cupiditate suscipit occaecati aspernatur. Corporis inventore ab facere minus quidem unde cum. Natus repellat temporibus fugit rem asperiores.',
	#     u'Laboriosam ut laudantium voluptates labore. Reiciendis blanditiis totam eos fugiat vitae nobis. Aut similique beatae animi eius velit dolor dolorum.',
	#     u'Commodi magnam molestias provident voluptas nulla voluptates molestiae. Rem saepe illo aut. Quae sunt est at recusandae adipisci eaque sit.']

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

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'In numquam commodi maiores in mollitia.',
	#     u'Facere corrupti error aspernatur ratione.',
	#     u'Aspernatur perspiciatis mollitia.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Error incidunt odio dolorem. Deleniti porro pariatur dolor alias mollitia.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Cumque laudantium sit similique perferendis.'

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

::

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

	fake.locale()
	# u'it_IT'

	fake.binary(length=1048576)
	# bytearray(b'\xb6\t\xcd\x85\xdbbXh\x1e\x9e\xdb\xb4\r\x08e\xf8\xa0g^\xa0\x17rm\xd7ye\xff\x1eH\xa2\xce\x8b\\\x89\x96\xb1\xc23tYUZ\xa2\xa5q\x19\x87\x7f\xf5f\xe4N2\x9a\xd7\x87\x07\xca$Y\xc2w\x8d\xdcd\xa9\xf6\xf4\xb4c\xc7\x9e\xdc\x88)\x8a\r$\\\x9dbG)\x0b\xda\x03Z\xb2\xcef\x8fnQ\x0b\xd5\x1e\xa0\xbev4\x04>.\xc5]?\xfd\xdd\x8a4\xe8(\xb0\xe11\xc2\x13\xf9\x1d\xdaO\xfd\xe6\x07\xd6+\x0ba\xbe\xc3m\x03_.\x0c\x8e\xf0\xcb\xccI\xf1\x89_\x96\x13\xb6x\x1b\xa6y\xbdy\xae\xbd/-\x0bV\xa5(5e\xbd\xf6\x8ftB$Z\xd8L\x80\x82\xdd\x04Q\x9d\xa4\xe3Q\x99\x0b\xc5\xe5\xa3\x0b\x8e\xd8*Y`\xdb\xfc\x8a\xfe\xbfCe\x88@\x938\x88\x17\xf2#\xcbJ\x94\xa3da\xee\x97\xb2-\xd9\x82\xab*\xbf\x9aN}Dd\x95\xbbA\x94\x01\x03s\x01\xf7b\xaaF\xa8%\xd7\xf3\x00k\xcbc\xc9\xc1\x82\xadJ\xdc\xc8C\x18?r\xa4\x83\xb4\xfc{Tcr\xf3x0\x81Ge\x810\xb3\x0bq\xcc\x12y/l;\xeb\xcb\x7fHi\xf1\xc4\xbc\xd4\x08\x80|,\x8c\x04m\xbf[\x04\xbb\x1c\t+\x17\xf2c\xf8\xed\x81G\xb2\xc1!\x1f\xe3\xdb\xf7@\x82!\xd4\xa0(A\x93\\\x7f.R\xa2UQ\x84o\x98Um\xd2\xe5\x0e\xcd\xa7\xda%\x8cp\xb9\xb7\x12\xcbJp1\xb8\xda\xa3cIZ(,\xa4X9Q\x10dL\xd2\x7f\xe3\x04dA\xb3\x8f\xf9:\x9a\x81\xa6\xca\xf1\xd0\xad@\xb09\xad\xff\xea\x8eod-t\x99K\x05\xa1!\x821\xf2\xa6\xbb\xef9(U\xae\xd5\xcb\x05\x9f\xed\xcd\xd0\xad\x88\x95\xee\xbe\x94\x9a\xe7\x00\xf1)\xed\xa8\xb1G\xd3\x91\x19\xbd[\xbc\xd5\x02\xca[\xe4\x8a\xc8\x05\xa6\xed\xbe49%ia\xfaE\xbdA\x08}\xd9\x15"\x0c~Ov\xdc\t\xa6\xf1\xb5\xde\xc9"\xd3\xd0\xf0t\x1b\x10\xa0"\xcc#\xae_M\xf4\xbcK\xce\x9a\x11\x85\xb3\x11|R\x89\xaf>\xa8H\xfbc\xa5\xe5\xba,\xdf\x12\xff\xb4\r\xf3(.\x9e\x892#\x1c\xbel1\xc7_\xf1\xa2\x0c&l\'1\xf0zg\xda\x9bA\x03"\xefr\x8a\x0b\x98\xce\xcc\xa5n\x19\x83=\xad*\xdcU\xda3G+\xc0\xb9\x94u;\xb9\xaf\xa7o\xd1 \x9e\x19up\xa5\x7fn\xa7\x8f\xf9\x9a\xfd.\x8d\xd6\x13b;C\xd3\x00.\x19!\xdaH-O\xd0Z\x8fZie[a{k\xdf\x9a\t\t\x91\x9aJ^H\x8e\xacK\xb3\x06^z\xeffT\xb5\xe8\xfd\xc6\xa3\x18n\xbb\x00\x80 \x84T\xb3\n?)\xb9\xf4\xf1\xaaH\x02\xb8\x8d\xec\xfaB*\x86]\x81^\xc7\xec\xb4\xb3`\x17\xa3\x8fRF5\x81\xe9e\xde\x16\x89h\x01W\n8 \x98\x12\xeb\x8eOM\xdf\x15\xb4\xbe\xf2|,\xa7p\x08\xcd\xed\x15\xbb\x8a#\xa0\r,\xb6\xd4\xca?,\xf8\xe57-\xfa\xcb"\xf0\xcc\xd9\x1eK\x1e\\\xd0\x8a\x00\xf5\xd1A^3\xf9S\xf4A\xf7<.\xc5ym\x87\x85x\xa7(\x97\x08\x1bf\xd5MNph\xa5\x1b\x896`\xf0\xeco\xa6v\xe8\x9e90\x9c\xf9\xb1\\q\x8c\xe3v&Q\xbf\xac\xed\x18M\x01<\xf7^\xe4\xc9\xf14\x14\xad\x93\x87\x90\x0e\xf9\xb6\xfc\xe3J\x95$\x90t\xdb\xbb\xc8\xa3\x0cO\xacf \x9c\x98e\xae\xd0\xa8Nk9\x89;\x85\x05\xed\xa2\x1c\xa8+\xb5\xf3\xe0\x9aUU\t\xf9PT\xea\xb6\xf9o\xebF\xd8\xfa\xe0MO\xceB\x97\xd9\x96\x7f,\x1f\x86c\xccM\x99[\xd6I\'\xe0`\xb8\xc2\x9bo\xb6\xd1\xdc\xe8\x14\\\xff\xf9P\x94\xc5\x84/o\xc3\x0b\xf7\xfb\xde\xc6sQ\x19\x13\xcc\xbd9\x03zI\xfa\x0f)\xb1\xf5\x1fbA\xbf^\x16\x90M\x8e7!E\xcf\x91?o\x10\xf9\xaf\xd0\xf8\xd6h\xc7f\xbf\xdb\x93\xd0\x8d\xecOI\x8dg\x82eR\xd2\xf0\xa3\xaa,\x19\xda|\xa4\x94<E\xbc\x95pl|I\xca\x0cqR\xa6\xe9z\xc8"\xa2\xfd7\xc8\xa2y\x15R\xeb\x82\xab\xd9\x8d\x04&\xa7^\xfb\xb2\xdf66\xa5\x95\x11tC\xcb%\xe378\xbd\x0f\xbb')

	fake.md5(raw_output=False)
	# '517f2eaec604e08b28e5002990c51cc2'

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

	fake.null_boolean()
	# True

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

	fake.uuid4()
	# '768a6513-e89e-9da4-03fa-3d32ea549c2f'

	fake.language_code()
	# u'my'

	fake.boolean(chance_of_getting_true=50)
	# False

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

::

	fake.last_name_male()
	# u'Bernard'

	fake.name_female()
	# u'Jacqueline Lopez'

	fake.prefix_male()
	# u'Dr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Stephen Edwards Jr.'

	fake.suffix_female()
	# u'MD'

	fake.name_male()
	# u'Marcus Gordon DVM'

	fake.first_name()
	# u'Dawn'

	fake.suffix_male()
	# u'PhD'

	fake.suffix()
	# u'MD'

	fake.first_name_male()
	# u'Stephen'

	fake.first_name_female()
	# u'Tracy'

	fake.last_name_female()
	# u'Bond'

	fake.last_name()
	# u'Burke'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'062 116 127'

	fake.msisdn()
	# '4297245869751'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'PSC 3879, Box 4822\nAPO AP 49043',
	#     'birthdate': datetime.date(1908, 8, 14),
	#     'mail': u'sbell@gmail.com',
	#     'name': u'Mark Oliver',
	#     'sex': 'M',
	#     'username': u'guycollier'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'2269 Eric Track\nParkertown, MT 82142-2804',
	#     'birthdate': datetime.date(2012, 12, 4),
	#     'blood_group': 'AB-',
	#     'company': u'Johnson, James and Hall',
	#     'current_location': (Decimal('-30.097999'), Decimal('29.468246')),
	#     'job': 'Statistician',
	#     'mail': u'joan70@outlook.com',
	#     'name': u'Carol Johnson',
	#     'residence': u'9674 Jennifer Ramp Apt. 371\nNorth Danielbury, KY 68728',
	#     'sex': 'F',
	#     'ssn': u'464-39-0663',
	#     'username': u'shanemiranda',
	#     'website': [u'https://holder-miller.gov.ba/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'LbtOragzkOFOqaQxjzMG',
	#     u'qTFpfsfQhMFEGnsrQVpC',
	#     u'NydPLNbMBYkswEZzmJkG',
	#     Decimal('-85.2758'),
	#     2154,
	#     977,
	#     u'YFVSjBaMQMrnSLMuNoTo',
	#     5306,
	#     -470.77923713,
	#     u'lewisdavid@outlook.com',
	#     u'http://www.lee.ba/about/')

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'zsantiago@mercer-mueller.ba',
	#         u'cabrerajessica@wang-hess.net.ba',
	#         1491,
	#         u'TKgMtgHwqFIaeKBKuncM',
	#         u'kanedenise@duke-cardenas.edu.ba',
	#         800,
	#         datetime.datetime(1980, 2, 25, 2, 47, 13),
	#         Decimal('600720.0'),
	#         6068,
	#         u'wyhNnvJyBStPvwVqyPyX'],
	#     {   u'cupiditate': u'rorr@gmail.com',
	#         u'dolor': u'ltqvaUVeDYGRIgvTYErV',
	#         u'illum': 1648,
	#         u'laborum': datetime.datetime(2017, 2, 15, 6, 40, 14),
	#         u'numquam': 5320,
	#         u'occaecati': u'DNpfbLtgCpuYJSjVrOnq',
	#         u'odio': 6817,
	#         u'rem': 22424697780.31,
	#         u'tenetur': 1181,
	#         u'voluptatem': u'VsvqnKANqBkCMyyYrDgv'},
	#     {   u'aliquam': {   5: u'BmVpELaXoenilyEzLNnW',
	#                         6: [1059, 1244, u'rachel93@bih.net.ba'],
	#                         7: {   5: Decimal('-239103177588'),
	#                                6: u'NWgaTfxqoLuEzITnNNHq',
	#                                7: [   u'DlPQaqAAMnmpXjLtRIdU',
	#                                       -99832565.8560808]}},
	#         u'aliquid': {   8: u'http://moore-willis.unsa.ba/faq/',
	#                         9: [   u'donnasmith@hotmail.com',
	#                                Decimal('6024310863.81'),
	#                                u'YRIfTOGEKgYBLFxrizTr'],
	#                         10: {   8: Decimal('-9.1585172683E+12'),
	#                                 9: u'http://www.potter-smith.edu.ba/',
	#                                 10: [   Decimal('-1.01849974802E+13'),
	#                                         0.25461211908086]}},
	#         u'aut': {   2: 3647,
	#                     3: [u'AooWajItXBHVaCYbsZpU', 5053, 1400],
	#                     4: {   2: u'sUEvGRLZrjQOKQRGHUth',
	#                            3: Decimal('-921.31473692'),
	#                            4: [u'sOjtTHVHrOVZpDcVFcIf', -6187750026.421]}},
	#         u'culpa': {   9: u'KIQvVPEapYCbWmwPkRQo',
	#                       10: [-1262.7523980524, 6047, u'JhgIlUjZwpfkdNOrndkP'],
	#                       11: {   9: -9.23,
	#                               10: u'nQjufhpGZgJsxqLVQZZz',
	#                               11: [   u'terrynicholas@robles-friedman.edu.ba',
	#                                       838]}},
	#         u'eligendi': {   0: -9419352796092.4,
	#                          1: [   u'uhTARBqgSpAWmDOGUJvy',
	#                                 Decimal('-3123.84264265'),
	#                                 Decimal('566.5437')],
	#                          2: {   0: u'AyztPqTmVmThWPECvVIG',
	#                                 1: u'HSfoOolfpMxVWoXVTbRR',
	#                                 2: [   Decimal('949614827.644'),
	#                                        datetime.datetime(1971, 2, 7, 1, 9, 52)]}},
	#         u'inventore': {   1: u'hlkGjvajHyUyETWfPcJf',
	#                           2: [   u'http://thomas.com.ba/',
	#                                  Decimal('4815197.7'),
	#                                  u'SaYViECFUmJgvpsNHYzX'],
	#                           3: {   1: u'kuBINQiAttlfpRRGtfbR',
	#                                  2: u'https://cummings.edu.ba/author/',
	#                                  3: [2029, u'HnxrnuSyEziMYWorQLei']}},
	#         u'natus': {   4: u'mhkgeRAApHsIUiTSzPHg',
	#                       5: [   5743,
	#                              Decimal('-4.38495620403E+14'),
	#                              u'EyuJPDwyrigPCfrGaNux'],
	#                       6: {   4: u'QmNAxsaJVZPAjRSFikIO',
	#                              5: Decimal('517.78333'),
	#                              6: [   Decimal('-3450.88635544'),
	#                                     Decimal('343.361774139')]}},
	#         u'officia': {   6: Decimal('66.49519'),
	#                         7: [   u'LNVbZBdhxkGeKonUhgUk',
	#                                u'REwlqkFrBRqCwsmsJYfd',
	#                                u'xZYzfMwqTMcqVzRDMxKV'],
	#                         8: {   6: u'cxqAYlosmzdDmjFaJzkw',
	#                                7: u'cOxdTgaoDDyozHQUXZzY',
	#                                8: [   u'nLvOnZZnIhVpNTNQUtfl',
	#                                       u'hUYaQBocbSAHofgZAbDJ']}},
	#         u'quae': {   7: u'bwZcUbCanIihVXfSPXla',
	#                      8: [   u'EVfxHNsPabkTkCcvtuAk',
	#                             Decimal('-7.9'),
	#                             datetime.datetime(1979, 6, 9, 18, 8, 49)],
	#                      9: {   7: u'wSJzMtTptShlnslxVFoz',
	#                             8: datetime.datetime(2004, 5, 19, 10, 50, 34),
	#                             9: [   u'AeVZmPQdcwLPFXWhcIvj',
	#                                    u'plIZsWyvJqOTcnjXeoqx']}}})

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

	fake.pydecimal(left_digits=None, right_digits=None, positive=False)
	# Decimal('1.9020431136E+14')

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'kristenmoore@outlook.com',
	#     1699,
	#     Decimal('-5303606171.0'),
	#     3534,
	#     u'egrant@kim.org.ba',
	#     u'iiajxtcCSvkOfiIWtvsO',
	#     u'anthony07@potter.com.ba',
	#     4882,
	#     -86804980355503.0,
	#     -44777413.8677]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   -6342793175992.0,
	#     u'davidklein@phelps-martin.unsa.ba',
	#     u'DtfdmVQlIfCBbujTMgCx',
	#     Decimal('33957810.5'),
	#     7320,
	#     u'BEuQyNKCyqBsVdXKpoNc',
	#     u'http://pacheco.gov.ba/categories/posts/app/post.asp',
	#     u'https://www.ortega.com.ba/main/',
	#     datetime.datetime(1983, 9, 8, 5, 57, 16),
	#     u'http://www.walsh.unsa.ba/category/explore/faq.jsp',
	#     u'guliWUAogJPoYUFNpihF',
	#     7100,
	#     datetime.datetime(1972, 9, 1, 6, 15, 38))

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'https://www.burke.unsa.ba/author.php', u'kaSxBvtspCHeMGyoqerb', Decimal('503984658.844'), u'mtnVGnYzPtHzCgwkcGrr', u'http://carter.edu.ba/terms/', u'http://www.parker.edu.ba/', u'dthomas@bih.net.ba'])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'aliquam': 67729.0,
	#     u'corrupti': u'eooqrJKNElmNrsFNwtEe',
	#     u'dolor': u'thomasstafford@gmail.com',
	#     u'error': datetime.datetime(2005, 4, 13, 22, 55, 4),
	#     u'expedita': Decimal('8270.331597'),
	#     u'fugiat': u'vcAGqRbJNxcEFygRtOqX',
	#     u'nulla': u'TiVVfFMQAMMAtOiflpvi',
	#     u'quis': u'SfhNByPmksIJBXPUEecB',
	#     u'rem': 132350439261.0,
	#     u'sunt': u'zyxYRuStrcOpJQAgZtaQ'}

	fake.pyint()
	# 87

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'745-61-8976'

	fake.ein()
	# u'42-2297321'

	fake.itin()
	# u'934-91-6224'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (Windows NT 5.0; mr-IN; rv:1.9.2.20) Gecko/2013-03-25 02:24:56 Firefox/3.6.16'

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

	fake.opera()
	# u'Opera/9.73.(X11; Linux x86_64; aa-ET) Presto/2.9.184 Version/12.00'

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

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

	fake.user_agent()
	# u'Mozilla/5.0 (Windows 95; rw-RW; rv:1.9.0.20) Gecko/2013-12-08 21:04:36 Firefox/3.8'

	fake.linux_processor()
	# u'i686'

	fake.chrome(version_from=13, version_to=63, build_from=800, build_to=899)
	# u'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/5321 (KHTML, like Gecko) Chrome/41.0.808.0 Safari/5321'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; nb-NO) AppleWebKit/534.18.4 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6534.18.4'
