Language nl_NL¶
faker.providers.address
¶
fake.latitude()
# Decimal('51.3896495')
fake.street_name()
# u'Tesspad'
fake.address()
# u'Milostraat 70\n7500 AL\nNoordwijk'
fake.street_address()
# u'Guusjestraat 687'
fake.postcode()
# u'6342 JD'
fake.country_code(representation="alpha-2")
# u'VU'
fake.longitude()
# Decimal('26.121737')
fake.country()
# u'Bermuda'
fake.province()
# u'Flevoland'
fake.geo_coordinate(center=None, radius=0.001)
# Decimal('-72.204052')
fake.city_suffix()
# u'Ville'
fake.building_number()
# u'06'
fake.street_suffix()
# u'ring'
fake.city()
# u'Boxmeer'
faker.providers.automotive
¶
fake.license_plate()
# u'KWP 854'
faker.providers.bank
¶
fake.bban()
# 'JSLG2999926160'
fake.bank_country()
# 'NL'
fake.iban()
# 'NL77UPIL9084794579'
faker.providers.barcode
¶
fake.ean(length=13)
# u'9032584773569'
fake.ean13()
# u'6169700236158'
fake.ean8()
# u'60188649'
faker.providers.color
¶
fake.rgb_css_color()
# u'rgb(254,222,1)'
fake.color_name()
# u'Violet'
fake.rgb_color()
# u'50,172,43'
fake.safe_hex_color()
# u'#22ee00'
fake.safe_color_name()
# u'maroon'
fake.hex_color()
# u'#d23a58'
faker.providers.company
¶
fake.company()
# u'Winnrich, Luster and Bakker'
fake.company_suffix()
# u'Group'
fake.catch_phrase()
# u'Multi-lateral directional architecture'
fake.bs()
# u'streamline scalable content'
faker.providers.credit_card
¶
fake.credit_card_security_code(card_type=None)
# u'247'
fake.credit_card_provider(card_type=None)
# u'JCB 16 digit'
fake.credit_card_full(card_type=None)
# u'American Express\nJinthe Lips\n341855099615952 11/23\nCID: 6440\n'
fake.credit_card_expire(start="now", end="+10y", date_format="%m/%y")
# '03/28'
fake.credit_card_number(card_type=None)
# u'4510019039525303'
faker.providers.currency
¶
fake.cryptocurrency_code()
# 'BC'
fake.currency_code()
# 'USD'
fake.currency_name()
# 'Malagasy ariar'
fake.cryptocurrency_name()
# 'Omni'
fake.cryptocurrency()
# ('XDN', 'DigitalNote')
fake.currency()
# ('GIP', 'Gibraltar pound')
faker.providers.date_time
¶
fake.future_datetime(end_date="+30d", tzinfo=None)
# datetime.datetime(2018, 8, 20, 3, 45, 35)
fake.time_series(start_date="-30d", end_date="now", precision=None, distrib=None, tzinfo=None)
# <generator object time_series at 0xffffa9df58c0>
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(2007, 7, 31, 23, 20, 44)
fake.date_this_decade(before_today=True, after_today=False)
# datetime.date(2015, 1, 16)
fake.date_time_this_month(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2018, 8, 15, 10, 9, 8)
fake.past_date(start_date="-30d", tzinfo=None)
# datetime.date(2018, 7, 20)
fake.day_of_week()
# 'Sunday'
fake.date_time_this_decade(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2015, 2, 24, 13, 18, 46)
fake.date_between(start_date="-30y", end_date="today")
# datetime.date(2008, 11, 5)
fake.date_time_this_century(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2011, 8, 24, 13, 17, 3)
fake.date(pattern="%Y-%m-%d", end_datetime=None)
# '2008-07-09'
fake.am_pm()
# 'PM'
fake.date_time_between_dates(datetime_start=None, datetime_end=None, tzinfo=None)
# datetime.datetime(2018, 8, 16, 10, 58, 41)
fake.date_object(end_datetime=None)
# datetime.date(2018, 8, 8)
fake.date_this_year(before_today=True, after_today=False)
# datetime.date(2018, 1, 15)
fake.iso8601(tzinfo=None, end_datetime=None)
# '1984-12-01T00:15:22'
fake.future_date(end_date="+30d", tzinfo=None)
# datetime.date(2018, 8, 21)
fake.date_this_century(before_today=True, after_today=False)
# datetime.date(2016, 2, 25)
fake.month()
# '07'
fake.year()
# '1999'
fake.day_of_month()
# '24'
fake.unix_time(end_datetime=None, start_datetime=None)
# 803347095
fake.timezone()
# u'Africa/Conakry'
fake.century()
# u'XX'
fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=115)
# datetime.date(2007, 1, 6)
fake.time_object(end_datetime=None)
# datetime.time(22, 35, 58)
fake.date_time_this_year(before_now=True, after_now=False, tzinfo=None)
# datetime.datetime(2018, 8, 11, 18, 58, 51)
fake.date_time(tzinfo=None, end_datetime=None)
# datetime.datetime(2007, 6, 28, 19, 21, 15)
fake.time(pattern="%H:%M:%S", end_datetime=None)
# '06:01:19'
fake.date_this_month(before_today=True, after_today=False)
# datetime.date(2018, 8, 1)
fake.past_datetime(start_date="-30d", tzinfo=None)
# datetime.datetime(2018, 7, 29, 11, 30, 20)
fake.month_name()
# 'March'
fake.date_time_ad(tzinfo=None, end_datetime=None, start_datetime=None)
# datetime.datetime(96, 8, 13, 1, 13, 38)
fake.time_delta(end_datetime=None)
# datetime.timedelta(2512, 36749)
faker.providers.file
¶
fake.unix_device(prefix=None)
# u'/dev/vdr'
fake.mime_type(category=None)
# u'text/plain'
fake.file_path(depth=1, category=None, extension=None)
# u'/vitae/quibusdam.wav'
fake.unix_partition(prefix=None)
# u'/dev/xvdn5'
fake.file_name(category=None, extension=None)
# u'fugiat.flac'
fake.file_extension(category=None)
# u'js'
faker.providers.internet
¶
fake.ascii_free_email(*args, **kwargs)
# 'glathrope@hotmail.com'
fake.image_url(width=None, height=None)
# u'https://dummyimage.com/409x562'
fake.tld()
# u'info'
fake.email(*args, **kwargs)
# u'mkarels@gmail.com'
fake.url(schemes=None)
# u'https://de.com/'
fake.ipv4_private(network=False, address_class=None)
# '10.90.247.96'
fake.user_name(*args, **kwargs)
# u'dspreeuw'
fake.uri_extension()
# u'.html'
fake.uri_page()
# u'homepage'
fake.free_email_domain(*args, **kwargs)
# u'gmail.com'
fake.safe_email(*args, **kwargs)
# u'escherms@example.net'
fake.ascii_email(*args, **kwargs)
# 'mhuijbrechts@hotmail.com'
fake.ipv4_network_class()
# u'c'
fake.ipv4_public(network=False, address_class=None)
# '197.23.95.245'
fake.ascii_company_email(*args, **kwargs)
# 'jennifer96@kof-maas.com'
fake.domain_name(*args, **kwargs)
# u'dekker.com'
fake.ipv4(network=False, address_class=None, private=None)
# '208.231.239.132'
fake.domain_word(*args, **kwargs)
# u'wooning-cosman'
fake.slug(*args, **kwargs)
# u'vitae-error-nisi'
fake.uri_path(deep=None)
# u'category/search/categories'
fake.company_email(*args, **kwargs)
# u'sophia60@willemsen.com'
fake.uri()
# u'https://kuipers.com/list/tags/wp-content/index.htm'
fake.ipv6(network=False)
# '60bb:2b9f:f461:f93d:dee5:d5ee:2b1c:b1ba'
fake.free_email(*args, **kwargs)
# u'olafpratt@hotmail.com'
fake.ascii_safe_email(*args, **kwargs)
# 'jason24@example.com'
fake.mac_address()
# u'04:25:5a:b4:ae:78'
faker.providers.isbn
¶
fake.isbn10(separator="-")
# u'0-388-51474-4'
fake.isbn13(separator="-")
# u'978-0-259-73501-4'
faker.providers.job
¶
fake.job()
# 'General practice doctor'
faker.providers.lorem
¶
fake.text(max_nb_chars=200, ext_word_list=None)
# u'Incidunt ducimus laudantium incidunt. Totam atque provident voluptatibus error repellat delectus omnis.'
fake.paragraphs(nb=3, ext_word_list=None)
# [ u'Ullam labore vitae vero exercitationem expedita fuga. Provident minus illo odio iste ratione vero.',
# u'Nemo explicabo deserunt cupiditate est optio exercitationem. Rem quasi ab aliquid repellendus facilis temporibus officia.',
# u'In nostrum ad minima eius consectetur cupiditate. Veniam ipsam unde fugit nobis. Voluptates nostrum doloremque repudiandae in voluptates.']
fake.words(nb=3, ext_word_list=None)
# [u'debitis', u'earum', u'distinctio']
fake.sentences(nb=3, ext_word_list=None)
# [ u'Quasi odit nihil ratione necessitatibus id.',
# u'Odio dolore reiciendis perspiciatis quas a tempora eum.',
# u'Iure eius optio quos quam nostrum deserunt.']
fake.word(ext_word_list=None)
# u'culpa'
fake.paragraph(nb_sentences=3, variable_nb_sentences=True, ext_word_list=None)
# u'Dolorem sed tempora alias nemo placeat culpa. Occaecati eligendi alias inventore. Inventore temporibus voluptatem fuga sequi beatae voluptatum vitae.'
fake.sentence(nb_words=6, variable_nb_words=True, ext_word_list=None)
# u'Explicabo incidunt error laborum dolorum.'
faker.providers.misc
¶
fake.password(length=10, special_chars=True, digits=True, upper_case=True, lower_case=True)
# u'UG*i6LZliY'
fake.locale()
# u'nr_ZA'
fake.binary(length=1048576)
# bytearray(b';E\xcf\xdd%\x87\x94\xfaw\'\n\x883.\x02\x9e\xe6Af\xdb\xaf\x86\x97<7K^\x16\xcd\xa73.\xcc\xf7,*Yw\xd7`\xf05\xddv\xb4<~\x0cLo\x81\xb8\xaa-.\xc4\xd8\xd6\xd5\xfeQ\x86\xea\xac*\x0f \xe0\x03\xcc\xdf\xaf\xdc\xb7\xc8\xe1\xd9\x11\x10!\xb5\xe8\x9e\xb1\xcf\x95\xd5MM8\xf4\xbc\xf4\xa0\xfc\xdbhw\xac\xc4\xc1\x87\x9a\x13=]-\x1f~8\xc0\xfc\x9f\x00\xba(=\xa5\n\xcaG\x05\xc2H%\x97\t\x00H\xcc\x1e\x9f8\x03f~f\xe4=\x90\x006S>\xc2b\xa1\xa7\xfcp\x05\xef\xbeR^\xeb\x87\xd3O\x83\xecI\x1d\xacHs\x98:\x04(\xc9\xd7T\x957p\xa9Z\xce6l%+j6\xd6\x8a\xd6\x93\xe9\x9d\x984y\xc0\x1a2\xb3X_\x12T;\xfac^\xec\x18\xb7\x83\xeb\xcd\t\xf7\x0cb\xd4\xd3+m|\x0f\xd9(\x92\x1e\xfc\x08\x13p\xb4d\x9d\x85\x03\xa3\xc1\x9aM\xff\x18\x02\xa8p\x07\x8b\x0e\xf4\x99\xca8\xec\x94w\xbc\xfed\xec \x00\x18\x0c\xe6P,w\xc3\xdb\x1fe0\x9f\xc4e\x08\x14\xde\xedX@X\xcd\xa8\xeb\xb0\xb6\xc8z;\xefh\xe1|HN\xe4\xe3\x15.\xb7\xa1K\x07\x9a^89\xa0\xb0\xaf&\x99\xea\xdeq\xa1\xc3 \x8c\xba|\x04\xd1\xdf*#\x16\rc\x1f&\x95\xb2\xcb\x94Tx\xf3(%\xf36\xf7\xaa\x8e\x98R[\xf5m\x94B8\xf1\xee;\xc4~\xb6\x81\xfe\x8fxW\xfc\xe3.\xca\xb9\xa0t\xa77\xbcm\xa3d\xfb\xe1\x8d\x9c\xecl\x03Z\'\x80\xea\xafF\x0e\xa3\xc0U\xda\x01b\xb1\x06\xa7\xd3 \x10\x82\xff\xfa\xad\x9bt\xd2P\xee\x058s\xd6[]K\xcakF\xd8\xa1\x8b\x9bO\xc3\x9c\x05q\xf4\\\xda\xa8\x07\x07=\t!2\xe8>^\xa5\xd9!\xba\x0ctu\xad\x88j\x0el\x80\xa0\x1fK\x89\xfb\xb2\x04\x97\xedf\x02\xb7\xc3oK\x17}\xed\xd9J\xe1\xb3\xcd\x8c\xe0\xf2\xaf\x0f\xd3wx\xa0\xccI-%\xefn\xd7\x92\xab}o\xa0\x8b\xf5\xd3O8\xd4\x88\x90\xa7>\xe8\x99\xfe\xaf\xe5x!i\x96R>5\xcc\xf3\t\xcb%[.\xc9$_h\xdb\xa6<"P\x0e.c\xa7\xb9*b\xa3\xa2\x86!\x80\xe7z[\x0c\xc0y\xef\xacpQ\xd6E\xf3v\x8d\x95\xf3\x8aaPG\xa3\xe3\x8dR\xb1\xcd\x95\xa7E\xd4\x91Eb\xe6Vvj\xe8~\x1a\xaa/\xb4\x19K%\xf8Sp\x05L\x80\x19s\xfe\xf0\x86_\xb6\x8c\xfe\x8b\x81\xe6f\x7f\x1b\xca2\xd1\xa2B\xdbl\x98)w\xc8\x81\x12\xe6\x1e>\xff%a\xef%\xd2\x92\x11\x85i%\x1c\xf2\x7f7\xb6l\xcf\x11\xc5g,h\x06Je\x02\xdc4\x08\xf0I\x88\xae\x89\x94\xfc\xe3(_\x91\xbd\x80\xb9\xab%b}\x02q\x1e\x0c\xc2Y\x89k\xf4/a\xc2I\xe5\x10Wdi\x11\xe0\xc8M\xb0\xf6\xa1\xdf5@\xc8\xeb|zj\xa8\x85D!\x93\xf8Y\x82\xd7\x07\xf5/\x1a\xa3P\x18\xec\xbe\x1a\x18)&\xf4V\x9e3\xbb\x89\xf7\x88\xfdr\xb6\xcf\xf8\xb9\x93\xb7\xe4Lxy\xbc\xd8\xd7^\xafW\xed\x9d\x127y\x9c\xa1r(|\xde{`V\x1f\xb9\xef>Z\x8d\xa9\xd2`#\xed{\xf1\xd8$k\x10>\x98\x9c(\x86\x80C-<\xb3\xe5\xb4zyN3\xea/\xad\rW\x06J\xcfg\xef%TG(S\xd3\xd5\x87GB\xce\x8a\x99\xb8\xe6\xb4\x1b#=\xc6\x91\x00\xd1\x11R\x0b*\x9f\xfc\x17\xf3p\xc4c#\x96 \x90\xc6\xcb\xb5Xa\xf6qd\x99\xe3\xa6\xde\x17\x08\xe0\xd7s;\xfa\\Z<\x15\xd3\xbd\x13+\x93\xf5\xdb\xee\x97\xf6\x07\xdb\x15\x18\x06\x99\xd84K\xcd\x93\xf2y\xca\xd1\xf7\x03\x19\xf4\xe1\x83\x01\xf2z_\xacx7\xcc\xb6\x9f \x19\x91,\xee\x8f\xa0y\x15\xc8\x8aB\x91\xa8\x03$C\xde\x87\x8b\x00\xd4\xdd\x86\x81\xd8*\x9f\x8f\xe2a\xf8\x8f]\x82\x92n%\x90\xe9\x86\x07D\x13\x16<\x8c\x19JY\x80n\xa9\xf3~7\x9b\x81>\x92G\x19\xba\x9b\xa0\'\'\xec\xef\x9bf\x91\n\xee\x04V\x92\x03\xed\xe4\xeeYa_\x83m\x9b\xa9q,\xd1\x86\x98NM\x9cJ\xb4Z\xe6\x06')
fake.md5(raw_output=False)
# 'dc636c411c249aa96d834965b7326174'
fake.sha1(raw_output=False)
# 'd43dadbe2dc26ec4830040175300ee2b39d7e913'
fake.null_boolean()
# True
fake.sha256(raw_output=False)
# 'c9450a40f2d255d9cfe2ce062ca63d096aab4665dcfce87008986fb0720c1a5a'
fake.uuid4()
# '2d9b7892-d735-d890-a256-b54fb87a5728'
fake.language_code()
# u'eo'
fake.boolean(chance_of_getting_true=50)
# True
faker.providers.person
¶
fake.last_name_male()
# u'Bezemer'
fake.name_female()
# u'Maja Engels'
fake.prefix_male()
# u''
fake.prefix()
# u''
fake.name()
# u'Floortje Holthuis'
fake.suffix_female()
# u''
fake.name_male()
# u'Luc Blonk'
fake.first_name()
# u'Kyra'
fake.suffix_male()
# u''
fake.suffix()
# u''
fake.first_name_male()
# u'Justin'
fake.first_name_female()
# u'Mare'
fake.last_name_female()
# u'van der Heiden'
fake.last_name()
# u'van Gent'
fake.prefix_female()
# u''
faker.providers.phone_number
¶
fake.phone_number()
# u'(072) 0310225'
fake.msisdn()
# '0020005701542'
faker.providers.profile
¶
fake.simple_profile(sex=None)
# { 'address': u'Dylanstraat 828\n8509ZO\nRijsbergen',
# 'birthdate': datetime.date(1955, 10, 5),
# 'mail': u'selina27@gmail.com',
# 'name': u'Johannes Jacquot-van den Velde',
# 'sex': 'F',
# 'username': u'geerlingsten'}
fake.profile(fields=None, sex=None)
# { 'address': u'Amirapad 9\n7150NG\nTer Heijde',
# 'birthdate': datetime.date(1972, 6, 7),
# 'blood_group': 'B+',
# 'company': u'van Schweinfurt-van Bentheim',
# 'current_location': (Decimal('66.172534'), Decimal('-91.812411')),
# 'job': 'Geochemist',
# 'mail': u'siennavan-ooste@hotmail.com',
# 'name': u'Megan Osterhoudt',
# 'residence': u'Nadiaboulevard 38\n6049QZ\nEemshaven',
# 'sex': 'F',
# 'ssn': u'049687517',
# 'username': u'hugo07',
# 'website': [ u'https://www.oude.com/',
# u'http://van.com/',
# u'http://www.klein.biz/',
# u'https://van.com/']}
faker.providers.python
¶
fake.pyiterable(nb_elements=10, variable_nb_elements=True, *value_types)
# [ Decimal('985355.72'),
# u'AVqxhxFWefuqPwOowdcf',
# datetime.datetime(1987, 4, 5, 18, 37, 44),
# 5731,
# 6880,
# u'http://www.karels-adriaense.com/explore/list/posts/homepage.jsp',
# u'bde-lange@hotmail.com',
# u'ARntIbUJfBhbmzgxqkRL',
# u'mheijmen@strik-heerschop.org',
# u'yINwAqaLfJSJShZUSyDs',
# datetime.datetime(2002, 11, 14, 5, 47, 54),
# -8.5956411]
fake.pystr(min_chars=None, max_chars=20)
# u'RdEuWTLthdjuiLqukLFj'
fake.pystruct(count=10, *value_types)
# ( [ 5677,
# 4611,
# Decimal('3.96399301265E+14'),
# u'https://kramer-van.com/app/category/app/post.asp',
# u'ayNiKgqbtTjbtYCfjkIG',
# u'EwbYZlWpHSkQvgDSisHf',
# u'jWyzoHdQYJxEdrOxkScr',
# datetime.datetime(1988, 5, 21, 11, 52, 4),
# u'wGdpuGZgcThNKOyZzQLR',
# -5633472172.83257],
# { u'dolor': u'GRDkYSpIINwqOORXzMEV',
# u'eaque': 4566,
# u'fugiat': 966,
# u'harum': -169.293062169,
# u'inventore': 6488,
# u'itaque': u'jjCRTwlEcMApVAVWjboQ',
# u'reprehenderit': 9938,
# u'sapiente': u'FnlsTlESAveVeWyGCNsX',
# u'voluptas': datetime.datetime(2006, 4, 22, 15, 9, 41)},
# { u'accusantium': { 6: -9282564676765.95,
# 7: [ u'oGJYARkqAxoNiJxuRZzq',
# datetime.datetime(1975, 5, 12, 1, 44, 6),
# 4831],
# 8: { 6: 459,
# 7: Decimal('6.54434088439E+13'),
# 8: [1707, u'NdUCGVQvxPhApKGPvmJq']}},
# u'corrupti': { 1: u'AOCTbBcHhBhjTeSRlqkx',
# 2: [ u'fFNYeJMBlIcxyYtIPwmX',
# u'ojerfxrxoQaesLNxtgLu',
# 6904],
# 3: { 1: datetime.datetime(1971, 12, 20, 6, 18, 35),
# 2: 8464,
# 3: [ datetime.datetime(1971, 1, 22, 15, 59, 40),
# datetime.datetime(1978, 6, 22, 22, 2, 30)]}},
# u'harum': { 9: -922.7253311,
# 10: [ u'http://www.van.com/category/privacy.html',
# 9015,
# Decimal('-8.72659891591E+12')],
# 11: { 9: u'ZsZdOJCGLllXWgjpynng',
# 10: u'ldHmgkXTLIxuPMGYuJpD',
# 11: [ u'bYXDrYBJNZLZPcpMTIah',
# u'CevNgsAFKQklzWqaYlsP']}},
# u'quisquam': { 3: u'SOdJHWcCoPPETuwuMprS',
# 4: [ 6065,
# u'ysRThMsPIxfoybAvJgyG',
# datetime.datetime(2001, 10, 24, 14, 14, 15)],
# 5: { 3: u'kICTvaHankQnJwxIdQpI',
# 4: 4072,
# 5: [3083, u'IHabxLJriIOHetBjDrPt']}},
# u'quos': { 8: 7044,
# 9: [ 1947,
# u'https://www.eijkelboom-van.com/terms.html',
# u'oSDhaBPxusYgWknQIuKI'],
# 10: { 8: u'azravan-beek@verhoeven-kloppert.com',
# 9: u'AdtRARGJWEtKGTMohHCG',
# 10: [799, u'ojxXNTDNLxpzSuzvspwt']}},
# u'sequi': { 5: -9255965554.2,
# 6: [ 807,
# 2421801.823037,
# datetime.datetime(1989, 5, 15, 15, 46, 51)],
# 7: { 5: u'zhhkHZDihjbhtbhImdRP',
# 6: u'UAnMfWyBYWBRfQIJYCRs',
# 7: [ Decimal('-60233631667.9'),
# u'ksprong@van.org']}},
# u'sit': { 0: datetime.datetime(1991, 9, 6, 16, 22, 25),
# 1: [ datetime.datetime(1994, 5, 13, 7, 32, 24),
# u'gBQyObCCLgOQqxmUecUp',
# u'https://van.com/post/'],
# 2: { 0: u'DrffhFTSmYPDqSvEKOir',
# 1: 8665,
# 2: [ datetime.datetime(1982, 11, 8, 19, 3, 9),
# 478]}},
# u'soluta': { 7: datetime.datetime(2001, 9, 1, 14, 25, 12),
# 8: [ Decimal('92919.0'),
# u'yvan-den-bosch@yahoo.com',
# u'julianschwartsbach@kortman.org'],
# 9: { 7: Decimal('1.9175559699'),
# 8: u'BxGyzqVzpmAAESXuJPOi',
# 9: [539, 6477]}},
# u'ut': { 2: u'pjJpuncMVqvZrFLqPOPm',
# 3: [ u'XGWcpDYtgnAnKHIfAueT',
# u'http://broeckx.com/main/explore/blog/author/',
# datetime.datetime(1984, 6, 10, 0, 12, 16)],
# 4: { 2: u'bTibxEZZPXKWhWcAUjqM',
# 3: u'EKrzduqeEsgRpimsfcOz',
# 4: [ u'https://mansveld-jonker.com/privacy.php',
# u'arzUDncgtPCmxDfQDjLz']}},
# u'voluptates': { 4: u'linaoude-heer@lambregt.com',
# 5: [ -5257743814.9353,
# u'eTbUNZJzbkKKwwUlEvHQ',
# u'mKQmTBxTGUEknHvPZnQc'],
# 6: { 4: u'OkbZgzeeZjzKEXKlsIFo',
# 5: u'qhluwhVtzveRlJcNFHLS',
# 6: [ u'JnARCKEiYKTxfllhPGLd',
# u'KZdIVIWyBvcmUXQzQAIa']}}})
fake.pyfloat(left_digits=None, right_digits=None, positive=False)
# -44118200.7
fake.pydecimal(left_digits=None, right_digits=None, positive=False)
# Decimal('679337030.72')
fake.pylist(nb_elements=10, variable_nb_elements=True, *value_types)
# [ 3020,
# 8029,
# 3421,
# u'yoPoBzhxDDqXTUxcQHTb',
# 4875,
# datetime.datetime(2013, 4, 1, 13, 19, 29),
# 8651,
# u'KCmBMaGIqnGNdCNVhMFi',
# 96943827.29,
# u'GgyOWKjAUEGTpiNlkKEe']
fake.pytuple(nb_elements=10, variable_nb_elements=True, *value_types)
# ( -3822826866447.27,
# u'vyWdjnDqmVGSyCVBTwbA',
# -7.5189,
# u'SMCBsnqPrZnecAOtnZVe',
# u'tFFsVNMvQjPvWqDSlBRd',
# u'YhBKOZyKnrYIAKwkxDHi',
# 11592.17977)
fake.pybool()
# False
fake.pyset(nb_elements=10, variable_nb_elements=True, *value_types)
# set([u'WfYtljMEyrYmMPfxeVxR', u'VacwlBEJFMjLCAYddESk', 9969, u'vgqpoEgrUmPGzQdiLlld', 3798, 2969, 62945998237163.4, Decimal('-4.42113024111'), Decimal('6076.9901199'), 7838, u'IUJbcjyrcgYJJyerVqJO'])
fake.pydict(nb_elements=10, variable_nb_elements=True, *value_types)
# { u'deleniti': 3756,
# u'dolores': u'DkmGNYPsEeJXSUeTTTCU',
# u'enim': 9304,
# u'omnis': u'PUXqGuxmFfLlwlQwaxaQ',
# u'quia': -57.7,
# u'repudiandae': u'adriaensdrliza@hotmail.com',
# u'saepe': 2308,
# u'sequi': 200774207712820.0,
# u'sint': u'https://www.van.net/tags/tags/main/about.html',
# u'vero': u'cfFftQyXMMhOdKxPKMvh'}
fake.pyint()
# 3213
faker.providers.ssn
¶
fake.ssn()
# u'459713607'
faker.providers.user_agent
¶
fake.mac_processor()
# u'PPC'
fake.firefox()
# u'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/2015-09-01 18:31:15 Firefox/3.6.10'
fake.linux_platform_token()
# u'X11; Linux x86_64'
fake.opera()
# u'Opera/8.69.(Windows NT 5.01; gl-ES) Presto/2.9.162 Version/11.00'
fake.windows_platform_token()
# u'Windows NT 5.2'
fake.internet_explorer()
# u'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 4.0; Trident/4.0)'
fake.user_agent()
# u'Mozilla/5.0 (Windows 95) AppleWebKit/5322 (KHTML, like Gecko) Chrome/46.0.842.0 Safari/5322'
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 x86_64) AppleWebKit/5330 (KHTML, like Gecko) Chrome/14.0.886.0 Safari/5330'
fake.mac_platform_token()
# u'Macintosh; Intel Mac OS X 10_12_0'
fake.safari()
# u'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_0 rv:2.0; fil-PH) AppleWebKit/534.17.6 (KHTML, like Gecko) Version/4.1 Safari/534.17.6'