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

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

::

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

	fake.building_number()
	# u'80251'

	fake.street_address()
	# u'202 Padilla Meadows Apt. 739'

	fake.postalcode_plus4()
	# u'90309-8458'

	fake.city_prefix()
	# u'North'

	fake.military_ship()
	# u'USS'

	fake.city()
	# u'Masonhaven'

	fake.zipcode_plus4()
	# u'29058-8983'

	fake.state_abbr()
	# u'NH'

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

	fake.street_suffix()
	# u'Camp'

	fake.city_suffix()
	# u'mouth'

	fake.military_dpo()
	# u'Unit 9927 Box 5176'

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

	fake.country()
	# u'Slovakia (Slovak Republic)'

	fake.secondary_address()
	# u'Apt. 311'

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

	fake.postalcode()
	# u'03337'

	fake.address()
	# u'77560 Elijah Haven Apt. 464\nSouth Brian, MI 45223'

	fake.state()
	# u'Wyoming'

	fake.military_state()
	# u'AP'

	fake.street_name()
	# u'Sharon Crescent'

	fake.zipcode()
	# u'41609'

	fake.postcode()
	# u'12979-3296'

	fake.military_apo()
	# u'PSC 9270, Box 2042'

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

::

	fake.license_plate()
	# u'488-LEX8HK 273'

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

::

	fake.bban()
	# 'XQKA4845856342769'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB23KYAM0985488359396'

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

::

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

	fake.ean13()
	# u'5977702651845'

	fake.ean8()
	# u'90462825'

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

::

	fake.rgb_css_color()
	# u'rgb(136,182,70)'

	fake.color_name()
	# u'Aquamarine'

	fake.rgb_color()
	# u'135,25,219'

	fake.safe_hex_color()
	# u'#777700'

	fake.safe_color_name()
	# u'purple'

	fake.hex_color()
	# u'#cc0695'

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

::

	fake.company()
	# u'Gonzalez-Beck'

	fake.company_suffix()
	# u'PLC'

	fake.catch_phrase()
	# u'Operative exuding capacity'

	fake.bs()
	# u'enable distributed paradigms'

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

::

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

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

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nChristopher Garrett\n180098448524500 11/22\nCVC: 218\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'NXT'

	fake.currency_code()
	# 'CUC'

	fake.currency_name()
	# 'Swiss franc'

	fake.cryptocurrency_name()
	# 'Zclassic'

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

	fake.currency()
	# ('IQD', 'Iraqi dinar')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 9, 4, 12, 30, 6)

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

	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(1988, 11, 18, 9, 35, 52)

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

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 10, 12, 37, 20)

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

	fake.day_of_week()
	# 'Saturday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2014, 1, 15, 9, 33, 32)

	fake.date_between(start_date="-30y", end_date="today")
	# datetime.date(2015, 12, 27)

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2009, 5, 24, 23, 49, 6)

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

	fake.am_pm()
	# 'PM'

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

	fake.date_object(end_datetime=None)
	# datetime.date(1995, 7, 6)

	fake.date_this_year(before_today=True, after_today=False)
	# datetime.date(2018, 7, 28)

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2012-01-27T18:58:29'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2011, 11, 2)

	fake.month()
	# '12'

	fake.year()
	# '2005'

	fake.day_of_month()
	# '19'

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

	fake.timezone()
	# u'Indian/Antananarivo'

	fake.century()
	# u'IX'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(2007, 5, 23)

	fake.time_object(end_datetime=None)
	# datetime.time(2, 55, 37)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 3, 10, 14, 50, 14)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1984, 10, 16, 23, 7, 34)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '02:37:18'

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

	fake.past_datetime(start_date="-30d", tzinfo=None)
	# datetime.datetime(2018, 7, 29, 15, 59, 56)

	fake.month_name()
	# 'February'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(303, 9, 28, 23, 3, 43)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(8464, 53911)

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

::

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

	fake.mime_type(category=None)
	# u'message/http'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/iusto/temporibus.css'

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

	fake.file_name(category=None, extension=None)
	# u'sunt.ppt'

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

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

::

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

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

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

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

	fake.url(schemes=None)
	# u'https://garrett.com.ba/'

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

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

	fake.uri_extension()
	# u'.html'

	fake.uri_page()
	# u'search'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'stephen01@patton.org.ba'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'robertbentley@cox-smith.net.ba'

	fake.domain_name(*args, **kwargs)
	# u'thomas-mercado.unsa.ba'

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

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

	fake.slug(*args, **kwargs)
	# u'laborum-aliquid'

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

	fake.company_email(*args, **kwargs)
	# u'kellyreed@thornton.ba'

	fake.uri()
	# u'http://www.garrison.net.ba/search.html'

	fake.ipv6(network=False)
	# '599a:f88d:ead7:39b5:5e0f:2851:1d1b:c066'

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

	fake.ascii_safe_email(*args, **kwargs)
	# 'christopher32@example.net'

	fake.mac_address()
	# u'14:3b:05:52:6d:76'

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

::

	fake.isbn10(separator="-")
	# u'1-934325-32-5'

	fake.isbn13(separator="-")
	# u'978-1-963071-59-7'

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

::

	fake.job()
	# 'Prison officer'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Architecto rerum numquam excepturi iure architecto. Maiores non sequi nemo deserunt quas eaque. Laboriosam libero ullam nulla at soluta quisquam.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Iusto sunt quia dolorem impedit quo. Labore tempora voluptate. Voluptatibus minima iure atque temporibus in. Quod illo asperiores ipsum dolorem.',
	#     u'Beatae neque facere veritatis vel. Blanditiis a blanditiis blanditiis quos eius laudantium. Eveniet nostrum nesciunt dolorum occaecati.',
	#     u'Expedita quibusdam non facere veniam. Quibusdam molestias soluta repellendus eveniet at.']

	fake.words(nb=3, ext_word_list=None)
	# [u'explicabo', u'velit', u'temporibus']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Ad blanditiis doloribus rerum sunt ipsam iure.',
	#     u'Aspernatur omnis necessitatibus eius.',
	#     u'At quis velit hic reprehenderit.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Quisquam eligendi architecto eos. Voluptate odit sit beatae iusto. Totam similique commodi tenetur quaerat rem fuga.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Dolore iste iste earum.'

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

::

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

	fake.locale()
	# u'tk_TM'

	fake.binary(length=1048576)
	# bytearray(b'MM:\xed\xbb\x96\xa8xi\xccvu\xa8\x83\x16\x9am\x1f\x86\xe3\r[\x87\x14\x84\xb7B\xd3\xb1x\xd1J\xc2ew\xb9\x87&\xe8P\x9f\x12^F\r\xdenq\x95.\x87b\xb2\x00L \x96=\xe0\x04\xd0\xce\xc2\x96\xac\x81\xba?ip!\xb2o\xf7Cq\xeb\xb4\xa8`\x08U\x86\x0e\xd1w\x02F_i\x98\xec\xa1\xc8\x05utf\xfc\xea\xff\x06IkE\t\x03\x18@7\xb5{\xe1\x80\xb7\x93\t\xd3\xf8\xccj\xaeC\xbfao\xb6\xfaV\x89\xf8Mh\xd3\xdc\xa0/1\xad\x8ek\xd0?\x19m\xe2\xd2\x19<\xb5\xa1\xb4\x1d*v5\xf7m\xe0\x86v\x8b\x0e0\xf0^\x1dED\xe0\xdd\x8d\n\x1a\xd0Q\x02\xa2!HX]\x94}L\x13s\xf5\x8a\xc2.\xc5I\x89\xe0Z\xe2UF\xe6\xdf\xcc\xdb\xaf_\x8dW\xa1\x086\x02\xd8O`\x02\x14\xe4*\x86\xba5\xbc\x030E\xcfp\x8b\x89\xd3\x82\xf7\xc5v)*\xbc\xb7\xf7\xeahX\x95\xab\xb6\xfd%\x05p3\xa8\x0b(`V\xfc$\xbct\xa0N\x0eb\xcch\x88\x11\x87\xaa\xeb\'U\xa8\xbc\xc2\xd2P\xb2)\xf0`\x92\x15L\xbc\xb3;>F\x8d\r\xb9~\x90\xc3*\xd7\xfb\xeb;n"%\xbc\x1c\xcb\xa8\xbd\x18\xe6\xfd\x8di=\xebm\xb5\x1c\xb5\n\xc4\x88\x1b\xbd\xd2X$h\x8f\xc4\x82m A\xcd\xc8o\xafd\xec\xb3\x80\\\xc2\x8c\xdc\xc1\xb2\xae\xa7\xf2d\x9a\xac\x87\xe5\xa5]\x12kJ\x9f\xe6\r\x80\xc6K\xff\xba\xef\xe5\xcb`=\x82\xaa\x8ds\xb0\xab\xb3\xbe\x89\xb0E\xfb3\xd1\xe5\xf9\xff\x0f\x8cc\xc1\xe9\xc5G\xa5\x96"\x14\x12\xda\xcdhy[[\x89\xe5\xf9\xd7\x0eU\xf9\xe8\xa5\xb8\xc2\xf7\xc1L\x04\xd3xq\x16__\x8bN\xd5^y\x18\xad\x16"\xe0\x9d\xf9O4\'\xcd2\x8fr\xaf\xdb\xb1\x99\xa5\xcb\xa0\x91J\x90\xa7\x16\x90\xe3\xa6\xb9\t\x9fH\x8e2\xabHY\x06IK\xe1\'U\xfa\x86\x10\x809H\x98j\xb8(\x9d\xb5\x86|\xe6\x9f9\x8a$=o\xda\xdf\xf0\x86\x9b;\xef9\x03pOd\xffAc\xb0\xca\x03\x96e\xe4y\xca\x11\n\xb1H\xaa\xd0i\xf5\xd2\xfa\xad\x88@\x966\xa5\xd04:\x02\xd4m\xba\xea<\xc4\xb9\xa8\xcb"\x1e\xb5G\xf1\xa2:\xff\xb1\x92\xc4\'\xf2\xc0r\x02\xb3\xf9\x9e\x06\xdc\xa1\xc0\x97\x87\xb7\x07\xce\x00g\xf6\xa3\x97\x8c\x9b4E9\x89\xf6\xc2Y\x1ed\xffQ<)\xa1\x0e\xa1\xb2\xa1\x90\x96@z\xd1}\n_$X\xfdv\x15\xad\xdb`e\xdaG\xd3E!l\x93\xba\x8f\xb8\xa0\x0c\x00H\xc42\xad\x7f\xfb\xa9\xa2\xa6\x88-`\x99D\xcb\xff-\xf9]?!i\xa9\xb2\x1f\x86j]\x12\x16M\x17J\xb2O \x0b\x85\xa6\xad\x07\x92\xfb\xb8lh\x15j\xcb\x92\xc8\x8f\xd2\xa1N\xbf\xa2\xc5\xbb\xbco>\xd0\x97u\xe0\x11\xc6\xe2K\xa4c\xe3\xc20@\xa3\xd0S:Y\xa0\xb85\xf5(\x06N\x08\x11Z\x98GZ}\x8aU\x0bp\x97m\xd2\x92s\xda\x9e}G\xc6mL\xfa\x9aE\x0e\xf2\x8f\xd9\xfe\x13\xfb\xabL\x05^\xd9\xe3q\xe0O\xf7\xe4I\x12\x80\xcb\xde\xf4{\x88\xee\x96\x81\x98\xbf\xbe\xcf{3\x89V\xfcSCx\xc8S\x93\x07\xc0d+\x15\xa2\xd4\x84\x83\xc9c-\xac\xc4\x98\xdc\x97\x0b\x80\x95\xb7C"\xcc\x83N`\xbdD\x08`;\xad4E\xe9\xb4\xebw\xc6$_\x1a\xa0\xe2G\x1c\x91\x12\xfdo\xe6\x8e\xf1\x15B\x18\xa28\x81\xc2H\xde\xa2\x1eZe\xbd\xfc5\xba\x1b\xbb\xcf\x85$\xf3lf\x1c\xaf\x00\x1e\x00\x1d\xad\x1b\xe8\xa6\xf91\xc6w0\\\x8d"p\x08^-\xa3v\xf2\xde\xc0\xd94\xf0\xc8\tkF\xd0\xc0`\xc0\x02\x0f\xe1q\xaba%y\x88g\xb4\xd6#\xf3\x9b\xcda\x12\x7f\xb3\xaf\xfd\xd9\xeb\xbbz\xc5`\x10\xc1\x1b\xe7_(\x025\xd2\x89\x8d(|\xa4\xd7\x02\x01\x85$\xf6.g\xcb;\x16:A\x04A\xf2\xc0\x89R\x17\xfe5\xdcI\xd5\xda6:\xa7\xda\x9f\x03Ls\xa2\r\x0c\xf5\x16\x8cS\xad\x0c`\x1d\xe8kZ\x0b\x90b(\x8d\xaf\xdd`\'\xe3a\xfa\r\xa9\xff\x18er\xa57i\xeeWV')

	fake.md5(raw_output=False)
	# '8fdbb149f9eb1360d0a7c25b39eec19f'

	fake.sha1(raw_output=False)
	# '6197134e1f7237bad452b4ea0c837d2c91781f96'

	fake.null_boolean()
	# True

	fake.sha256(raw_output=False)
	# '61acd556580f54af8a8753e1f02772c38122c38853427fc1dc9f6bca550e75aa'

	fake.uuid4()
	# '213ebebc-c800-7106-885f-55ada6f4badb'

	fake.language_code()
	# u'cs'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Walker'

	fake.name_female()
	# u'Stacey Harper'

	fake.prefix_male()
	# u'Dr.'

	fake.prefix()
	# u'Dr.'

	fake.name()
	# u'Mr. Jerry Farley'

	fake.suffix_female()
	# u'DDS'

	fake.name_male()
	# u'John Valenzuela'

	fake.first_name()
	# u'Rachel'

	fake.suffix_male()
	# u'DDS'

	fake.suffix()
	# u'MD'

	fake.first_name_male()
	# u'Adam'

	fake.first_name_female()
	# u'Christina'

	fake.last_name_female()
	# u'Gray'

	fake.last_name()
	# u'Cruz'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'034 242 953'

	fake.msisdn()
	# '6423020933931'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'39539 Kristen Station\nLake Michael, AR 42683-9150',
	#     'birthdate': datetime.date(1943, 1, 8),
	#     'mail': u'teresa07@hotmail.com',
	#     'name': u'Peter Burke',
	#     'sex': 'M',
	#     'username': u'bakerjose'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'67461 Blair Fork\nBanksshire, MN 79077-0416',
	#     'birthdate': datetime.date(1993, 9, 26),
	#     'blood_group': '0+',
	#     'company': u'Moyer PLC',
	#     'current_location': (Decimal('60.2418335'), Decimal('95.170577')),
	#     'job': 'Engineer, control and instrumentation',
	#     'mail': u'justinthomas@bih.net.ba',
	#     'name': u'Tracie Baldwin',
	#     'residence': u'366 Trevor Cliff\nFloresfort, AL 53895',
	#     'sex': 'F',
	#     'ssn': u'680-42-2256',
	#     'username': u'tammy90',
	#     'website': [   u'https://smith.com.ba/',
	#                    u'https://www.anderson-gross.edu.ba/',
	#                    u'http://www.anderson.edu.ba/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-7443848.5'),
	#     u'upRNeBqrqiCEiNMCdwKo',
	#     u'sandraharper@powell-jones.ba',
	#     datetime.datetime(2014, 1, 31, 6, 15, 56),
	#     Decimal('6.35054764766E+14'),
	#     u'jill10@tel.net.ba',
	#     u'gonzalesmichael@villegas.org.ba',
	#     Decimal('8.741883919'),
	#     u'iYfdGxwZvMRjYQXDMPFI',
	#     u'CzgxEDYQiOTuaRZVLyfx')

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'http://www.carter.org.ba/tags/categories/post.htm',
	#         614814460798.4,
	#         6092,
	#         Decimal('8693621.58056'),
	#         u'TEpGcdwmBECnjmLkxdDz',
	#         u'sBzAoasxmwHjtKxqdoZY',
	#         datetime.datetime(1992, 1, 16, 8, 41, 19),
	#         -73886.237796935,
	#         -70.5,
	#         6462],
	#     {   u'animi': datetime.datetime(2013, 5, 18, 14, 29, 2),
	#         u'deserunt': -99125.5093864825,
	#         u'facilis': u'udbxXKQgCLfGFdHfcFad',
	#         u'id': Decimal('-9022133.8'),
	#         u'modi': 3903527.1456477,
	#         u'nobis': u'scottphillips@outlook.com',
	#         u'officiis': 26147.175,
	#         u'saepe': u'OdkexwKUHTZCBHhmxFBD',
	#         u'ut': u'BfeVhvzttnPicYodUPUm',
	#         u'voluptatum': u'TtIDXJKwqjLczJgTnsGO'},
	#     {   u'eos': {   2: 2175,
	#                     3: [   u'robin67@gmail.com',
	#                            u'sCWOyYmCmCmGdoNWKNFi',
	#                            u'NawZysalmIKcsayMaxMH'],
	#                     4: {   2: u'NPOZCQfaJzGPQlxBohKw',
	#                            3: datetime.datetime(1978, 4, 10, 21, 55, 49),
	#                            4: [   datetime.datetime(1971, 1, 7, 3, 41, 29),
	#                                   u'SWYgCUAfwHhCKlucKdZY']}},
	#         u'incidunt': {   8: u'KiZhbdSvhxBFnHrIvDKy',
	#                          9: [   u'GOoubxlNfJsyLbGEYPbH',
	#                                 u'GjOssYhxYAXtwLgPQEyo',
	#                                 u'lhZdVgfHGsXgbgUNqQIZ'],
	#                          10: {   8: 7108,
	#                                  9: u'uILwGxSCSaBKnIhcgPKQ',
	#                                  10: [u'xyObGwIykIykLtMFUDLN', 614]}},
	#         u'maiores': {   1: datetime.datetime(2004, 4, 16, 23, 24),
	#                         2: [   Decimal('-88119857147.0'),
	#                                -92.0,
	#                                u'michael19@flowers.ba'],
	#                         3: {   1: u'aokbvOPzVDeOBmPCGWjF',
	#                                2: Decimal('-731.0'),
	#                                3: [8259, u'vgNUiSUJqwDZiGaIuRfH']}},
	#         u'maxime': {   7: 2325,
	#                        8: [   u'uqcNpVkyskHIxspvRKPG',
	#                               Decimal('7.66639801245E+13'),
	#                               5163],
	#                        9: {   7: Decimal('-4.18'),
	#                               8: u'WOZEGYAIKIjfpmKwgesS',
	#                               9: [u'PbWcZtzmdXHYwGixOwqA', -5.429859332]}},
	#         u'mollitia': {   3: u'http://ray-mercer.ba/homepage/',
	#                          4: [   u'dIUKnpOTroJshfGddhIT',
	#                                 u'PEysbUHJIlzdfohEbLtG',
	#                                 datetime.datetime(1980, 6, 24, 12, 4, 3)],
	#                          5: {   3: u'http://wallace.net.ba/about/',
	#                                 4: u'https://garner.ba/blog/category/',
	#                                 5: [   -11453394.8997,
	#                                        u'philliproberts@sanders.edu.ba']}},
	#         u'necessitatibus': {   0: u'HUtOswwJkoEznOeEOTCx',
	#                                1: [   u'LMzaYQEbQWTSvECKPdJV',
	#                                       u'NWMckZwrnEygMGuVhEfP',
	#                                       u'WGvfvDHUpvPdapfoqjYp'],
	#                                2: {   0: u'guzmanjason@martin.edu.ba',
	#                                       1: u'kbsEgOYZnDyVCoAEAzbI',
	#                                       2: [   9953.929,
	#                                              u'zuFETxmdEPIWDpgeUQXj']}},
	#         u'placeat': {   4: -603153424902.0,
	#                         5: [   u'SMEkuAxMXVYEPQWqYazH',
	#                                Decimal('-292363.964256'),
	#                                5214],
	#                         6: {   4: u'zkBLnqrVucUnglMsvLKU',
	#                                5: u'http://green.net.ba/',
	#                                6: [u'EnvphYLBiymDiIDiOiQH', 5328]}},
	#         u'quasi': {   5: datetime.datetime(1983, 1, 26, 7, 4, 49),
	#                       6: [   u'robert53@harrison.com.ba',
	#                              u'TeUUpEsQeuvxGrSmyQvX',
	#                              Decimal('-95250.36985')],
	#                       7: {   5: -588.7,
	#                              6: datetime.datetime(1972, 9, 27, 9, 47, 29),
	#                              7: [   u'ZTKaDjmcirgqBJmzjkHk',
	#                                     u'XLpqbkfPmSHkaGDGqZVw']}},
	#         u'quos': {   9: u'QuksdgAGKlEeeDKywBZi',
	#                      10: [   u'brittneylee@mccall.ba',
	#                              1250,
	#                              u'zsmith@gmail.com'],
	#                      11: {   9: u'TdBmWRiThjCjZCfVRFvV',
	#                              10: 50586277.2,
	#                              11: [   u'IKcGhlKpydIxDhetvTPp',
	#                                      u'gpiWpwlHhIYbWAYPRizI']}},
	#         u'saepe': {   6: Decimal('2.7177479511E+12'),
	#                       7: [5227, u'sbtEVJBuWqJgmYIwtvDp', 8.3304752],
	#                       8: {   6: -47173512536.6949,
	#                              7: -3488766331.895,
	#                              8: [   u'pWYoOMFcapguCozAIgkY',
	#                                     u'https://www.phillips-allen.com.ba/']}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   -64.53054,
	#     u'hdWjbnZxWjOIZwbqkYfo',
	#     u'tbell@medina-miller.gov.ba',
	#     2552,
	#     datetime.datetime(1988, 12, 20, 21, 46, 52),
	#     u'VBuJBNEyJAQPuXzUIfHZ',
	#     4047,
	#     -335147967.73316,
	#     -144909112.0,
	#     8318,
	#     datetime.datetime(1991, 10, 23, 12, 38, 7),
	#     4750]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('970349387723'),
	#     u'JcejPTlHrGSQcPdEpRyu',
	#     u'dSIZErrzjLDOWKaSUAGO',
	#     u'QPseyRxIVxWPGHGvKzxP',
	#     4541,
	#     3678)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([9376, u'zdfspSJkWYWcNgsnvODo', u'KVPbgQDgGJnwpJarivjx', -61299484.7, u'qzZMIoWoKfGIZiCSVDtL', Decimal('42.626687321'), 7644])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'amet': u'christianstacy@hodge.org.ba',
	#     u'aspernatur': u'kqtsFnmurrrlDtOIZgOa',
	#     u'deleniti': datetime.datetime(2010, 6, 27, 12, 47, 28),
	#     u'eos': 1851,
	#     u'fuga': 9853,
	#     u'iure': -168912.74433,
	#     u'magnam': datetime.datetime(2009, 4, 7, 7, 41, 26),
	#     u'neque': u'UvafmTCYyekIVYlaQARH',
	#     u'omnis': datetime.datetime(2015, 9, 23, 0, 41, 30),
	#     u'perspiciatis': u'gregory80@chavez-anderson.org.ba',
	#     u'provident': u'jLfvMYoobqONDHxHzYtl',
	#     u'ullam': Decimal('4.91580169308E+14')}

	fake.pyint()
	# 8772

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'055-35-5984'

	fake.ein()
	# u'30-0014290'

	fake.itin()
	# u'946-70-6961'

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

::

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

	fake.firefox()
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_0; rv:1.9.2.20) Gecko/2015-06-27 08:13:00 Firefox/3.6.14'

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

	fake.opera()
	# u'Opera/8.99.(X11; Linux x86_64; raj-IN) Presto/2.9.166 Version/11.00'

	fake.windows_platform_token()
	# u'Windows 98'

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

	fake.user_agent()
	# u'Opera/8.40.(X11; Linux x86_64; sv-FI) Presto/2.9.166 Version/10.00'

	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; PPC Mac OS X 10_11_6) AppleWebKit/5350 (KHTML, like Gecko) Chrome/15.0.890.0 Safari/5350'

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

	fake.safari()
	# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; mt-MT) AppleWebKit/535.22.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6535.22.5'
