From 12cf076118570eebbff08c6b3090e0d4798447a1 Mon Sep 17 00:00:00 2001 From: cyfraeviolae Date: Wed, 3 Apr 2024 03:17:55 -0400 Subject: no venv --- .../faker/providers/ssn/pl_PL/__init__.py | 73 --------------------- .../ssn/pl_PL/__pycache__/__init__.cpython-311.pyc | Bin 4105 -> 0 bytes 2 files changed, 73 deletions(-) delete mode 100644 venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__init__.py delete mode 100644 venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__pycache__/__init__.cpython-311.pyc (limited to 'venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL') 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 Binary files a/venv/lib/python3.11/site-packages/faker/providers/ssn/pl_PL/__pycache__/__init__.cpython-311.pyc and /dev/null differ -- cgit v1.2.3