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

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

::

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

	fake.building_number()
	# u'3274'

	fake.street_address()
	# u'264 Johnson Fields'

	fake.postalcode_plus4()
	# u'11209-0648'

	fake.city_prefix()
	# u'New'

	fake.military_ship()
	# u'USNS'

	fake.city()
	# u'Robertside'

	fake.zipcode_plus4()
	# u'48241-6619'

	fake.state_abbr()
	# u'MN'

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

	fake.street_suffix()
	# u'Views'

	fake.city_suffix()
	# u'stad'

	fake.military_dpo()
	# u'Unit 4293 Box 3950'

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

	fake.country()
	# u'Mauritius'

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

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

	fake.postalcode()
	# u'38088'

	fake.address()
	# u'146 Larsen Land\nNorth Brandon, GA 70035'

	fake.state()
	# u'Pennsylvania'

	fake.military_state()
	# u'AA'

	fake.street_name()
	# u'Miller Ville'

	fake.zipcode()
	# u'71854'

	fake.postcode()
	# u'68192-1051'

	fake.military_apo()
	# u'PSC 6180, Box 7208'

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

::

	fake.license_plate()
	# u'4OR3289'

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

::

	fake.bban()
	# 'NOCO5862878548582'

	fake.bank_country()
	# 'GB'

	fake.iban()
	# 'GB44OKFE2049551141274'

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

::

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

	fake.ean13()
	# u'8662995955585'

	fake.ean8()
	# u'08248497'

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

::

	fake.rgb_css_color()
	# u'rgb(20,62,135)'

	fake.color_name()
	# u'FloralWhite'

	fake.rgb_color()
	# u'132,9,66'

	fake.safe_hex_color()
	# u'#770000'

	fake.safe_color_name()
	# u'gray'

	fake.hex_color()
	# u'#73af4a'

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

::

	fake.company()
	# u'Bell-Martinez'

	fake.company_suffix()
	# u'Ltd'

	fake.catch_phrase()
	# u'Programmable homogeneous migration'

	fake.bs()
	# u'orchestrate granular markets'

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

::

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

	fake.credit_card_provider(card_type=None)
	# u'JCB 15 digit'

	fake.credit_card_full(card_type=None)
	# u'JCB 15 digit\nKyle Williams\n213149407050507 10/20\nCVC: 877\n'

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

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

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

::

	fake.cryptocurrency_code()
	# 'MZC'

	fake.currency_code()
	# 'SDG'

	fake.currency_name()
	# 'Cape Verdean escudo'

	fake.cryptocurrency_name()
	# 'Cardano'

	fake.cryptocurrency()
	# ('ETH', 'Ethereum')

	fake.currency()
	# ('ZMW', 'Zambian kwacha')

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

::

	fake.future_datetime(end_date="+30d", tzinfo=None)
	# datetime.datetime(2018, 8, 29, 12, 36, 23)

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

	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(2012, 2, 9, 19, 22, 3)

	fake.date_this_decade(before_today=True, after_today=False)
	# datetime.date(2012, 10, 17)

	fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 8, 12, 3, 48, 47)

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

	fake.day_of_week()
	# 'Monday'

	fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2012, 7, 3, 14, 11, 9)

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

	fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2009, 8, 10, 2, 26, 21)

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

	fake.am_pm()
	# 'PM'

	fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
	# datetime.datetime(2018, 8, 16, 10, 57, 15)

	fake.date_object(end_datetime=None)
	# datetime.date(1988, 8, 13)

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

	fake.iso8601(tzinfo=None, end_datetime=None)
	# '2009-01-31T14:41:12'

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

	fake.date_this_century(before_today=True, after_today=False)
	# datetime.date(2000, 7, 26)

	fake.month()
	# '08'

	fake.year()
	# '2016'

	fake.day_of_month()
	# '08'

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

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

	fake.century()
	# u'XX'

	fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
	# datetime.date(2012, 1, 9)

	fake.time_object(end_datetime=None)
	# datetime.time(23, 36, 26)

	fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
	# datetime.datetime(2018, 5, 6, 6, 14, 5)

	fake.date_time(tzinfo=None, end_datetime=None)
	# datetime.datetime(1997, 8, 7, 16, 42, 51)

	fake.time(pattern="%H:%M:%S", end_datetime=None)
	# '06:14:43'

	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, 8, 15, 20, 0, 15)

	fake.month_name()
	# 'September'

	fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
	# datetime.datetime(1552, 5, 8, 2, 21, 31)

	fake.time_delta(end_datetime=None)
	# datetime.timedelta(5632, 11573)

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

::

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

	fake.mime_type(category=None)
	# u'model/iges'

	fake.file_path(depth=1, category=None, extension=None)
	# u'/perspiciatis/nulla.avi'

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

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

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

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

::

	fake.ascii_free_email(*args, **kwargs)
	# 'patrick59@outlook.com'

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

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

	fake.email(*args, **kwargs)
	# u'mark47@baker.edu.ba'

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

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

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

	fake.uri_extension()
	# u'.asp'

	fake.uri_page()
	# u'privacy'

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

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

	fake.ascii_email(*args, **kwargs)
	# 'michelle61@lee.edu.ba'

	fake.ipv4_network_class()
	# u'a'

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

	fake.ascii_company_email(*args, **kwargs)
	# 'orozcocheyenne@richards.edu.ba'

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

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

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

	fake.slug(*args, **kwargs)
	# u'doloribus-deserunt'

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

	fake.company_email(*args, **kwargs)
	# u'kempmichael@rivera-payne.org.ba'

	fake.uri()
	# u'http://www.neal-harrison.ba/terms.html'

	fake.ipv6(network=False)
	# '1632:aeb7:4efc:9b35:c60f:100:55a5:dede'

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

	fake.ascii_safe_email(*args, **kwargs)
	# 'ftyler@example.com'

	fake.mac_address()
	# u'4f:f6:e4:43:11:10'

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

::

	fake.isbn10(separator="-")
	# u'1-75252-120-X'

	fake.isbn13(separator="-")
	# u'978-0-06-686532-4'

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

::

	fake.job()
	# 'Museum/gallery exhibitions officer'

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

::

	fake.text(max_nb_chars=200, ext_word_list=None)
	# u'Fugiat magni harum unde iusto molestias at. Incidunt autem nemo qui quae sapiente. Voluptatem dignissimos impedit doloribus fugit nam.'

	fake.paragraphs(nb=3, ext_word_list=None)
	# [   u'Necessitatibus et perspiciatis iusto praesentium ab libero. Dolores unde eligendi ex iste incidunt et dolore.',
	#     u'Repellendus quos quaerat ex. Accusantium at consectetur voluptates. Itaque in libero tempore occaecati laudantium perspiciatis. Nam maxime odio libero libero facilis praesentium.',
	#     u'Ea laudantium ea reprehenderit asperiores tempore optio. Soluta repellendus vero.']

	fake.words(nb=3, ext_word_list=None)
	# [u'dolorem', u'a', u'et']

	fake.sentences(nb=3, ext_word_list=None)
	# [   u'Mollitia adipisci voluptas maiores optio alias.',
	#     u'Ut animi repudiandae incidunt.',
	#     u'Reprehenderit enim debitis qui veniam.']

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

	fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
	# u'Nihil quam rem harum. Dignissimos quasi recusandae voluptates magni.'

	fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
	# u'Aut eveniet eius repudiandae ipsum nam.'

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

::

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

	fake.locale()
	# u'ca_FR'

	fake.binary(length=1048576)
	# bytearray(b'VP\xa8H\x0f\xf2|\x0f\x0e\xe4\x97\x9f\x04\xdcgZ\x90>\xb3\xac\n@y\xb9\xd3\x07ISY\xfe\xb6f\x19\xe3H\x89o_\x12\xedt\xbe\x1b\xc3\xb7\xb5\x1e\x1a\xda\x06\xd5P\xe5\xd1\x19\x1f\xdb\xce2\xff)L"\xc1\xd7\xb29\x17G\xb7\xc8=\xa5S\x04\xfbY\xd1\x15\x95\x97\xcc\x14L\xdb\x936\xceBi\xf8\xac\xc6i\xb0\xeb(\xba\x16\xee\x9em\x13&\x0c\xa5t\x1e\xf2`\xe0\xb7\xc0iqP\xf4,\xce\xbe\x9a`\xf4B\xca\xe6\xb8?\xda\x84\x0c0\x9d\xf3\x19\x1f\x8cH)\x9c,.\x9e\x9f\xfc\xce\xb2\xd5+\xb4\x9f\xf3\xe3\xe8\xaae\x06i\xbd\x93\n9\xe9J\xe5\xb3e\x9e\xa1 w\xdf\x19se\x03\xdc\x03\xf6Q5\xbd5x\x13N\xaf\xe8\x88j\xd7y\xf7\xea\xa9O\xa0aY5/\x14/\x93 \x92\xb8\xb3\xef\xca\x0b\xc2\x92\xeaoX>\xa8\xf8\xa1\xec\x1e\xbc\x06ARG\x89.\xd1\xbaL\xf7\xc9\xcd\x91,\xe4%\xc9\x02.\x99N\x1b_\xf5lx\x89`2\xa0\xb0\xc5\x9dQ~\xed\xd4\x95\xe5I\xa7E\xa9\x1a/MU\x9a^ a\x8b\xddu\xe1\xee\x93\xb5%\x93\\\xe6\xde\x96\xa2yR\x03?\xaf\x8d\xd5\xda\x8cl{\x1c\x8c^\x83\xb22d\x97\xbdY\xea=0\xc8$\x9e\xee$~\x88P\xc9\xf7/\xb0\xbc`j\x80\x1c,r\x97L\xf9\xa6\x95\xd6U\xf8*M\x865\x8a~\xc8N|\x06\xe3\x04\xca\xac\x0f\xfd\xb9\xc2\'h\xf4L\x8b$\xe3\x82\xee\xcf\xb1\n\xf3\xf9-~M\x85+$\xe3k\x9b\x8dj\xe4\x11\x9b\nnD\x12c\x99\xd4%}\xde\x03>Ikx\xa5h\n\xd8=\xa6xK\xfb3\x89J!|\x08\xd43bz}"\x11\xf2\x81\xe9\xba9\x91La\xd6\xb4\x898J\xa1nr\xae\xad\xe4c\xc6p\x18\xf4\rN!\xcc\xa3$\x80\x00\xec>K\xac\xef\xe4\xad\x92?N\xa3\x8d:N\xcb\x15\xa7\xb6\xca\xde\x89\x0f\x8a\xca\x9cT\xe944\x9b\xab\x95\xb42]\xa9j\xf0d\x1d\xc7\x07_\x13\xd6q\xd2:W\xf7\x81\xa0q\x17\x9d\x84\xa2\x08>\xbb\r\xec\xc3\xeb\x0e7sh6\xd0\xf45\xbe\x90\xc5\x10\x8e\xaa9O\xf5\x02]T\x93P\xcfR\x8dcI\x1bxU\x0f\x83Z\x93\xe6\x19b\xfbX`K\x0f\xccW6\x81d\x04\x01\x9d\xa0H\xcb\\1\xc0\x8aS\x03\xe0\x9b\xdc\xd87\xe4i\x1aN]\xcbA\xb6\x8d\x11Rb\xce\xcb\x9c\x8f\x8a)*\xf8).\xf6\xb6>*\xda\xc8*\x08\xe4\t\r\xed\x87\xeb\xfe\xb4\xb2\x16.\xcb*.\x8bm\xe2G\x91KT\x10\xa2\x11\xc70\x0f\x99\x8c+{<\x10\x977X\x1dz&\xbb1bQ\xb8\xd9g~H\xdd\x06\x87\xf0\xb2\\\x90\xb3\xc7O\xe4\x02|\xc6Q\x025\xed\x1b\x88\xf4\xc0\x8b\xba\x0cDe\x88\xed\xa6\x82=hO\xb1\x12\x8aG\xca0\xf6\x81\')~\x9b\xe4U\xce\xb6\x0e\x81\xddh_\xd5\n\x80\x1c(Gg:^\xa9+\xe0V\xbdY\xb2mH\xea\x8a\x08&\xf5Y_\x96\x9eA\x11L\x92\xcc\x8e\xdb^\x82\x9e\xb5\xda:\xa7588\xd1\xd1\xb5[B\xd4\xae\xe9?\\\x13\xda\x9f\xf2^9\xceG1\x13\x1c\x04\xeed\xbf\nE\xc8\x9a#xt\x9c\xd1\x92M\xab\xd9\xc3\xdd\xce\xa2\xa6Eg\xfd\x1e\x99\xa9\x875\x1e9m|\xc3\xbd\x99_4O\x04<\xe6:1\x7fM"\xc2D;\n\xc0\x08\xc6\xf0\xa0i\x9b\xc5\x88\xc8s\x8a\x057d52\x18\xa9H\x9b\x94\x98\xb1\x99\xcc\xec\x83X\xd1\xb5\x01\xb0!\xfe\xb3o2u\xa8\xff\xb0\xa0D\xed\xdcO\xf3W\xfd?r\xfa\xf2\x1a\xdco\xcf\xdb\x7f\x99"\xba\x1e\xa4DC0%#\xae\xe0\x85\xd9)c\x01\xae(\xb9\xfbQAp\xca\xbe?\xa9\x10`\xf7\xdd\x07\xa4\x06,\x01a\x90\xdf`\x04\xdd#wd\x97\xc2\xb4\xd0\xc3\xb1\x98l\x04\x7f\xe4\x1d6\xd8\x19@6\x9dZ:\xe8\xdb\xc6\xb5\xe3\xe7jm\xa0\xd7\xabxgL\xdf\x8b8\x00\xa8H\x05"\xcd\x05\xe8\x86\xc9\x16rY]2GK\x1a\x9c\x95\x81\xfa\xcf\xc1\x05K/\x1cAm\x99\xf2\x89\x19B\x08\xd0K\x89\xfb\xd8h\xd5\x0eA\x06\xda\x1a\xc4')

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

	fake.sha1(raw_output=False)
	# '091dec4d82ff4bb8ca2a4e069045ca2989f2081a'

	fake.null_boolean()
	# True

	fake.sha256(raw_output=False)
	# '908b0d2fbfea02f835bf0cb4375e987c4e4e8f7cf2b850e7da33ba2edecef8da'

	fake.uuid4()
	# 'f42afd44-af14-edc8-b052-ca0c511a21e6'

	fake.language_code()
	# u'sw'

	fake.boolean(chance_of_getting_true=50)
	# True

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

::

	fake.last_name_male()
	# u'Jones'

	fake.name_female()
	# u'Caroline Jenkins'

	fake.prefix_male()
	# u'Mr.'

	fake.prefix()
	# u'Mrs.'

	fake.name()
	# u'Amanda Lopez'

	fake.suffix_female()
	# u'PhD'

	fake.name_male()
	# u'Robert Robertson'

	fake.first_name()
	# u'Dominique'

	fake.suffix_male()
	# u'Jr.'

	fake.suffix()
	# u'II'

	fake.first_name_male()
	# u'Kevin'

	fake.first_name_female()
	# u'Connie'

	fake.last_name_female()
	# u'Beasley'

	fake.last_name()
	# u'Macias'

	fake.prefix_female()
	# u'Mrs.'

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

::

	fake.phone_number()
	# u'033 518 498'

	fake.msisdn()
	# '3495922916483'

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

::

	fake.simple_profile(sex=None)
	# {   'address': u'004 Tony Tunnel\nJuliabury, PA 50575',
	#     'birthdate': datetime.date(1982, 2, 18),
	#     'mail': u'rodriguezjohn@yahoo.com',
	#     'name': u'Isaac Perez',
	#     'sex': 'M',
	#     'username': u'kimberlyramos'}

	fake.profile(fields=None, sex=None)
	# {   'address': u'3930 Samantha Oval Suite 798\nAshleyhaven, MP 08651-9529',
	#     'birthdate': datetime.date(1978, 3, 3),
	#     'blood_group': 'A-',
	#     'company': u'Perez, Evans and Fuller',
	#     'current_location': (Decimal('13.471972'), Decimal('-42.601302')),
	#     'job': 'Scientist, water quality',
	#     'mail': u'skelley@outlook.com',
	#     'name': u'Gloria Barnes',
	#     'residence': u'USNV Poole\nFPO AP 90188-8238',
	#     'sex': 'F',
	#     'ssn': u'715-68-1529',
	#     'username': u'micheal90',
	#     'website': [   u'http://www.wilson.gov.ba/',
	#                    u'https://www.lopez.com.ba/',
	#                    u'http://www.ramirez-rogers.gov.ba/',
	#                    u'https://www.hayes.ba/']}

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

::

	fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   Decimal('-4.3611027072E+12'),
	#     u'IFZfdtuwUsmJzpazOruT',
	#     u'tiffanyhall@bih.net.ba',
	#     Decimal('-16465190.23'),
	#     8284,
	#     datetime.datetime(1972, 12, 25, 15, 36, 57),
	#     u'NjjjfGWQVPxbICXPXwMq',
	#     Decimal('-7.229'),
	#     96838997.71,
	#     datetime.datetime(1982, 1, 2, 15, 30, 45),
	#     3486)

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

	fake.pystruct(count=10, *value_types)
	# (   [   u'dDcZoEhFpRQqNkXMaWHC',
	#         Decimal('-2514438.894'),
	#         u'jNpqfYhLIiJEjUgBDxkr',
	#         u'JJrYlplKDdtlxebrDjGd',
	#         u'nmMRilNfLCpxxlZMuZqS',
	#         u'brian27@olson.com.ba',
	#         Decimal('4606670924.2'),
	#         u'http://www.smith.unsa.ba/explore/search/index/',
	#         Decimal('-75.6173201'),
	#         u'ZWSSJYIfLhaJeAxmxiia'],
	#     {   u'esse': u'eDhVTWLSNxAiYZZcQqGC',
	#         u'fuga': datetime.datetime(2017, 3, 30, 12, 46, 16),
	#         u'odit': Decimal('-1743180415.82'),
	#         u'perspiciatis': u'xhijFxoKDDWedqdBCWfi',
	#         u'porro': u'YhWAmIBKEfNQgWyFbLDh',
	#         u'quibusdam': datetime.datetime(1998, 6, 11, 7, 46, 41),
	#         u'quisquam': u'pLIAfpIxvGiThNtlnyIm',
	#         u'sit': u'WpaBhIUKDxCSiLKBAvGQ',
	#         u'veniam': u'wKAAzMezuKxGhqMgUSot',
	#         u'voluptas': 6683},
	#     {   u'consectetur': {   4: datetime.datetime(1997, 9, 11, 14, 46, 10),
	#                             5: [   u'nhfMAPtkTNzWmkWyDzPC',
	#                                    u'lhayes@young.unsa.ba',
	#                                    Decimal('-40211746.5543')],
	#                             6: {   4: u'shCKxjXecbwYBCWUKgoF',
	#                                    5: 232282996303477.0,
	#                                    6: [Decimal('692946271.467'), 1939]}},
	#         u'fugit': {   8: u'HjMUhypipEIhBUPPlmMf',
	#                       9: [   u'ilane@gmail.com',
	#                              u'weThVVwNYmYaxxIhUMUN',
	#                              u'VNOltPVPhHTRhhESvngc'],
	#                       10: {   8: u'https://chandler-price.unsa.ba/',
	#                               9: u'waORKWpsfroXTxAjYqlN',
	#                               10: [   u'EajwxIAZRjTWoAOKDvKr',
	#                                       u'nZcdKCtoVZxiFMGimrQo']}},
	#         u'ipsa': {   1: -528677654.1,
	#                      2: [9578, 4358, -465468240967.3],
	#                      3: {   1: 1719,
	#                             2: u'nchambers@mcguire-pena.ba',
	#                             3: [-24357188762481.0, 46494186616459.0]}},
	#         u'nobis': {   0: datetime.datetime(2004, 7, 27, 11, 43, 6),
	#                       1: [   u'phillipsamanda@haynes-diaz.net.ba',
	#                              4724894.968,
	#                              6066],
	#                       2: {   0: u'scottmorrison@hotmail.com',
	#                              1: Decimal('-48528616.0'),
	#                              2: [u'KqGGLXbBSLVMhdvflsuq', 3443]}},
	#         u'occaecati': {   3: Decimal('-6951062.6567'),
	#                           4: [   u'VqgwcuAZVWJyDCtGddHU',
	#                                  -6535786043.63,
	#                                  u'https://hahn.gov.ba/list/login/'],
	#                           5: {   3: u'UqGIetAeUSCSuPyusfIq',
	#                                  4: u'XbwUotnjifSOdVkCoBTj',
	#                                  5: [   u'https://strong.ba/search.php',
	#                                         u'fQeZwtQHCCbokzQRcDYR']}},
	#         u'porro': {   9: u'calvin46@evans-murray.unsa.ba',
	#                       10: [   datetime.datetime(2001, 9, 10, 5, 16, 45),
	#                               3502,
	#                               u'hXLaCQUIWzMUobgOuxbR'],
	#                       11: {   9: 5081,
	#                               10: Decimal('159832286193'),
	#                               11: [   u'EYnttDvbbXMlUnjPscPW',
	#                                       u'YYHDlBociGMcJGWNCCxK']}},
	#         u'quasi': {   6: datetime.datetime(1980, 12, 19, 12, 0, 54),
	#                       7: [   u'gAFiJvJKIleejBkIWMYy',
	#                              6334,
	#                              Decimal('72.7940454284')],
	#                       8: {   6: 9876,
	#                              7: u'DJcCdWIbFYeoyXUJKPNW',
	#                              8: [   u'tvmZMHRlNdvXdcRdUhsv',
	#                                     u'ZUXLufJzWMCyOyQFjimt']}},
	#         u'repellat': {   5: 5142,
	#                          6: [   -158615.3408,
	#                                 u'kKUWHyLsxcYdbnNakSpV',
	#                                 u'https://www.coleman-knight.gov.ba/blog/post.html'],
	#                          7: {   5: u'https://gibson.edu.ba/login/',
	#                                 6: 566,
	#                                 7: [   datetime.datetime(1973, 3, 29, 11, 2, 1),
	#                                        u'YiujEfcnjQYhStTUuFIK']}},
	#         u'ullam': {   7: u'xrobbins@tel.net.ba',
	#                       8: [   Decimal('-15908957738.7'),
	#                              datetime.datetime(2005, 1, 5, 20, 19, 50),
	#                              5527],
	#                       9: {   7: 1923,
	#                              8: u'tTPdvEeRkMUmVzLcwTab',
	#                              9: [u'EmyICZWmqbbhuIwsgklk', 7943]}},
	#         u'voluptates': {   2: u'mUXckOInJQjfwxqbRAij',
	#                            3: [   1423,
	#                                   datetime.datetime(1972, 4, 30, 13, 11, 28),
	#                                   u'http://hodges-bradford.edu.ba/homepage.php'],
	#                            4: {   2: Decimal('-253971133.333'),
	#                                   3: u'egYeyyhLDtBBmonDWuaT',
	#                                   4: [1356, Decimal('-8.8521486103')]}}})

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

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

	fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
	# [   u'TCFmVfPdYUABgPvHjuHl',
	#     6400,
	#     u'XbkMxqpPPlGjYZhRcNdV',
	#     u'yEwgksdbiLFSiZJlmAIZ',
	#     u'QsFzmShhCvufoLZvJyJS',
	#     u'wvpudApfWpaqcVAEhSZy',
	#     Decimal('8.6534247'),
	#     u'yCagYEpEldrcwXvwYvbY',
	#     datetime.datetime(2003, 5, 8, 0, 19, 55),
	#     7557]

	fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
	# (   u'http://roberts.ba/tags/categories/privacy.htm',
	#     u'alvinsmith@zhang-hill.unsa.ba',
	#     2282,
	#     u'jennifer53@winters.net.ba',
	#     u'REOsXlCMNJybYXYfXhYr',
	#     datetime.datetime(2014, 2, 17, 21, 43, 21),
	#     u'nfrJQJncSAUgmNCYgpAl',
	#     7508,
	#     6812,
	#     4682)

	fake.pybool()
	# False

	fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
	# set([u'qsVQEkZbEvQwtcLopOvo', u'vFlsVovuYmpfJYMKGWBO', u'NWPDKSOJeaSMOYEZSijU', datetime.datetime(1987, 4, 9, 22, 29, 34), u'mFTuMGjTfLZllpPutVzM', Decimal('803.8535427')])

	fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
	# {   u'ad': 4381,
	#     u'asperiores': 9240,
	#     u'dolorem': datetime.datetime(2001, 1, 4, 16, 29, 36),
	#     u'eligendi': u'mZQYOOGCkUcNSBkOlKyP',
	#     u'iure': u'kxfEkXgQOgLuARfVfonA',
	#     u'modi': Decimal('92540345732.0'),
	#     u'nesciunt': u'PmOjkoaVZuEVHBdadgWp',
	#     u'repellat': u'OEwrSzZKJglwanWFbQli',
	#     u'voluptas': Decimal('9805.45565299'),
	#     u'voluptatibus': u'PFFgBWZBfTKqzcJPeUfx'}

	fake.pyint()
	# 8443

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

::

	fake.ssn(taxpayer_identification_number_type="SSN")
	# u'215-68-1961'

	fake.ein()
	# u'80-5504758'

	fake.itin()
	# u'910-98-6756'

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

::

	fake.mac_processor()
	# u'Intel'

	fake.firefox()
	# u'Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2011-02-08 19:43:40 Firefox/3.6.12'

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

	fake.opera()
	# u'Opera/9.15.(Windows NT 5.1; tk-TM) Presto/2.9.173 Version/11.00'

	fake.windows_platform_token()
	# u'Windows 98; Win 9x 4.90'

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

	fake.user_agent()
	# u'Mozilla/5.0 (X11; Linux i686) AppleWebKit/5340 (KHTML, like Gecko) Chrome/63.0.804.0 Safari/5340'

	fake.linux_processor()
	# u'x86_64'

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

	fake.mac_platform_token()
	# u'Macintosh; U; Intel Mac OS X 10_5_6'

	fake.safari()
	# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_2 rv:4.0; fur-IT) AppleWebKit/533.20.2 (KHTML, like Gecko) Version/4.0.2 Safari/533.20.2'
