Language sl_SI

faker.providers.address

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

fake.street_name()
# u'Pot na Drenikov vrh'

fake.address()
# u'I\u017eanska cesta 2a\n1118 Ormo\u017e'

fake.street_address()
# u'Dolinarjeva ulica 29'

fake.postcode()
# u'5389'

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

fake.country()
# u'Republika Mali'

fake.city_name()
# u'Koper'

fake.street_suffix()
# u'Street'

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

fake.city_suffix()
# u'Ville'

fake.building_number()
# u'922'

fake.country_code()
# u'BR'

fake.city()
# u'\u017dalec'

fake.state()
# u'Gori\u0161ka'

faker.providers.barcode

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

fake.ean13()
# u'9951081849600'

fake.ean8()
# u'16375734'

faker.providers.color

fake.rgb_css_color()
# u'rgb(172,226,252)'

fake.color_name()
# u'SkyBlue'

fake.rgb_color_list()
# (107, 213, 170)

fake.rgb_color()
# u'65,187,0'

fake.safe_hex_color()
# u'#669900'

fake.safe_color_name()
# u'olive'

fake.hex_color()
# u'#4c86a7'

faker.providers.company

fake.company()
# u'Karol Pavlin s.p.'

fake.company_suffix()
# u'd.d.'

faker.providers.credit_card

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

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

fake.credit_card_full(card_type=None)
# u'VISA 16 digit\nBorut Tom\u0161i\u010d\n4305627376975003 10/22\nCVC: 699\n'

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

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

faker.providers.currency

fake.currency_code()
# 'KZT'

faker.providers.date_time

fake.date_time_ad()
# datetime.datetime(618, 1, 31, 7, 46, 26)

fake.month()
# '11'

fake.am_pm()
# 'PM'

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

fake.iso8601()
# '1971-02-23T10:17:45'

fake.date_time()
# datetime(2013, 8, 15, 12, 10, 50)

fake.month_name()
# 'September'

fake.date_time_this_year(before_now=True, after_now=False)
# datetime(2015, 5, 15, 18, 24, 25)

fake.unix_time()
# 1151202384

fake.day_of_week()
# 'Sunday'

fake.day_of_month()
# '11'

fake.time(pattern="%H:%M:%S")
# '15:12:10'

fake.date_time_between(start_date="-30y", end_date="now")
# datetime(1987, 4, 9, 1, 28, 28)

fake.date_time_this_month(before_now=True, after_now=False)
# datetime(2015, 11, 3, 7, 52, 24)

fake.year()
# '2008'

fake.date_time_between_dates(datetime_start=None, datetime_end=None)
# datetime(2015, 11, 5, 8, 51, 55)

fake.date_time_this_century(before_now=True, after_now=False)
# datetime(2010, 1, 31, 19, 25, 58)

fake.date_time_this_decade(before_now=True, after_now=False)
# datetime(2014, 5, 22, 12, 47, 42)

fake.century()
# u'XIV'

fake.date(pattern="%Y-%m-%d")
# '1991-04-26'

fake.time_delta()
# datetime.timedelta(266, 46890)

faker.providers.file

fake.mime_type(category=None)
# u'image/vnd.microsoft.icon'

fake.file_name(category=None, extension=None)
# u'ducimus.tiff'

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

faker.providers.internet

fake.ipv4()
# u'8.104.48.203'

fake.url()
# u'http://www.ramak.si/'

fake.company_email()
# u'zdenka21@vodopivec.com'

fake.uri()
# u'http://jovanovi.si/kategorije/main/kategorija.html'

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

fake.image_url(width=None, height=None)
# u'http://dummyimage.com/372x552'

fake.tld()
# u'si'

fake.free_email()
# u'olga.kocjancic@volja.net'

fake.slug(*args, **kwargs)
# u'consequatur-enim'

fake.free_email_domain()
# u'gmail.com'

fake.domain_name()
# u'bernarda.com'

fake.uri_extension()
# u'.html'

fake.ipv6()
# u'c707:4480:0e15:d869:ecad:4540:b77c:07fb'

fake.safe_email()
# u'mateja.kaucic@example.org'

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

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

fake.email()
# u'hocevar.matija@volja.net'

fake.uri_page()
# u'avtor'

fake.mac_address()
# u'd4:52:c6:77:05:10'

faker.providers.job

fake.job()
# 'Training and development officer'

faker.providers.lorem

fake.text(max_nb_chars=200)
# u'Assumenda accusamus optio nostrum distinctio voluptatum quod officiis. Non ut adipisci aliquid dolorem. Et voluptas ut magni alias.'

fake.sentence(nb_words=6, variable_nb_words=True)
# u'Enim rerum rerum et voluptas exercitationem dolores illum.'

fake.word()
# u'ab'

fake.paragraphs(nb=3)
# [   u'Culpa vitae voluptatum deserunt. Mollitia dicta consectetur rerum voluptatem quasi qui quaerat. Voluptate consequatur esse eveniet fuga. Placeat excepturi et impedit aut.',
#     u'Voluptatibus fugit voluptate nostrum blanditiis hic. Et adipisci est consequuntur omnis minima.',
#     u'Nihil et reiciendis debitis eaque quis. Impedit quia nihil adipisci. Qui reprehenderit fuga amet tempora sed fugiat et. Fuga quod officia quis.']

fake.words(nb=3)
# [u'doloremque', u'eveniet', u'nulla']

fake.paragraph(nb_sentences=3, variable_nb_sentences=True)
# u'Et velit dolorum at consequatur ut. Molestiae rem ut omnis veritatis. Quo ut consectetur est dolorum enim. Molestiae natus veniam a.'

fake.sentences(nb=3)
# [   u'Ut provident quia est ab qui.',
#     u'Aspernatur iusto sunt et aperiam.',
#     u'Saepe temporibus enim id itaque reprehenderit tempora.']

faker.providers.misc

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

fake.locale()
# u'de_NP'

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

fake.sha1(raw_output=False)
# '7b6a23485be010f14ac6113f19a1dc31bf9b88ed'

fake.null_boolean()
# False

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

fake.uuid4()
# '182c7321-493d-4fb9-b8b9-a22a9b231b72'

fake.language_code()
# u'es'

fake.boolean(chance_of_getting_true=50)
# False

faker.providers.person

fake.last_name_male()
# u'Kranjc'

fake.name_female()
# u'Mirjam Jane\u017ei\u010d'

fake.prefix_male()
# ''

fake.prefix()
# ''

fake.name()
# u'Melita Furlan'

fake.suffix_female()
# ''

fake.name_male()
# u'Nikolaj Ro\u017ei\u010d'

fake.first_name()
# u'Valter'

fake.suffix_male()
# ''

fake.suffix()
# ''

fake.first_name_male()
# u'Davorin'

fake.first_name_female()
# u'Anka'

fake.last_name_female()
# u'Bregar'

fake.last_name()
# u'Pavli\u010d'

fake.prefix_female()
# ''

faker.providers.phone_number

fake.phone_number()
# u'030 796 889'

faker.providers.profile

fake.simple_profile()
# {   'address': u'Polje, cesta XVI 3a\n3914 \u017diri',
#     'birthdate': '2012-02-08',
#     'mail': u'daniel.mavric@gmail.com',
#     'name': u'Davor Lazar',
#     'sex': 'F',
#     'username': u'gal36'}

fake.profile(fields=None)
# {   'address': u'Trstenjakova ulica 6c\n1396 Piran',
#     'birthdate': '1986-10-30',
#     'blood_group': 'AB+',
#     'company': u'Niko Dolinar s.p.',
#     'current_location': (Decimal('78.6281145'), Decimal('-23.307559')),
#     'job': 'Chemist, analytical',
#     'mail': u'bernarda.rajh@volja.net',
#     'name': u'Metod Kramberger',
#     'residence': u'Vegova ulica 300\n4217 Murska Sobota',
#     'sex': 'M',
#     'ssn': u'636-47-0102',
#     'username': u'zeleznik.tadeja',
#     'website': [   u'http://petra.com/',
#                    u'http://karol.si/',
#                    u'http://www.miro.com/',
#                    u'http://www.utar.com/']}

faker.providers.python

fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
# [   7782,
#     u'Rerum nisi nemo.',
#     u'Laudantium sint.',
#     u'Voluptatem.',
#     2.8006,
#     3075,
#     u'Laborum veniam sit.',
#     u'Earum delectus et.',
#     datetime(1986, 6, 11, 21, 11, 13),
#     Decimal('-796118.555932'),
#     -3.5794]

fake.pystr(max_chars=20)
# u'Dolorem officiis.'

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

fake.pystruct(count=10, *value_types)
# (   [   u'Aliquid quibusdam.',
#         u'Quasi vero aut quia.',
#         527827617.0,
#         u'kumer.vincenc@email.si',
#         u'Velit sunt vero aut.',
#         u'Est omnis sit harum.',
#         u'ceh.timotej@volja.net',
#         u'Laboriosam sint.',
#         4470,
#         u'Nihil neque.'],
#     {   u'aspernatur': u'uros38@siol.net',
#         u'aut': datetime(1989, 4, 26, 15, 52, 36),
#         u'et': u'http://www.klemeni.com/',
#         u'iure': 6.4,
#         u'nisi': 161,
#         u'possimus': 9343085.6737406,
#         u'quasi': u'Vel numquam.',
#         u'ratione': u'Commodi magni sint.',
#         u'rerum': u'Nobis minus.',
#         u'vitae': 2473},
#     {   u'atque': {   1: u'Aut natus iure.',
#                       2: [   Decimal('33365.7'),
#                              u'kocjancic.nastja@gmail.com',
#                              Decimal('8.642')],
#                       3: {   1: 369181809027985.0, 2: 261, 3: [1524, 4774]}},
#         u'cum': {   0: Decimal('-584721469.1'),
#                     1: [4023336771.595, 7617, u'zdenko.lazar@email.si'],
#                     2: {   0: u'Incidunt voluptatum.',
#                            1: 2664,
#                            2: [   Decimal('930261419.683'),
#                                   Decimal('5.744901634')]}},
#         u'cupiditate': {   7: u'Illum iste.',
#                            8: [   datetime(2006, 9, 2, 12, 41, 47),
#                                   u'Ex dolor nihil.',
#                                   u'Ea repellat cum et.'],
#                            9: {   7: datetime(1976, 9, 5, 5, 38, 40),
#                                   8: u'rutar.ziga@gmail.com',
#                                   9: [u'Et mollitia quae.', 2419]}},
#         u'dolorem': {   6: 5355,
#                         7: [u'Quisquam nesciunt.', 8718, u'Ad nisi et.'],
#                         8: {   6: u'Voluptas veritatis.',
#                                7: 105,
#                                8: [   u'Laborum sint quae.',
#                                       u'vidovic.viktorija@siol.net']}},
#         u'ea': {   2: 9471,
#                    3: [   u'blazic.anica@gmail.com',
#                           u'http://www.janei.com/wp-content/zasebnost.jsp',
#                           u'Commodi aspernatur.'],
#                    4: {   2: u'Tenetur deserunt.',
#                           3: datetime(1974, 2, 15, 16, 43, 5),
#                           4: [-8.24688731713, 3538]}},
#         u'esse': {   4: u'Harum debitis.',
#                      5: [   -96.59556069928,
#                             Decimal('909712896.52'),
#                             u'Dolor dolore non.'],
#                      6: {   4: Decimal('-73.1761127'),
#                             5: 3892,
#                             6: [   u'http://www.bregar.com/avtor/',
#                                    33050078522.166]}},
#         u'facere': {   3: u'Autem cumque.',
#                        4: [   u'http://daniel.com/kategorije/novica/zasebnost.html',
#                               Decimal('-951094269968'),
#                               u'Voluptatem fuga.'],
#                        5: {   3: u'Consectetur autem.',
#                               4: 5263,
#                               5: [u'Molestiae autem.', 5839]}},
#         u'quo': {   9: datetime(2012, 6, 30, 3, 54, 3),
#                     10: [7634, 5708, datetime(2003, 9, 3, 20, 5, 57)],
#                     11: {   9: u'http://danijela.com/app/main/komentarji/avtor/',
#                             10: Decimal('-2.340863129'),
#                             11: [   Decimal('-4.65734985288E+13'),
#                                     98434127171.7]}},
#         u'suscipit': {   8: u'bogomir.javornik@volja.net',
#                          9: [   u'Soluta et aut.',
#                                 u'Laborum autem.',
#                                 Decimal('-92990654218.6')],
#                          10: {   8: 1.2195332,
#                                  9: u'Velit delectus nam.',
#                                  10: [   u'http://ivan.com/main.html',
#                                          50389642253587.0]}}})

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

fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
# [   u'http://www.pavlin.si/pogoji/',
#     u'Vitae tenetur enim.',
#     u'julijana50@gmail.com',
#     u'Nesciunt.',
#     datetime(1991, 4, 10, 7, 55, 7),
#     u'Voluptate nostrum.',
#     u'Dolorem omnis animi.',
#     datetime(1988, 1, 16, 20, 41, 52),
#     u'Sunt eos.',
#     Decimal('-31586.2023049'),
#     u'Sunt perspiciatis.',
#     9919]

fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
# (   Decimal('-47.8'),
#     -45669590006.0,
#     u'Et voluptatem aut.',
#     1639,
#     u'zakrajsek.masa@siol.net',
#     u'ana.sustar@siol.net',
#     u'http://logar.si/komentarji/iskanje.asp',
#     u'jernej28@siol.net',
#     u'Voluptas debitis.',
#     4118,
#     589.99017,
#     u'Reiciendis et.')

fake.pybool()
# True

fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
# set([Decimal('207364.903'), u'Quod voluptas sit.', u'Fugit dolore.', 2967, 9997, u'http://sever.com/app/app/wp-content/domov.html', 493410.0, 6612, Decimal('0.445216986384'), u'http://www.valerija.si/domov.asp', u'petek.nastja@siol.net', 7303, 49600.83])

fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
# {   u'error': u'http://vidmar.si/homepage/',
#     u'ipsa': 2924,
#     u'iste': u'andrej.jenko@volja.net',
#     u'magnam': Decimal('5.41'),
#     u'nihil': u'http://www.andrejka.com/novice/homepage.php',
#     u'quisquam': u'http://alenka.com/komentarji/iskanje/app/zasebnost/',
#     u'saepe': datetime(1999, 8, 24, 9, 51, 48),
#     u'sequi': 45964670813.0}

fake.pyint()
# 3952

faker.providers.ssn

fake.ssn()
# u'695-48-2656'

faker.providers.user_agent

fake.mac_processor()
# u'Intel'

fake.firefox()
# u'Mozilla/5.0 (Windows 98; Win 9x 4.90; it-IT; rv:1.9.0.20) Gecko/2010-06-12 02:06:41 Firefox/3.8'

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

fake.opera()
# u'Opera/8.92.(X11; Linux x86_64; en-US) Presto/2.9.180 Version/11.00'

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

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

fake.user_agent()
# u'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; en-US) AppleWebKit/531.23.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6531.23.5'

fake.chrome()
# u'Mozilla/5.0 (Windows CE) AppleWebKit/5341 (KHTML, like Gecko) Chrome/14.0.831.0 Safari/5341'

fake.linux_processor()
# u'x86_64'

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

fake.safari()
# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_0 rv:2.0; sl-SI) AppleWebKit/531.32.3 (KHTML, like Gecko) Version/5.1 Safari/531.32.3'