Locale fi_FI¶
faker.providers.address
¶
- class faker.providers.address.fi_FI.Provider(generator: Any)¶
Bases:
Provider
- address() str ¶
- Example:
‘791 Crist Parks, Sashabury, IL 86039-9874’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.address() ... 'Haaksibulevardi 64\n59382 Kalajoki' 'Ilkantie 1\n78156 Korsnäs' 'Birger Kaipiaisen bulevardi 160\n53513 Kökar' 'Berganpolku 7\n48418 Tornio' 'Castréninbulevardi 59\n42320 Sievi'
- administrative_unit() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.administrative_unit() ... 'Pohjois-Karjala' 'Pohjois-Pohjanmaa' 'Etelä-Karjala' 'Kymenlaakso' 'Satakunta'
- building_number() str ¶
- Example:
‘791’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.building_number() ... '60' '87' '47' '93' '2'
- city() str ¶
- Example:
‘Sashabury’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city() ... 'Pöytyä' 'Lapua' 'Puolanka' 'Siikainen' 'Vihti'
- city_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city_name() ... 'Pihtipudas' 'Pöytyä' 'Haapavesi' 'Lapua' 'Säkylä'
- city_suffix() str ¶
- Example:
‘town’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.city_suffix() ... 'Ville' 'Ville' 'Ville' 'Ville' 'Ville'
- country() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country() ... 'Liechtenstein' 'Venäjä' 'Marokko' 'Azerbaidžan' 'Itävalta'
- country_code(representation: str = 'alpha-2') str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country_code() ... 'MV' 'PS' 'NL' 'BB' 'IL'
- current_country() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.current_country() ... 'Finland' 'Finland' 'Finland' 'Finland' 'Finland'
- current_country_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.current_country_code() ... 'FI' 'FI' 'FI' 'FI' 'FI'
- postcode() str ¶
- Example:
86039-9874
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.postcode() ... '60487' '47593' '42194' '41157' '56593'
- state() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.state() ... 'Pohjois-Karjala' 'Pohjois-Pohjanmaa' 'Etelä-Karjala' 'Kymenlaakso' 'Satakunta'
- street_address() str ¶
- Example:
‘791 Crist Parks’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_address() ... 'Bertel Jungin polku 7' 'Niittylänpolku 3' 'Elimäentie 4' 'Cygnaeuksentie 5' 'Jägerhorninkuja 93'
- street_name() str ¶
- Example:
‘Crist Parks’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.street_name() ... 'Veräjämäenkuja' 'Haaksibulevardi' 'Laakavuorenpolku' 'Jäkäläbulevardi' 'Neonkatu'
faker.providers.automotive
¶
- class faker.providers.automotive.fi_FI.Provider(generator: Any)¶
Bases:
Provider
Implement automotive provider for
fi_FI
locale.Source:
faker.providers.bank
¶
- class faker.providers.bank.fi_FI.Provider(generator: Any)¶
Bases:
Provider
Implement bank provider for
fi_FI
locale.- aba() str ¶
Generate an ABA routing transit number.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.aba() ... '076048766' '057593829' '052194896' '034115783' '025659384'
- bank_country() str ¶
Generate the bank provider’s ISO 3166-1 alpha-2 country code.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bank_country() ... 'FI' 'FI' 'FI' 'FI' 'FI'
- bban() str ¶
Generate a Basic Bank Account Number (BBAN).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bban() ... '66048764759382' '42194892411578' '15659387784080' '16097535139332' '87115871484185'
- iban() str ¶
Generate an International Bank Account Number (IBAN).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.iban() ... 'FI0566048764759382' 'FI7642194892411578' 'FI0215659387784080' 'FI4616097535139332' 'FI7587115871484185'
- swift(length: int | None = None, primary: bool = False, use_dataset: bool = False) str ¶
Generate a SWIFT code.
SWIFT codes, reading from left to right, are composed of a 4 alphabet character bank code, a 2 alphabet character country code, a 2 alphanumeric location code, and an optional 3 alphanumeric branch code. This means SWIFT codes can only have 8 or 11 characters, so the value of
length
can only beNone
or the integers8
or11
. If the value isNone
, then a value of8
or11
will randomly be assigned.Because all 8-digit SWIFT codes already refer to the primary branch or office, the
primary
argument only has an effect if the value oflength
is11
. Ifprimary
isTrue
andlength
is11
, the 11-digit SWIFT codes generated will always end in'XXX'
to denote that they belong to primary branches/offices.For extra authenticity, localized providers may opt to include SWIFT bank codes, location codes, and branch codes used in their respective locales. If
use_dataset
isTrue
, this method will generate SWIFT codes based on those locale-specific codes if included. If those codes were not included, then it will behave as ifuse_dataset
wereFalse
, and in that mode, all those codes will just be randomly generated as per the specification.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift() ... 'YNBIFI65ZT4' 'SGQEFISIGQ8' 'JDXCFIV4' 'LNKTFIN9' 'OQIBFI9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=8) ... 'MYNBFIQ6' 'PMZJFI4W' 'SGQEFISI' 'YDTZFIQ8' 'WZTEFITG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=8, use_dataset=True) ... 'MYNBFIQ6' 'PMZJFI4W' 'SGQEFISI' 'YDTZFIQ8' 'WZTEFITG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11) ... 'MYNBFIQ65ZT' 'PLSGFI6ISIG' 'TZIRFIJTGEV' 'PRDLFI1UN94' 'OQIBFI9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, primary=True) ... 'MYNBFIQ6XXX' 'PMZJFI4WXXX' 'SGQEFISIXXX' 'YDTZFIQ8XXX' 'WZTEFITGXXX'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, use_dataset=True) ... 'MYNBFIQ65ZT' 'PLSGFI6ISIG' 'TZIRFIJTGEV' 'PRDLFI1UN94' 'OQIBFI9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift(length=11, primary=True, use_dataset=True) ... 'MYNBFIQ6XXX' 'PMZJFI4WXXX' 'SGQEFISIXXX' 'YDTZFIQ8XXX' 'WZTEFITGXXX'
- swift11(primary: bool = False, use_dataset: bool = False) str ¶
Generate an 11-digit SWIFT code.
This method uses
swift()
under the hood with thelength
argument set to11
. Ifprimary
is set toTrue
, the SWIFT code will always end with'XXX'
. All 11-digit SWIFT codes use this convention to refer to the primary branch/office.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift11() ... 'MYNBFIQ65ZT' 'PLSGFI6ISIG' 'TZIRFIJTGEV' 'PRDLFI1UN94' 'OQIBFI9AFZA'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift11(use_dataset=True) ... 'MYNBFIQ65ZT' 'PLSGFI6ISIG' 'TZIRFIJTGEV' 'PRDLFI1UN94' 'OQIBFI9AFZA'
- swift8(use_dataset: bool = False) str ¶
Generate an 8-digit SWIFT code.
This method uses
swift()
under the hood with thelength
argument set to8
and with theprimary
argument omitted. All 8-digit SWIFT codes already refer to the primary branch/office.- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift8() ... 'MYNBFIQ6' 'PMZJFI4W' 'SGQEFISI' 'YDTZFIQ8' 'WZTEFITG'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.swift8(use_dataset=True) ... 'MYNBFIQ6' 'PMZJFI4W' 'SGQEFISI' 'YDTZFIQ8' 'WZTEFITG'
faker.providers.company
¶
- class faker.providers.company.fi_FI.Provider(generator: Any)¶
Bases:
Provider
- bs() str ¶
- Example:
‘integrate extensible convergence’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.bs() ... 'iterate integrated e-markets' 'integrate back-end mindshare' 'synthesize wireless content' 'syndicate synergistic applications' 'productize killer mindshare'
- catch_phrase() str ¶
- Example:
‘Robust full-range hub’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.catch_phrase() ... 'Networked well-modulated instruction set' 'Balanced empowering migration' 'Pre-emptive impactful toolset' 'Innovative mission-critical help-desk' 'Reduced didactic middleware'
- company() str ¶
- Example:
‘Acme Ltd’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company() ... 'Ranta' 'Autio' 'Kuusisto' 'Venäläinen Korhonen Tmi' 'Karlsson Rajala Ky'
- company_business_id() str ¶
Returns Finnish company Business Identity Code (y-tunnus). Format is 8 digits - e.g. FI99999999,[8] last digit is a check digit utilizing MOD 11-2. The first digit is zero for some old organizations. This function provides current codes starting with non-zero.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_business_id() ... '7604876-4' '5759382-0' '5219489-8' '3411578-9' '2565938-9'
- company_suffix() str ¶
- Example:
‘Ltd’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_suffix() ... 'ry' 'Oyj' 'ry' 'Oyj' 'As Oy'
- company_vat() str ¶
Returns Finnish VAT identification number (Arvonlisaveronumero). This can be calculated from company business identity code by adding prefix “FI” and removing dash before checksum.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_vat() ... 'FI76048764' 'FI57593820' 'FI52194898' 'FI34115789' 'FI25659389'
faker.providers.internet
¶
- class faker.providers.internet.fi_FI.Provider(generator: Any)¶
Bases:
Provider
- ascii_company_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_company_email() ... 'aranta@kangas.fi' 'ttoivonen@korhonen.com' 'marttirajala@virtanen.org' 'mikaelpesonen@lehtinen.com' 'tellervolehto@forsman.com'
- ascii_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_email() ... 'gautio@suomi24.fi' 'tellervo59@googlemail.com' 'jarmo19@virtanen.org' 'heikki15@makinen.com' 'eveliina38@suomi24.fi'
- ascii_free_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_free_email() ... 'aranta@gmail.com' 'tellervo76@surffi.net' 'tellervo59@googlemail.com' 'marttirajala@kolumbus.fi' 'tuulikki89@googlemail.com'
- ascii_safe_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_safe_email() ... 'aranta@example.org' 'tellervo76@example.com' 'nkorhonen@example.net' 'marttirajala@example.net' 'tuulikki89@example.org'
- company_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.company_email() ... 'aranta@kangas.fi' 'ttoivonen@korhonen.com' 'marttirajala@virtanen.org' 'mikaelpesonen@lehtinen.com' 'tellervolehto@forsman.com'
- dga(year: int | None = None, month: int | None = None, day: int | None = None, tld: str | None = None, length: int | None = None) str ¶
Generates a domain name by given date https://en.wikipedia.org/wiki/Domain_generation_algorithm
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.dga() ... 'hxqvaffcmfsccynscisxeajjagjahtnfcmfsccynscisxeajjagjahtnfcmfscc.com' 'meydkrgdcvulautulqvjofrrnbjkfmvrewtpfttqcjafdhxckmyfamo.org' 'rsoitciyjatufbjfquyfvudjerivnsrsprechaalfphoqywwursulakiudm.fi' 'ujkyfemsyj.com' 'yastipdtwjouhjjorvdtvxkkhdirblaoisavobsvdnhimwbflybiwimdljso.com'
- domain_name(levels: int = 1) str ¶
Produce an Internet domain name with the specified number of subdomain levels.
>>> domain_name() nichols-phillips.com >>> domain_name(2) williamson-hopkins.jackson.com
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.domain_name() ... 'ranta.fi' 'kangas.fi' 'toivonen.org' 'venalainen.fi' 'karlsson.org'
- domain_word() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.domain_word() ... 'ranta' 'autio' 'kuusisto' 'venalainen' 'karlsson'
- email(safe: bool = True, domain: str | None = None) str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.email() ... 'aranta@example.org' 'tellervo76@example.com' 'nkorhonen@example.net' 'marttirajala@example.net' 'tuulikki89@example.org'
- free_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email() ... 'aranta@gmail.com' 'tellervo76@surffi.net' 'tellervo59@googlemail.com' 'marttirajala@kolumbus.fi' 'tuulikki89@googlemail.com'
- free_email_domain() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email_domain() ... 'surffi.net' 'suomi24.fi' 'surffi.net' 'suomi24.fi' 'gmail.com'
- hostname(levels: int = 1) str ¶
Produce a hostname with specified number of subdomain levels.
>>> hostname() db-01.nichols-phillips.com >>> hostname(0) laptop-56 >>> hostname(2) web-12.williamson-hopkins.jackson.com
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.hostname() ... 'web-66.kangas.fi' 'laptop-47.mattila.com' 'desktop-21.virtanen.org' 'lt-24.pesonen.net' 'desktop-78.koponen.fi'
- http_method() str ¶
Returns random HTTP method https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.http_method() ... 'OPTIONS' 'OPTIONS' 'GET' 'DELETE' 'PATCH'
- http_status_code(include_unassigned: bool = True) int ¶
Returns random HTTP status code https://www.rfc-editor.org/rfc/rfc9110#name-status-codes :param include_unassigned: Whether to include status codes which have
not yet been assigned or are unused
- Returns:
a random three digit status code
- Return type:
- Example:
404
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.http_status_code() ... 532 297 488 555 315
- iana_id() str ¶
Returns IANA Registrar ID https://www.iana.org/assignments/registrar-ids/registrar-ids.xhtml
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.iana_id() ... '6463344' '7056021' '679216' '4343903' '8577767'
- image_url(width: int | None = None, height: int | None = None, placeholder_url: str | None = None) str ¶
Returns URL to placeholder image Example: http://placehold.it/640x480
- Parameters:
width – Optional image width
height – Optional image height
placeholder_url – Optional template string of image URLs from custom placeholder service. String must contain
{width}
and{height}
placeholders, eg:https:/example.com/{width}/{height}
.
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.image_url() ... 'https://picsum.photos/788/861' 'https://dummyimage.com/530x995' 'https://dummyimage.com/621x976' 'https://dummyimage.com/447x285' 'https://placekitten.com/286/194'
- ipv4(network: bool = False, address_class: str | None = None, private: str | None = None) str ¶
Returns a random IPv4 address or network with a valid CIDR.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
private – Public or private
- Returns:
IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4() ... '171.174.170.81' '95.25.112.121' '51.105.121.194' '195.110.164.126' '141.250.247.54'
- ipv4_network_class() str ¶
Returns a IPv4 network class ‘a’, ‘b’ or ‘c’.
- Returns:
IPv4 network class
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_network_class() ... 'b' 'b' 'a' 'b' 'c'
- ipv4_private(network: bool = False, address_class: str | None = None) str ¶
Returns a private IPv4.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
- Returns:
Private IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_private() ... '172.29.117.82' '10.248.203.131' '172.25.180.188' '172.22.253.123' '192.168.71.140'
- ipv4_public(network: bool = False, address_class: str | None = None) str ¶
Returns a public IPv4 excluding private blocks.
- Parameters:
network – Network address
address_class – IPv4 address class (a, b, or c)
- Returns:
Public IPv4
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv4_public() ... '166.186.169.69' '111.198.92.30' '168.155.75.206' '141.250.247.54' '212.120.204.37'
- ipv6(network: bool = False) str ¶
Produce a random IPv6 address or network with a valid CIDR
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ipv6() ... 'e3e7:682:c209:4cac:629f:6fbf:d82c:7cd' 'f728:b4fa:4248:5e3a:a5d:2f35:6baa:9455' 'eb11:67b3:67a9:c378:7c65:c1e6:82e2:e662' 'f7c1:bd87:4da5:e709:d471:3d61:c8a7:639' 'e443:df78:9558:867f:5ba9:1fb0:7a02:4204'
- mac_address(multicast: bool = False) str ¶
Returns a random MAC address.
- Parameters:
multicast – Multicast address
- Returns:
MAC Address
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.mac_address() ... '66:c5:d7:14:84:f8' '48:9b:f4:b7:6f:47' '18:47:30:80:4b:9e' '6e:25:a9:f1:33:b5' '0e:a1:68:f4:e2:85'
- nic_handle(suffix: str = 'FAKE') str ¶
Returns NIC Handle ID https://www.apnic.net/manage-ip/using-whois/guide/person/
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nic_handle() ... 'ZYT1598-FAKE' 'SIW493-FAKE' 'UE59352-FAKE' 'WBUN892-FAKE' 'CHQD98-FAKE'
- nic_handles(count: int = 1, suffix: str = '????') List[str] ¶
Returns NIC Handle ID list
>>> Faker.seed(0) >>> for _ in range(5): ... fake.nic_handles() ... ['ZYT1598-EWLN'] ['WGNZ53-QITZ'] ['UERV52-EJGW'] ['CHQ498-DZJA'] ['UU1864-TEMK']
- port_number(is_system: bool = False, is_user: bool = False, is_dynamic: bool = False) int ¶
Returns a network port number https://tools.ietf.org/html/rfc6335
- Parameters:
is_system – System or well-known ports
is_user – User or registered ports
is_dynamic – Dynamic / private / ephemeral ports
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.port_number() ... 50494 55125 5306 33936 63691
- ripe_id() str ¶
Returns RIPE Organization ID https://www.ripe.net/manage-ips-and-asns/db/support/organisation-object-in-the-ripe-database
- Return type:
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ripe_id() ... 'ORG-ZYT1598-RIPE' 'ORG-SIW493-RIPE' 'ORG-UE59352-RIPE' 'ORG-WBUN892-RIPE' 'ORG-CHQD98-RIPE'
- safe_domain_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.safe_domain_name() ... 'example.com' 'example.com' 'example.org' 'example.com' 'example.net'
- safe_email() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.safe_email() ... 'aranta@example.org' 'tellervo76@example.com' 'nkorhonen@example.net' 'marttirajala@example.net' 'tuulikki89@example.org'
- slug(value: str | None = None) str ¶
Django algorithm
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.slug() ... 'three-image-son' 'kitchen-amount' 'much-mention' 'why-step-themselves' 'me-help-past-wait'
- tld() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.tld() ... 'org' 'fi' 'org' 'fi' 'com'
- uri(schemes: List[str] | None = None, deep: int | None = None) str ¶
- Parameters:
schemes – a list of strings to use as schemes, one will chosen randomly. If None, it will generate http and https uris. Passing an empty list will result in schemeless uri generation like “://domain.com/index.html”.
deep – an integer specifying how many path components the URI should have..
- Returns:
a random url string.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri() ... 'https://toivonen.org/categorylogin.jsp' 'https://heinonen.com/tags/listlogin.html' 'http://makinen.com/explorehome.php' 'https://forsman.com/tags/wp-content/categoriesregister.asp' 'https://www.toivonen.com/tag/list/wp-contenthomepage.html'
- uri_extension() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_extension() ... '.php' '.php' '.html' '.htm' '.asp'
- uri_page() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_page() ... 'author' 'category' 'privacy' 'category' 'index'
- uri_path(deep: int | None = None) str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_path() ... 'posts/tag' 'explore/tag' 'explore/category' 'blog' 'category'
- url(schemes: List[str] | None = None) str ¶
- Parameters:
schemes – a list of strings to use as schemes, one will chosen randomly. If None, it will generate http and https urls. Passing an empty list will result in schemeless url generation like “://domain.com”.
- Returns:
a random url string.
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.url() ... 'https://kangas.fi/' 'https://korhonen.com/' 'http://rajala.fi/' 'http://pesonen.net/' 'https://koponen.fi/'
faker.providers.job
¶
- class faker.providers.job.fi_FI.Provider(generator: Any)¶
Bases:
Provider
- job() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.job() ... 'Maa- ja vesirakennustyöntekijä' 'Neuropsykologi' 'Ballistikko' 'Immunologi' 'Panostaja'
faker.providers.person
¶
- class faker.providers.person.fi_FI.Provider(generator: Any)¶
Bases:
Provider
- first_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name() ... 'Marjut' 'Leena' 'Seppo' 'Kullervo' 'Alina'
- first_name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_female() ... 'Sari' 'Päivi' 'Kaija' 'Helena' 'Leena'
- first_name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_male() ... 'Taisto' 'Petteri' 'Juho' 'Janne' 'Kristian'
- first_name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_nonbinary() ... 'Marjut' 'Leena' 'Seppo' 'Kullervo' 'Alina'
- language_name() str ¶
Generate a random i18n language name (e.g. English).
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.language_name() ... 'Luba-Katanga' 'Malay' 'Aymara' 'Interlingue' 'Quechua'
- last_name() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name() ... 'Salonen' 'Ranta' 'Lähteenmäki' 'Kangas' 'Lindfors'
- last_name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_female() ... 'Salonen' 'Ranta' 'Lähteenmäki' 'Kangas' 'Lindfors'
- last_name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_male() ... 'Salonen' 'Ranta' 'Lähteenmäki' 'Kangas' 'Lindfors'
- last_name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_nonbinary() ... 'Salonen' 'Ranta' 'Lähteenmäki' 'Kangas' 'Lindfors'
- name() str ¶
- Example:
‘John Doe’
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name() ... 'Petteri Lähteenmäki' 'Tuulia Lehtonen-Toivonen' 'Tuulia Korhonen-Takala' 'Lea Karlsson' 'Maria Kainulainen'
- name_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_female() ... 'Päivi Lähteenmäki' 'Tuulia Lehtonen' 'Tuulia Korhonen' 'Lea Karlsson' 'Maria Kainulainen'
- name_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_male() ... 'Petteri Lähteenmäki' 'Veikko Lehtonen' 'Veikko Korhonen' 'Kristian Karlsson' 'Mikael Kainulainen'
- name_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.name_nonbinary() ... 'Petteri Lähteenmäki' 'Tuulia Lehtonen-Toivonen' 'Tuulia Korhonen-Takala' 'Lea Karlsson' 'Maria Kainulainen'
- prefix() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix() ... 'prof.' 'prof.' 'Herra' 'Tohtori' 'arkkit.'
- prefix_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_female() ... 'prof.' 'prof.' 'Herra' 'Tohtori' 'arkkit.'
- prefix_male() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_male() ... 'prof.' 'prof.' 'Herra' 'Tohtori' 'arkkit.'
- prefix_nonbinary() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_nonbinary() ... 'prof.' 'prof.' 'Herra' 'Tohtori' 'arkkit.'
- suffix() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix() ... 'BSc' 'BSc' 'DI' 'MSc' 'BSc'
- suffix_female() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix_female() ... 'BSc' 'BSc' 'DI' 'MSc' 'BSc'
faker.providers.phone_number
¶
- class faker.providers.phone_number.fi_FI.Provider(generator: Any)¶
Bases:
Provider
- country_calling_code() str ¶
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.country_calling_code() ... '+687' '+595' '+880' '+964' '+41'
- msisdn() str ¶
https://en.wikipedia.org/wiki/MSISDN
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.msisdn() ... '6048764759382' '2194892411578' '5659387784080' '6097535139332' '1158714841858'
faker.providers.ssn
¶
- class faker.providers.ssn.fi_FI.Provider(generator: Any)¶
Bases:
Provider
- ssn(min_age: int = 0, max_age: int = 105, artificial: bool = False) str ¶
Returns 11 character Finnish personal identity code (Henkilötunnus, HETU, Swedish: Personbeteckning). This function assigns random gender to person.
HETU consists of eleven characters of the form DDMMYYCZZZQ, where DDMMYY is the date of birth, C the century sign, ZZZ the individual number and Q the control character (checksum). The sign for the century is either + (1800–1899), - (1900–1999), or A (2000–2099). The individual number ZZZ is odd for males and even for females. For people born in Finland its range is 002-899 (larger numbers may be used in special cases). An example of a valid code is 311280-888Y.
https://en.wikipedia.org/wiki/National_identification_number#Finland
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.ssn() ... '080256-778A' '071049-043L' '091078-525X' '150138-416P' '221070-4904'
- vat_id() str ¶
http://ec.europa.eu/taxation_customs/vies/faq.html#item_11 :return: A random Finnish VAT ID
- Examples:
>>> Faker.seed(0) >>> for _ in range(5): ... fake.vat_id() ... 'FI60487647' 'FI93824219' 'FI89241157' 'FI56593877' 'FI08016097'