Language uk_UA¶
faker.providers.address
¶
fake.latitude()
# Decimal('42.641052')
fake.street_name()
# u'\u0427\u0435\u043a\u0430\u043b\u044e\u043a \u0443\u0437\u0432\u0456\u0437'
fake.address()
# u'\u0410\u0431\u0440\u0430\u0433\u0430\u043c\u043e\u0432\u0441\u044c\u043a\u0438\u0439 \u0443\u0437\u0432\u0456\u0437, 39, \u043c\u0456\u0441\u0442\u043e \u0410\u043b\u044c\u0431\u0456\u043d\u0430, 87824'
fake.street_address()
# u'\u0432\u0443\u043b\u0438\u0446\u044f \u0411\u0430\u0440\u0430\u043d, 36'
fake.postcode()
# u'27353'
fake.longitude()
# Decimal('124.910720')
fake.country()
# u'\u041c\u0430\u043b\u044c\u0434\u0456\u0432\u0438'
fake.geo_coordinate(center=None, radius=0.001)
# Decimal('-124.787870')
fake.street_prefix()
# u'\u043f\u0440\u043e\u0441\u043f\u0435\u043a\u0442'
fake.street_suffix()
# u'\u0443\u0437\u0432\u0456\u0437'
fake.city_prefix()
# u'\u0445\u0443\u0442\u0456\u0440'
fake.city_suffix()
# u'Ville'
fake.building_number()
# u'15'
fake.country_code()
# u'KH'
fake.city()
# u'\u0445\u0443\u0442\u0456\u0440 \u0420\u043e\u043c\u0430\u043d'
faker.providers.automotive
¶
fake.license_plate()
# u'1-30165C'
faker.providers.barcode
¶
fake.ean(length=13)
# u'0003181788439'
fake.ean13()
# u'1994131379403'
fake.ean8()
# u'06448387'
faker.providers.color
¶
fake.rgb_css_color()
# u'rgb(102,19,93)'
fake.color_name()
# u'\u0410\u043c\u0430\u0440\u0430\u043d\u0442\u043e\u0432\u0438\u0439'
fake.rgb_color()
# u'63,172,196'
fake.safe_hex_color()
# u'#ee9900'
fake.safe_color_name()
# u'black'
fake.hex_color()
# u'#a8b3a6'
faker.providers.company
¶
fake.company()
# u'\u0420\u044f\u0431\u043e\u0432\u0456\u043b Ltd'
fake.company_suffix()
# u'Ltd'
fake.catch_phrase()
# u'Sharable secondary matrices'
fake.bs()
# u'monetize wireless synergies'
faker.providers.credit_card
¶
fake.credit_card_security_code(card_type=None)
# u'092'
fake.credit_card_provider(card_type=None)
# u'Mastercard'
fake.credit_card_full(card_type=None)
# u'VISA 16 digit\n\u041d\u0430\u0434\u0456\u044f \u0404\u0440\u043e\u0448\u0435\u043d\u043a\u043e\n4247276752023649 08/22\nCVC: 041\n'
fake.credit_card_expire(start="now", end="+10y", date_format="%m/%y")
# '04/24'
fake.credit_card_number(card_type=None)
# u'4461504762294937'
faker.providers.currency
¶
fake.cryptocurrency_code()
# 'NXT'
fake.currency_code()
# 'MDL'
faker.providers.date_time
¶
fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2012, 11, 27, 20, 8, 47)
fake.date_time_between(start_date="-30y", end_date="now", tzinfo=None)
# datetime.datetime(2011, 8, 9, 11, 40, 48)
fake.time(pattern="%H:%M:%S")
# '19:27:40'
fake.date_time_ad(tzinfo=None)
# datetime.datetime(1737, 12, 23, 21, 30, 20)
fake.past_date(start_date="-30d", tzinfo=None)
# datetime.date(2017, 9, 2)
fake.day_of_week()
# 'Saturday'
fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2017, 2, 17, 23, 30, 51)
fake.time_object()
# datetime.time(10, 34, 13)
fake.iso8601(tzinfo=None)
# '1977-05-01T06:44:11'
fake.time_delta()
# datetime.timedelta(5771, 56864)
fake.am_pm()
# 'PM'
fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
# datetime.datetime(2017, 9, 6, 20, 17, 21)
fake.date_object()
# date(1990, 12, 9)
fake.future_datetime(end_date="+30d", tzinfo=None)
# datetime.datetime(2017, 9, 30, 19, 15, 42)
fake.date_time(tzinfo=None)
# datetime(2005, 10, 2, 12, 13, 49)
fake.date(pattern="%Y-%m-%d")
# '1995-10-26'
fake.future_date(end_date="+30d", tzinfo=None)
# datetime.date(2017, 9, 13)
fake.month()
# '11'
fake.unix_time()
# 259062019
fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2017, 9, 4, 17, 8, 21)
fake.day_of_month()
# '21'
fake.year()
# '2000'
fake.timezone()
# u'America/Santiago'
fake.century()
# u'XVI'
fake.time_series(start_date="-30d", end_date="now", precision=None, distrib=None, tzinfo=None)
# <generator object time_series at 0xb4e07198>
fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2017, 9, 5, 19, 17, 9)
fake.past_datetime(start_date="-30d", tzinfo=None)
# datetime.datetime(2017, 8, 9, 22, 53, 20)
fake.month_name()
# 'July'
faker.providers.file
¶
fake.file_path(depth=1, category=None, extension=None)
# u'/fuga/veniam.avi'
fake.mime_type(category=None)
# u'model/example'
fake.file_name(category=None, extension=None)
# u'delectus.mp3'
fake.file_extension(category=None)
# u'jpeg'
faker.providers.internet
¶
fake.url()
# u'https://www.zharko.org/'
fake.company_email()
# u'bohuslavreva@tryhub.org'
fake.uri()
# u'https://www.nestaiko.org/register.html'
fake.domain_word(*args, **kwargs)
# u'bashpolchenko'
fake.ipv4(network=False)
# '79.120.75.58'
fake.domain_name(levels=1)
# u'il\u02b9ienko.com'
fake.tld()
# u'com'
fake.uri_path(deep=None)
# u'list/search'
fake.free_email()
# u'viradanchuk@meta.ua'
fake.slug(*args, **kwargs)
# u'totam-corporis'
fake.free_email_domain()
# u'ukr.net'
fake.uri_extension()
# u'.html'
fake.ipv6(network=False)
# '9902:173c:a308:2307:bca1:ce28:fed7:2c14'
fake.user_name(*args, **kwargs)
# u'al\u02b9bina84'
fake.image_url(width=None, height=None)
# u'https://dummyimage.com/19x685'
fake.email()
# u'kanivets\u02b9adam@gmail.com'
fake.uri_page()
# u'search'
fake.mac_address()
# u'37:4d:a1:09:a7:52'
fake.safe_email()
# u'zabilahryhorii@example.com'
faker.providers.isbn
¶
fake.isbn10(separator="-")
# u'0-288-38298-6'
fake.isbn13(separator="-")
# u'978-0-506-62920-2'
faker.providers.job
¶
fake.job()
# u'\u0420\u0435\u0436\u0438\u0441\u0435\u0440'
faker.providers.lorem
¶
fake.text(max_nb_chars=200, ext_word_list=None)
# u'Tempora optio explicabo commodi saepe mollitia quisquam dolore. Aliquid esse fugiat ipsam unde unde quo. Vero culpa esse id voluptatem.'
fake.paragraphs(nb=3, ext_word_list=None)
# [ u'In animi beatae ducimus omnis. Quae velit natus nostrum quos. Nesciunt enim dolorem quisquam pariatur nesciunt repellat earum. Occaecati enim perspiciatis ducimus placeat.',
# u'Optio molestias aliquam perferendis deserunt nulla. Unde similique aliquid atque tenetur. Illum minima officia possimus labore.',
# u'Dolorem a esse exercitationem dignissimos possimus. Quia debitis occaecati nam quaerat veniam deserunt vero. Nobis vitae libero natus alias aut.']
fake.words(nb=3, ext_word_list=None)
# [u'quisquam', u'hic', u'consequuntur']
fake.sentences(nb=3, ext_word_list=None)
# [ u'Modi vero ea iusto non illo tempore.',
# u'Laudantium incidunt voluptate tempore earum ipsam.',
# u'Facere rerum natus tempore illum incidunt quisquam voluptatem.']
fake.word(ext_word_list=None)
# u'quo'
fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
# u'Nam voluptate maxime et commodi aperiam. Cumque quam voluptatum voluptates nihil. Corporis accusamus voluptatibus possimus ipsam ipsum quia provident.'
fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
# u'Ex quos maiores sunt.'
faker.providers.misc
¶
fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
# u'Jo1SBmim!7'
fake.locale()
# u'cv_RU'
fake.binary(length=1048576)
# bytearray(b'\xa9\x15\xf0\x16\xa2(m\xee\x1d\xe2\xe82\xd0\xfb\x0e\x162\x8eQ\xa7Aodg3\xa4\xbb\x16f\x00r\x04%\x9d\x86\xdc\x9b2\xa9\xad\x00l\xddJZ\xaa\xf5\xf8\x02j\x01\xccG6=\xf5\xd1\x1e\xc1yb\xa9\xb2\xef\x10\xfc\xf6\x8c,\xd5\x04v\ns\x07\xe0\xf6\xcd)%\xb2\xebAW\xfd\xb7\x0f\x01b\x1b\xc1V\x9f\x90~lhu\x98\x9bJ\xc0\xe1\xe5\xaf\xcau\x8f\x0e\x89j\x86\xc2\xc2\x1a\x9aw\xf5\'%\xbc4%\x9eQ#2\x00i+\xce\xe7\xfe\xbd\xaa\xebH\xb9#\xefJ\xeb\x9ef{\xc1\xbc\x0c\xaa\r\x11=\xf2\xa5lv\xaf\x8ctI\xf8\x1b\x0f\xbb\xc2\xd5*\xe4\xfc\x01\x8aa\xbfs1\x04\x9c\xf0q\xcc\x82\ng\x8a\xdb"h\no\x13E\x0b M~6\x144\x14i.\xadz\xf2\xe1C\xda\xca\xdc\x82mRV5\x1e\xb3\xef\xcbv\xd6S\xea\xb1\xda\xd5U\xfb\xc7\xff\xa9\x07e\xa3rgj\x1cm\x9a\xd6\xaa<\xe1\xc1\x14y,5\xa5\x9c\xdf\xc4/,N\xa5\x13\x9f.\x14^\xa7\xe2\xac\xc5{\xae;\xcf\x8c\xbc\xc2\xaa/N\r\xf1u\x05o\xadQ_\xbf\xa7W1\xe2\xce\x18\x90\xb0Mm,8v\xe6?U\x1c\xf4\x97\xc3\x1aCc\x97/e\xf4\n\x86m\xaf\xa8]\xbb\xb8{91\xea\x86\xbe\xf4\xa6\xa1xn\xef\x84hg\xf4\xf7p\xe2n\xcbl\xa4t%9\x94\xde#`0\x87n^+\xa8\xf7\xd7)\x1a4j\x91\x0b]\xe2\x1e\xa2\xb2\x16\xf5\xe9\x07\xcc{\xcaT\xaa\xd9\x02\xb4\x8e\xef\x97\xfc\xda\xbd\x97\xf14\x9c\xd5\xe4\xf8jm\x84b\x97\x88]\xb2?\x88\xa8\xda\xf9\xe7\xb1J=\xe4\xdf\xff\x03\xacq\xb3s\xd0)\xf03~d\x87\n\xc4D\x9f\x16\xffo\x1d\xad\xabZ9\xdb\x99\xe1\x1c\xbdfa\x1ds?4\xd5R\xa7\xb4\x85+\xc2Uk\xe0\x96E6\x88\x18f\x03\xb4\t\xd8\x1e\xd8\xf8\x8c\xb2\xceT\xfd\x1c\xf9\xce\x8c\xe5\xff\xad\nHM\xbf\xe5\x04\xea\x8e\x7f\xe2\x94+w^\x03g\xd8\xe8\x0e\xc1L\xab\xd6\xde\tfzO6a\xd3\xb5\x8d\xa2\xe3\x08\xcb\x1e~\x17\x11\xe7\x0bw^\xfe\xf0\xcb\xed\xab\xd9K\xed\xe7\xde\x07\xe1\x1f\x8e\xed\x92\x08\xdb\x94up\xdaD-\x11_\xb6\xcdA><j\x8a\xf5\xc1\x97Y#\xdf\x95\x85K\x94\xc9f\xb6\x1f\x95\x8b\x89\xe5!\t\x8eX/jZ\x1a#\xe3\'4\x11\x86\x11\x98\xb2\x15d\x94\x10]iV\xbf\xa6,\x1e~`l\xd7\x8e/^!g\x17/k\'#\x036e\x89d?\xcfYl\xc9\xb4y%[\xbb:\xec\xd3\x01\xfa2r\xf1\xeb\x1d\xcf\xfa\xb0Q\xe1\xc4\xce&\xd8\xac:?q\x9e\xc7U\xb3\x97 iO\x1d\xc5-\xd2\xffm\xc3W.C\xefd\x1b\x16\xb9`\x16\xef\r\x83\x8e\xb5\x97N\xa3\x10k3\xe5<!<W\x9a\xe3zEEU\xcfF\x96\xb4\xe2\x06G\x85W\xdf\xf7!Y\xf1;\xa7\x00\x8c3RH\x90\x9d\x08\xf2\x1b\x7fe\xd1\x8e8\xb4BE9\x89\x0b\\\xccF\x86\xc9\x19]\x9f\x98,:j\xa0\xd1\x8a\x00s\x9a\xe82\xa8EH\xb5uR\xe8\xeeM\xee\xce\xeci\xf5\'p3\xcf\x9e{\x9a>1R\x97\x1a\xdb\xee\xda\x8b\xf3&\x1f\xf5\xfb\r2F\xbdf\xcb\x01\x93U\xe35\xcd\xa7\x81^\xcb\xde\xdd\xf6ML\xff\xabH\xfeI\xefgv|\x84kj\x02v.\x03\xc2:8\x9d\x16\\\x8aM\x9a\xc9\xde\xaa$|\x8e\x8a\xd3\xcf\xcb\x15~a\x88\xdf\x92\xedb\xc3o\xcf\'\xfd\xb7v\xf3Eq\xf7\xa6\x15\x04^\xb8\x88\x10\x81 \x13\xfb\x16\xe9\xc8\xf9?\xc1C\x95\xd5\xccF\xff\x1e)g\xb5F\xcb\xddq\xa5\x19V\xca\xba\x8e\x1e5\x9f\x14q\xac:\xd0\xdd\x91\xdcL\xd8\x17wl\x05Y&\x14j\x99\xe2S\xa3;(\xec\xb7\xd82O\x8f\x9d\x94\xd4\xbf\xe4R\xc9=\xc2\xec\xaa\xcc\xd4\xd982\xd447\xb9!\x99\xef\x8d\xd7\xf5\xab4\xe6\x88\x15\xfd\x92\xc6\xbc\xa5\xc8P\xd1\xe9iFW\x9c\x97\xebb\xfb\xbb\xa3\x93\xc5\x13\xb5\x0by\xa82w\x0es\xa64\xf7\xa2\xeff\xdc\x01\xa3\xec\xa0\x12\xf9\xe6\xb1/E5p`')
fake.md5(raw_output=False)
# '09c2b7d421412f202fa22db418652505'
fake.sha1(raw_output=False)
# '4d8ad48b6fdb88748415d94a131c8729179297c4'
fake.null_boolean()
# None
fake.sha256(raw_output=False)
# '693505650534a31cdda809dafd7297c919e0ebbb28d2839af54d4ec7e1d4dfb8'
fake.uuid4()
# '777a1539-0e99-5671-be68-fe29b7431d08'
fake.language_code()
# u'an'
fake.boolean(chance_of_getting_true=50)
# False
faker.providers.person
¶
fake.last_name_male()
# u'\u0428\u0432\u0430\u0447\u043a\u043e'
fake.name_female()
# u'\u0412\u0456\u043a\u0442\u043e\u0440 \u0411\u0430\u0442\u044e\u043a'
fake.prefix_male()
# u'\u043f\u0430\u043d'
fake.prefix()
# u'\u043f\u0430\u043d\u0456'
fake.name()
# u'\u043f\u0430\u043d \u0420\u043e\u043c\u0430\u043d \u0413\u0430\u0432\u0440\u0438\u043b\u0435\u0446\u044c'
fake.suffix_female()
# ''
fake.name_male()
# u'\u043f\u0430\u043d\u0456 \u041e\u043b\u0435\u043d\u0430 \u0427\u0443\u043c\u0430\u0447\u0435\u043d\u043a\u043e'
fake.first_name()
# u'\u042f\u0440\u0435\u043c\u0430'
fake.suffix_male()
# ''
fake.suffix()
# ''
fake.first_name_male()
# u'\u0414\u0435\u043c\u0438\u0434'
fake.first_name_female()
# u'\u0414\u0430\u0440\u0438\u043d\u0430'
fake.last_name_female()
# u'\u041b\u0438\u0442\u0432\u0438\u043d'
fake.last_name()
# u'\u041b\u0438\u0441\u0435\u043d\u043a\u043e'
fake.prefix_female()
# u'\u043f\u0430\u043d\u0456'
faker.providers.phone_number
¶
fake.phone_number()
# u'990 57 41'
faker.providers.profile
¶
fake.simple_profile(sex=None)
# { 'address': u'\u0413\u0430\u0439\u0434\u0430\u0431\u0443\u0440\u0430 \u0443\u0437\u0432\u0456\u0437, 86, \u043c\u0456\u0441\u0442\u043e \u0410\u043d\u0442\u043e\u043d, 59183',
# 'birthdate': '1999-03-25',
# 'mail': u'nestorkhmara@i.ua',
# 'name': u'\u0412\u0430\u0434\u0438\u043c \u0426\u0430\u0440\u0435\u043d\u043a\u043e',
# 'sex': 'M',
# 'username': u'komarmyroslav'}
fake.profile(fields=None, sex=None)
# { 'address': u'\u043f\u0440\u043e\u0441\u043f\u0435\u043a\u0442 \u0421\u043c\u0438\u043a, 818, \u043c\u0456\u0441\u0442\u043e \u041e\u043d\u0438\u0441\u0438\u043c, 53421',
# 'birthdate': '2005-03-01',
# 'blood_group': 'B+',
# 'company': u'\u0414\u0430\u0445\u043d\u043e, \u0413\u0430\u0439\u0432\u043e\u0440\u043e\u043d\u0441\u044c\u043a\u0438\u0439 and \u0406\u0432\u0430\u0441\u044e\u043a',
# 'current_location': (Decimal('-74.169130'), Decimal('156.321243')),
# 'job': u'\u0421\u043b\u0456\u0434\u0447\u0438\u0439',
# 'mail': u'parmenhuzenko@gmail.com',
# 'name': u'\u043f\u0430\u043d \u041e\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u0412\u0438\u0448\u0438\u0432\u0430\u043d\u0438\u0439',
# 'residence': u'\u0431\u0443\u043b\u044c\u0432\u0430\u0440 \u0427\u0443\u0439\u043a\u043e, 166, \u0441\u0435\u043b\u0438\u0449\u0435 \u041b\u0435\u043e\u043f\u043e\u043b\u044c\u0434, 64056',
# 'sex': 'M',
# 'ssn': u'3091237947',
# 'username': u'iaremazaporozhets\u02b9',
# 'website': [ u'https://www.kashchenko.org/',
# u'https://il\u02b9ienko.info/']}
faker.providers.python
¶
fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
# ( u'XRJIPStFQhZhYwVyUwfS',
# 7943,
# 6537,
# 18937209662321.0,
# u'hnTQilwTChDSEwItChhb',
# u'HcxUiJdqXpwHSYvMIPin',
# u'iemets\u02b9ievhen@i.ua',
# 7698,
# u'QZNPMgJQRTVYkDBCkhXT',
# u'rhgTluJFKxwIEQMzMqSz',
# 2839,
# u'iosypkorolenko@symonenko.\u0443\u043a\u0440',
# Decimal('27994.0'),
# u'eandriievych@email.ua')
fake.pystr(min_chars=None, max_chars=20)
# u'cIujnNivPcuYhRGwtKbx'
fake.pystruct(count=10, *value_types)
# ( [ u'frants63@eibozhenko-dan\u02b9kiv.info',
# datetime(2006, 8, 19, 11, 42, 51),
# u'EBgKyEZuVSZFsYIEvEoG',
# u'SZFpTJHShIGuuACqIePk',
# u'http://gzhyts\u02b9kyi.net/list/tag/home/',
# u'JsYnsmnnwFZSTMgAcfaH',
# 6018,
# u'tLURcLTDoIeeLXqMQFxD',
# u'jiJITmSJPZxsIZaoYKDI',
# u'https://sahal\u02b9.com/tag/app/main/'],
# { u'commodi': u'OYZuufqwDHKnthnnmhJz',
# u'error': 370.97,
# u'ipsa': u'uWhZGIqOHXwxaZBEUGtM',
# u'laudantium': u'ueKSJExQSgJcIdXLOcQv',
# u'minima': 3814,
# u'nulla': u'SgZUUORQaiyvUyRExTUl',
# u'pariatur': 3861156318.0,
# u'porro': datetime(1999, 3, 24, 9, 11, 52),
# u'quos': u'uCMJNxwkpDhkgdYjGLRc',
# u'sunt': u'WOEGsSeghpgqjALlwqry'},
# { u'atque': { 3: 4381,
# 4: [ u'bbandurka@drob\u02bciazko.com',
# u'gwjpxhvUzJRvCJKhwNzE',
# u'lOiuCmuoUlnXGfxcazzB'],
# 5: { 3: 4663,
# 4: 9314,
# 5: [ u'http://vashchenko-karmaliuk.ua/blog/category/search/',
# Decimal('45899.7570915')]}},
# u'beatae': { 5: u'svyrydenkotrokhym@gmail.com',
# 6: [ u'dVDwYafIJIClVlRTExSM',
# u'solomiiaderev\u02bcianko@email.ua',
# datetime(2006, 2, 18, 16, 12, 55)],
# 7: { 5: datetime(1970, 12, 30, 22, 57, 53),
# 6: 2429,
# 7: [9113, -790460883927352.0]}},
# u'excepturi': { 8: datetime(2010, 10, 4, 2, 30, 35),
# 9: [ u'uLWNlHMvIvNWxxHbTRYW',
# 6273,
# u'sDDPHCfBoBHxCRszvtRL'],
# 10: { 8: u'KyeEuFphovcVhYsAWvJR',
# 9: u'drob\u02bciazkooles\u02b9@shchyrytsia.com',
# 10: [ u'iPyofeWvoykzhvlaJSrG',
# u'rGaPkqKToeltrQndeEbd']}},
# u'harum': { 4: u'http://zhalilo.com/search.html',
# 5: [ u'prytulaarsen@gov.ua',
# u'PzxmIvpQOcKZopttQQwa',
# -64.1196671],
# 6: { 4: u'AKtNJFRUlYeZadKFAMRC',
# 5: 5683,
# 6: [276, -630785613.988]}},
# u'ipsam': { 0: datetime(2011, 6, 5, 21, 45, 15),
# 1: [ u'yfvNmWoZKaZMTfsZLzEp',
# u'zVXzmOjcxbBmFjTBheoh',
# u'QfAYAqNlfdiFdrqxOXjc'],
# 2: { 0: u'XvOGADqZojCguTNAvlte',
# 1: u'sirkosymon@rak.\u0443\u043a\u0440',
# 2: [4173, u'WxCvDIhLkJADowTgCWiQ']}},
# u'molestiae': { 6: -8242561608.0,
# 7: [ Decimal('36399.39881'),
# u'http://www.pylypenko.info/category/',
# u'mHTTvQBpNFgSBZfFvBrg'],
# 8: { 6: 692,
# 7: 9117480.8,
# 8: [ u'YJHJXZvJVTUfmnoPMGBC',
# u'xpmgNCplIapECmrxqfIH']}},
# u'odio': { 9: u'kucYaLVFunOaGVssDQIc',
# 10: [ Decimal('-9746.2694582'),
# 757,
# u'wAPGdVlUMDxdpoJpcxrl'],
# 11: { 9: u'http://makarenko-ivanenko.ua/',
# 10: u'WIVxmGfHgLceqVkQxztT',
# 11: [8066, u'qhfdWbiLMdBOSOebQNBT']}},
# u'repellat': { 7: u'KPvTjZicYQBQjremUfaY',
# 8: [5909363853192.5, u'OuzoOkJilfGQnHQmiPGO', 890],
# 9: { 7: -1703.545192114, 8: 3002, 9: [1995, 2137]}},
# u'similique': { 2: u'ZIVnJAGkJGcWwzEqwbQA',
# 3: [ u'http://derehus.net/register.html',
# u'RCCzRDGKtneuHhqMieGD',
# u'jzaika@avdieienko.net'],
# 4: { 2: u'RvmnrjdpFPJOEoqBKcaW',
# 3: u'xruban@taran.net',
# 4: [ 6155,
# u'http://www.zabara.\u0443\u043a\u0440/search/explore/faq.html']}}})
fake.pyfloat(left_digits=None, right_digits=None, positive=False)
# 69564170.4662
fake.pydecimal(left_digits=None, right_digits=None, positive=False)
# Decimal('-7113235.71239')
fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
# [ u'zdmjcORMTHSLciEVrxUO',
# Decimal('1988353.0'),
# 505676590.874741,
# 82.6,
# 6714,
# u'HyTHmWXQlJIDuIIVGPPx',
# u'https://www.perepelytsia.info/']
fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
# ( 2043,
# 6475,
# u'ovoYdvXCCjxfukmLkemW',
# u'QklDYZjBbtkMjtwDQAOr',
# u'http://danyl\u02b9chuk.\u0443\u043a\u0440/',
# 1205,
# 2361,
# 1690,
# u'hchaban@ukr.net',
# 7356)
fake.pybool()
# True
fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
# set([-550897967.512, u'https://rubets\u02b9-tsushko.\u0443\u043a\u0440/', u'https://www.yakymenko.info/tag/blog/tag/main/', u'tUxCzinmrCLOtMklTvrl', u'CsWKPXcNwVRDVNuEfsNi', Decimal('639.575404193'), u'petroshcherbak@kylymnyk.org', 228948.25188, u'MxdJiLqXghnXTImHWQYk', u'http://udovenko.net/app/privacy/', u'QmXWqbWqNWhSUWgEcFVB', u'ibCigGduGnmivpTSAEGa', u'NhZkQDHXspnvAaKyestq', 5755080710762.0])
fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
# { u'alias': -20116784014.951,
# u'at': u'ynqLQQOarXghKiqZmTci',
# u'distinctio': 1749,
# u'dolorem': u'IWSZdaACkTgcFLWQUpfB',
# u'ducimus': Decimal('-468.60821'),
# u'harum': u'LmAktOhteHWduYJnFKXF',
# u'ipsa': -156.3,
# u'neque': u'symonkorzh@chupryna.net',
# u'nulla': u'http://www.zatovkaniuk-savenko.com/tag/privacy/',
# u'saepe': 2660,
# u'voluptas': datetime(1993, 6, 11, 6, 3, 21),
# u'voluptatem': 9404}
fake.pyint()
# 7578
faker.providers.ssn
¶
fake.ssn()
# u'2700018828'
faker.providers.user_agent
¶
fake.mac_processor()
# u'Intel'
fake.firefox()
# u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_9; rv:1.9.6.20) Gecko/2014-04-25 08:48:23 Firefox/3.8'
fake.linux_platform_token()
# u'X11; Linux i686'
fake.opera()
# u'Opera/8.67.(X11; Linux i686; hne-IN) Presto/2.9.186 Version/11.00'
fake.windows_platform_token()
# u'Windows NT 5.1'
fake.internet_explorer()
# u'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.1)'
fake.user_agent()
# u'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.0; Trident/3.1)'
fake.chrome()
# u'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_1) AppleWebKit/5340 (KHTML, like Gecko) Chrome/14.0.818.0 Safari/5340'
fake.linux_processor()
# u'i686'
fake.mac_platform_token()
# u'Macintosh; PPC Mac OS X 10_6_9'
fake.safari()
# u'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_8 rv:5.0; et-EE) AppleWebKit/531.47.6 (KHTML, like Gecko) Version/4.0 Safari/531.47.6'