summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL
diff options
context:
space:
mode:
Diffstat (limited to 'venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL')
-rw-r--r--venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__init__.py73
-rw-r--r--venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__pycache__/__init__.cpython-311.pycbin4105 -> 0 bytes
2 files changed, 0 insertions, 73 deletions
diff --git a/venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__init__.py b/venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__init__.py
deleted file mode 100644
index a0d4199..0000000
--- a/venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__init__.py
+++ /dev/null
@@ -1,73 +0,0 @@
-from datetime import datetime
-from typing import List
-
-from .. import Provider as SsnProvider
-
-
-def checksum(digits: List[int]) -> int:
- """
- Calculates and returns a control digit for given list of digits basing on PESEL standard.
- """
- weights_for_check_digit = [9, 7, 3, 1, 9, 7, 3, 1, 9, 7]
- check_digit = 0
-
- for i in range(0, 10):
- check_digit += weights_for_check_digit[i] * digits[i]
-
- check_digit %= 10
-
- return check_digit
-
-
-def calculate_month(birth_date: datetime) -> int:
- """
- Calculates and returns a month number basing on PESEL standard.
- """
- year = int(birth_date.strftime("%Y"))
- month = int(birth_date.strftime("%m")) + ((int(year / 100) - 14) % 5) * 20
-
- return month
-
-
-class Provider(SsnProvider):
- def ssn(self) -> str:
- """
- Returns 11 character Polish national identity code (Public Electronic Census System,
- Polish: Powszechny Elektroniczny System Ewidencji LudnoĊ›ci - PESEL).
-
- It has the form YYMMDDZZZXQ, where YYMMDD is the date of birth (with century
- encoded in month field), ZZZ is the personal identification number, X denotes sex
- (even for females, odd for males) and Q is a parity number.
-
- https://en.wikipedia.org/wiki/National_identification_number#Poland
- """
- birth_date = self.generator.date_time()
-
- year_without_century = int(birth_date.strftime("%y"))
- month = calculate_month(birth_date)
- day = int(birth_date.strftime("%d"))
-
- pesel_digits = [
- int(year_without_century / 10),
- year_without_century % 10,
- int(month / 10),
- month % 10,
- int(day / 10),
- day % 10,
- ]
-
- for _ in range(4):
- pesel_digits.append(self.random_digit())
-
- pesel_digits.append(checksum(pesel_digits))
-
- return "".join(str(digit) for digit in pesel_digits)
-
- vat_id_formats = ("PL##########",)
-
- def vat_id(self) -> str:
- """
- http://ec.europa.eu/taxation_customs/vies/faq.html#item_11
- :return: A random Polish VAT ID
- """
- return self.bothify(self.random_element(self.vat_id_formats))
diff --git a/venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__pycache__/__init__.cpython-311.pyc b/venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__pycache__/__init__.cpython-311.pyc
deleted file mode 100644
index b5ac6d2..0000000
--- a/venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__pycache__/__init__.cpython-311.pyc
+++ /dev/null
Binary files differ