Locale bg_BG¶
faker.providers.color
¶
-
class
faker.providers.color.bg_BG.
Provider
(generator: Any)¶ Bases:
faker.providers.color.Provider
Implement color provider for
bg_BG
locale.-
color
(hue: Optional[HueType] = None, luminosity: Optional[str] = None, color_format: str = 'hex') → str¶ Generate a color in a human-friendly way.
Under the hood, this method first creates a color represented in the HSV color model and then converts it to the desired
color_format
. The argumenthue
controls the H value according to the following rules:- If the value is a number from
0
to360
, it will serve as the H value of the generated color. - If the value is a tuple/list of 2 numbers from 0 to 360, the color’s H value will be randomly selected from that range.
- If the value is a valid string, the color’s H value will be randomly
selected from the H range corresponding to the supplied string. Valid
values are
'monochrome'
,'red'
,'orange'
,'yellow'
,'green'
,'blue'
,'purple'
, and'pink'
.
The argument
luminosity
influences both S and V values and is partially affected byhue
as well. The finer details of this relationship are somewhat involved, so please refer to the source code instead if you wish to dig deeper. To keep the interface simple, this argument either can be omitted or can accept the following string values:'bright'
,'dark'
,'light'
, or'random'
.The argument
color_format
controls in which color model the color is represented. Valid values are'hsv'
,'hsl'
,'rgb'
, or'hex'
(default).Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue='red') ... '#af2f33' '#e02141' '#ef6466' '#a80a14' '#ed9e95'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(luminosity='light') ... '#79c3e0' '#89ffa1' '#96cbf7' '#aafaff' '#e3f495'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue=(100, 200), color_format='rgb') ... 'rgb(26, 155, 88)' 'rgb(9, 193, 49)' 'rgb(73, 229, 154)' 'rgb(107, 249, 166)' 'rgb(76, 204, 69)'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue='orange', luminosity='bright') ... '#efc332' '#edae65' '#d1861d' '#ffcc42' '#e09533'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue=135, luminosity='dark', color_format='hsv') ... 'hsv(135, 96, 45)' 'hsv(135, 98, 57)' 'hsv(135, 94, 61)' 'hsv(135, 99, 47)' 'hsv(135, 94, 50)'
>>> Faker.seed(0) >>> for _ in range(5): ... fake.color(hue=(300, 20), luminosity='random', color_format='hsl') ... 'hsl(217, 94, 27)' 'hsl(40, 23, 54)' 'hsl(268, 100, 74)' 'hsl(175, 43, 31)' 'hsl(131, 47, 11)'
- If the value is a number from
-
color_name
() → str¶ Generate a color name.
Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.color_name() ... 'Златно' 'Червено' 'Зелено' 'Лазурно' 'Тъмно маслинено зелено'
-
hex_color
() → str¶ Generate a color formatted as a hex triplet.
Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.hex_color() ... '#d82c08' '#629f70' '#c2094d' '#e3e707' '#6baa95'
-
rgb_color
() → str¶ Generate a color formatted as a comma-separated RGB value.
Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.rgb_color() ... '197,215,20' '132,248,207' '155,244,183' '111,71,144' '71,48,128'
-
rgb_css_color
() → str¶ Generate a color formatted as a CSS rgb() function.
Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.rgb_css_color() ... 'rgb(197,215,20)' 'rgb(132,248,207)' 'rgb(155,244,183)' 'rgb(111,71,144)' 'rgb(71,48,128)'
-
safe_color_name
() → str¶ Generate a web-safe color name.
Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.safe_color_name() ... 'лайм' 'бяло' 'лайм' 'черно' 'пурпурно'
-
safe_hex_color
() → str¶ Generate a web-safe color formatted as a hex triplet.
Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.safe_hex_color() ... '#ccdd11' '#88ffcc' '#99ffbb' '#664499' '#443388'
-
faker.providers.company
¶
-
class
faker.providers.company.bg_BG.
Provider
(generator: Any)¶ Bases:
faker.providers.company.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() ... 'Щърбов Бърборков ET' 'Бележкова' 'Николов Чупетловска ООД' 'Миленков' 'Зенгинов'
-
company_suffix
() → str¶ Example: ‘Ltd’ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.company_suffix() ... 'KD' 'КД' 'AD' 'ET' 'SD'
-
faker.providers.internet
¶
-
class
faker.providers.internet.bg_BG.
Provider
(generator: Any)¶ Bases:
faker.providers.internet.Provider
-
ascii_company_email
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_company_email() ... 'frodo2021@burborkov.info' 'yakimkobilarov@chupetlovska.net' 'fenerovgatso@pulev.org' 'inan1980@dzezov.info' 'dzhon-stefan56@bedrinov.info'
-
ascii_email
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_email() ... 'chenko1972@shkembova.edu' 'kiberzlatkov@mangufova.biz' 'despin2012@hotmail.com' 'makaronskitominka@gmail.com' 'panomakaronski@kurtakova.net'
-
ascii_free_email
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_free_email() ... 'frodo2021@mail.bg' 'mustakovatoshka@mail.bg' 'yakimkobilarov@hotmail.com' 'kiberzlatkov@yahoo.com' 'zdravelin42@gmail.com'
-
ascii_safe_email
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.ascii_safe_email() ... 'frodo2021@example.com' 'mustakovatoshka@example.com' 'yakimkobilarov@example.com' 'kiberzlatkov@example.org' 'zdravelin42@example.org'
-
company_email
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.company_email() ... 'frodo2021@burborkov.info' 'yakimkobilarov@chupetlovska.net' 'fenerovgatso@pulev.org' 'inan1980@dzezov.info' 'dzhon-stefan56@bedrinov.info'
-
dga
(year: Optional[int] = None, month: Optional[int] = None, day: Optional[int] = None, tld: Optional[str] = None, length: Optional[int] = None) → str¶ Generates a domain name by given date https://en.wikipedia.org/wiki/Domain_generation_algorithm
Return type: str Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.dga() ... 'hxqvaffcmfsccynscisxeajjagjahtnfcmfsccynscisxeajjagjahtnfcmfscc.biz' 'meydkrgdcvulautulqvjofrrnbjkfmvrewtpfttqcjafdhxckmyfamo.edu' 'rsoitciyjatufbjfquyfvudjerivnsrsprechaalfphoqywwursulakiudm.net' 'ujkyfemsyj.biz' 'yastipdtwjouhjjorvdtvxkkhdirblaoisavobsvdnhimwbflybiwimdljso.biz'
-
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() ... 'shturbov.net' 'poakov.biz' 'milenkov.net' 'kesov.edu' 'pulev.org'
-
domain_word
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.domain_word() ... 'shturbov' 'belezhkova' 'nikolov' 'milenkov' 'zenginov'
-
email
(safe: bool = True, domain: Optional[str] = None) → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.email() ... 'frodo2021@example.com' 'mustakovatoshka@example.com' 'yakimkobilarov@example.com' 'kiberzlatkov@example.org' 'zdravelin42@example.org'
-
free_email
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email() ... 'frodo2021@mail.bg' 'mustakovatoshka@mail.bg' 'yakimkobilarov@hotmail.com' 'kiberzlatkov@yahoo.com' 'zdravelin42@gmail.com'
-
free_email_domain
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.free_email_domain() ... 'mail.bg' 'mail.bg' 'gmail.com' 'hotmail.com' 'abv.bg'
-
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.manavski.info' 'laptop-47.milenkov.biz' 'srv-19.belokonska-vrazhalska.bg' 'email-15.purvanova.info' 'desktop-93.chupetlovska.info'
-
http_method
() → str¶ Returns random HTTP method https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
Return type: str Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.http_method() ... 'OPTIONS' 'OPTIONS' 'GET' 'DELETE' 'PATCH'
-
iana_id
() → str¶ Returns IANA Registrar ID https://www.iana.org/assignments/registrar-ids/registrar-ids.xhtml
Return type: str Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.iana_id() ... '6463344' '7056021' '679216' '4343903' '8577767'
-
image_url
(width: Optional[int] = None, height: Optional[int] = None, placeholder_url: Optional[str] = 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: Optional[str] = None, private: Optional[str] = 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: Optional[str] = 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: Optional[str] = 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
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.mac_address() ... 'c5:d7:14:84:f8:cf' '9b:f4:b7:6f:47:90' '47:30:80:4b:9e:32' '25:a9:f1:33:b5:de' 'a1:68:f4:e2:85:1f'
-
nic_handle
(suffix: str = 'FAKE') → str¶ Returns NIC Handle ID https://www.apnic.net/manage-ip/using-whois/guide/person/
Return type: str 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
Return type: list[str] Examples: >>> 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: str 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() ... 'frodo2021@example.com' 'mustakovatoshka@example.com' 'yakimkobilarov@example.com' 'kiberzlatkov@example.org' 'zdravelin42@example.org'
-
slug
(value: Optional[str] = None) → str¶ Django algorithm
Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.slug() ... 'molestiae-nihil' 'facilis-quaerat' 'necessitatibus' 'perferendis-magnam' 'esse-quae-deserunt'
-
tld
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.tld() ... 'edu' 'info' 'edu' 'info' 'bg'
-
uri
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.uri() ... 'https://www.shkembova.edu/explore/category/main/' 'http://khvurchilkov.net/posts/list/search/terms.html' 'https://www.kurtakova.net/register.jsp' 'https://www.bratukhchev.bg/list/blog/posts/about.html' 'https://peeva.com/wp-content/posts/main/login.jsp'
-
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: Optional[int] = None) → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.uri_path() ... 'posts/tag' 'explore/tag' 'explore/category' 'blog' 'category'
-
url
(schemes: Optional[List[str]] = 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://manavski.info/' 'https://klatikrushev.com/' 'https://www.pulev.org/' 'http://simeonov.info/' 'http://karakashev.info/'
-
user_name
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.user_name() ... 'frodo2021' 'alektuturilov' 'aela64' 'kiberzlatkov' 'pulevgato'
-
faker.providers.person
¶
-
class
faker.providers.person.bg_BG.
Provider
(generator: Any)¶ Bases:
faker.providers.person.Provider
-
first_name
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name() ... 'Фродо' 'Цоня' 'Ченко' 'Болен' 'Ненко'
-
first_name_female
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_female() ... 'Октавия' 'Първолетка' 'Аселина' 'Калиса' 'Тошка'
-
first_name_male
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_male() ... 'Черноризец' 'Коко' 'Фичо' 'Щилиян' 'Лилян'
-
first_name_nonbinary
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.first_name_nonbinary() ... 'Фродо' 'Цоня' 'Ченко' 'Болен' 'Ненко'
-
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() ... 'Чукчуков' 'Щърбов' 'Бърборков' 'Манавски' 'Шкембова'
-
last_name_female
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_female() ... 'Куртажова' 'Многознаева' 'Куртакова' 'Мустакова' 'Точева-Клопова'
-
last_name_male
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_male() ... 'Занов' 'Муев' 'Колипатков' 'Тумангелов' 'Иванов'
-
last_name_nonbinary
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.last_name_nonbinary() ... 'Чукчуков' 'Щърбов' 'Бърборков' 'Манавски' 'Шкембова'
-
name
() → str¶ Example: ‘John Doe’ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.name() ... 'Г-ца Аселина Мустакова' 'Г-ца Лика Пищовколева' 'Янка Чупетловска' 'Г-ца Гацо Костов' 'Рашко Цоцов'
-
name_female
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.name_female() ... 'Г-ца Аселина Мустакова' 'Г-ца Лика Пищовколева' 'Др. Захаринка Точева-Клопова' 'Костадинка Вампирска' 'Йоко Първанова'
-
name_male
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.name_male() ... 'Г-ца Алек Тутурилов' 'Г-ца Яким Кобиларов' 'Г-ца Кибер Златков' 'Невян Гьоков' 'Г-жа Финдо Макаронски'
-
name_nonbinary
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.name_nonbinary() ... 'Г-ца Аселина Мустакова' 'Г-ца Лика Пищовколева' 'Янка Чупетловска' 'Г-ца Гацо Костов' 'Рашко Цоцов'
-
prefix
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix() ... 'Г-ца' 'Др.' 'Г-ца' 'Г-ца' 'Др.'
-
prefix_female
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_female() ... 'Г-ца' 'Г-ца' 'Г-жа' 'Г-ца' 'Др.'
-
prefix_male
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_male() ... 'Др.' 'Др.' 'Г-н' 'Др.' 'Др.'
-
prefix_nonbinary
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.prefix_nonbinary() ... 'Г-ца' 'Др.' 'Г-ца' 'Г-ца' 'Др.'
-
suffix
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix() ... '' '' '' '' ''
-
suffix_female
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix_female() ... '' '' '' '' ''
-
suffix_male
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix_male() ... '' '' '' '' ''
-
suffix_nonbinary
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.suffix_nonbinary() ... '' '' '' '' ''
-
faker.providers.phone_number
¶
-
class
faker.providers.phone_number.bg_BG.
Provider
(generator: Any)¶ Bases:
faker.providers.phone_number.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'
-
phone_number
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.phone_number() ... '0604 876 475' '(0382) 421 948' '(0241) 157 815' '0593 877 840' '(0016) 097535'
-
faker.providers.ssn
¶
-
class
faker.providers.ssn.bg_BG.
Provider
(generator: Any)¶ Bases:
faker.providers.ssn.Provider
A Faker provider for the Bulgarian VAT IDs
-
ssn
() → str¶ Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.ssn() ... '604-87-6475' '824-21-9489' '411-57-8156' '938-77-8408' '160-97-5351'
-
vat_id
() → str¶ http://ec.europa.eu/taxation_customs/vies/faq.html#item_11 :return: A random Bulgarian VAT ID
Examples: >>> Faker.seed(0) >>> for _ in range(5): ... fake.vat_id() ... 'BG6048764759' 'BG824219489' 'BG411578156' 'BG9387784080' 'BG609753513'
-