SYMBOL INDEX (5328 symbols across 755 files) FILE: faker/cli.py function print_provider (line 23) | def print_provider( function print_doc (line 62) | def print_doc( class Command (line 117) | class Command: method __init__ (line 118) | def __init__(self, argv: Optional[str] = None) -> None: method execute (line 122) | def execute(self) -> None: function execute_from_command_line (line 281) | def execute_from_command_line(argv: Optional[str] = None) -> None: FILE: faker/contrib/pytest/plugin.py function _session_faker (line 10) | def _session_faker(request): function faker (line 24) | def faker(request): FILE: faker/decode/__init__.py function unidecode (line 4) | def unidecode(txt: str) -> str: FILE: faker/documentor.py class FakerEnum (line 12) | class FakerEnum(Enum): class Documentor (line 19) | class Documentor: method __init__ (line 20) | def __init__(self, generator: Union[Generator, Faker]) -> None: method get_formatters (line 30) | def get_formatters( method get_provider_formatters (line 48) | def get_provider_formatters( method get_provider_name (line 126) | def get_provider_name(provider_class: BaseProvider) -> str: FILE: faker/exceptions.py class BaseFakerException (line 1) | class BaseFakerException(Exception): class UniquenessException (line 5) | class UniquenessException(BaseFakerException): class UnsupportedFeature (line 11) | class UnsupportedFeature(BaseFakerException): method __init__ (line 14) | def __init__(self, msg: str, name: str) -> None: FILE: faker/factory.py class Factory (line 23) | class Factory: method create (line 25) | def create( method _find_provider_class (line 67) | def _find_provider_class( FILE: faker/generator.py class Generator (line 19) | class Generator: method __init__ (line 27) | def __init__(self, **config: Dict) -> None: method add_provider (line 32) | def add_provider(self, provider: Union["BaseProvider", Type["BaseProvi... method provider (line 49) | def provider(self, name: str) -> Optional["BaseProvider"]: method get_providers (line 56) | def get_providers(self) -> List["BaseProvider"]: method random (line 61) | def random(self) -> random_module.Random: method random (line 65) | def random(self, value: random_module.Random) -> None: method seed_instance (line 68) | def seed_instance(self, seed: Optional[SeedType] = None) -> "Generator": method seed (line 79) | def seed(cls, seed: Optional[SeedType] = None) -> None: method format (line 84) | def format(self, formatter: str, *args: Any, **kwargs: Any) -> str: method get_formatter (line 90) | def get_formatter(self, formatter: str) -> Callable: method set_formatter (line 100) | def set_formatter(self, name: str, formatter: Callable) -> None: method set_arguments (line 107) | def set_arguments(self, group: str, argument: str, value: Optional[Any... method get_arguments (line 127) | def get_arguments(self, group: str, argument: Optional[str] = None) ->... method del_arguments (line 143) | def del_arguments(self, group: str, argument: Optional[str] = None) ->... method parse (line 161) | def parse(self, text: str) -> str: method __format_token (line 177) | def __format_token(self, matches): FILE: faker/providers/__init__.py class BaseProvider (line 23) | class BaseProvider: method __init__ (line 286) | def __init__(self, generator: Any) -> None: method locale (line 293) | def locale(self) -> str: method language_code (line 305) | def language_code(self) -> str: method random_int (line 310) | def random_int(self, min: int = 0, max: int = 9999, step: int = 1) -> ... method random_digit (line 322) | def random_digit(self) -> int: method random_digit_not_null (line 327) | def random_digit_not_null(self) -> int: method random_digit_above_two (line 332) | def random_digit_above_two(self) -> int: method random_digit_or_empty (line 337) | def random_digit_or_empty(self) -> Union[int, str]: method random_digit_not_null_or_empty (line 349) | def random_digit_not_null_or_empty(self) -> Union[int, str]: method random_number (line 361) | def random_number(self, digits: Optional[int] = None, fix_len: bool = ... method random_letter (line 389) | def random_letter(self) -> str: method random_letters (line 394) | def random_letters(self, length: int = 16) -> Sequence[str]: method random_lowercase_letter (line 404) | def random_lowercase_letter(self) -> str: method random_uppercase_letter (line 409) | def random_uppercase_letter(self) -> str: method random_elements (line 414) | def random_elements( method random_choices (line 509) | def random_choices( method random_element (line 537) | def random_element(self, elements: ElementsType[T] = ("a", "b", "c")) ... method random_sample (line 556) | def random_sample( method randomize_nb_elements (line 570) | def randomize_nb_elements( method numerify (line 609) | def numerify(self, text: str = "###") -> str: method lexify (line 635) | def lexify(self, text: str = "????", letters: str = string.ascii_lette... method bothify (line 646) | def bothify(self, text: str = "## ??", letters: str = string.ascii_let... method hexify (line 669) | def hexify(self, text: str = "^^^^", upper: bool = False) -> str: class DynamicProvider (line 685) | class DynamicProvider(BaseProvider): method __init__ (line 686) | def __init__( method add_element (line 730) | def add_element(self, element: str) -> None: method get_random_value (line 734) | def get_random_value(self, use_weighting: bool = True) -> Any: FILE: faker/providers/address/__init__.py class Provider (line 6) | class Provider(BaseProvider): method city_suffix (line 23) | def city_suffix(self) -> str: method street_suffix (line 29) | def street_suffix(self) -> str: method building_number (line 35) | def building_number(self) -> str: method city (line 41) | def city(self) -> str: method street_name (line 48) | def street_name(self) -> str: method street_address (line 55) | def street_address(self) -> str: method postcode (line 62) | def postcode(self) -> str: method address (line 68) | def address(self) -> str: method country (line 75) | def country(self) -> str: method country_code (line 81) | def country_code(self, representation: str = ALPHA_2) -> str: method current_country_code (line 94) | def current_country_code(self) -> str: method current_country (line 103) | def current_country(self) -> str: FILE: faker/providers/address/az_AZ/__init__.py class Provider (line 4) | class Provider(AddressProvider): method house_number (line 611) | def house_number(self) -> str: method city (line 617) | def city(self) -> str: method city_suffix (line 623) | def city_suffix(self) -> str: method street (line 629) | def street(self) -> str: method street_suffix (line 635) | def street_suffix(self) -> str: method village (line 641) | def village(self) -> str: method village_suffix (line 647) | def village_suffix(self) -> str: method district (line 653) | def district(self) -> str: method district_suffix (line 659) | def district_suffix(self) -> str: method settlement (line 665) | def settlement(self) -> str: method settlement_suffix (line 671) | def settlement_suffix(self) -> str: method administrative_unit (line 677) | def administrative_unit(self) -> str: method postcode (line 683) | def postcode(self) -> str: method postalcode (line 690) | def postalcode(self) -> str: FILE: faker/providers/address/bn_BD/__init__.py class Provider (line 6) | class Provider(AddressProvider): method administrative_unit (line 488) | def administrative_unit(self) -> str: method area_name (line 494) | def area_name(self) -> str: method building_name (line 500) | def building_name(self) -> str: method building_number (line 506) | def building_number(self) -> str: method city_prefix (line 512) | def city_prefix(self) -> str: method city (line 518) | def city(self) -> str: method postcode (line 524) | def postcode(self) -> str: method secondary_address (line 531) | def secondary_address(self) -> str: method town (line 542) | def town(self) -> str: FILE: faker/providers/address/cs_CZ/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_suffix_short (line 1184) | def street_suffix_short(self) -> str: method street_suffix_long (line 1187) | def street_suffix_long(self) -> str: method city_name (line 1190) | def city_name(self) -> str: method street_name (line 1193) | def street_name(self) -> str: method administrative_unit (line 1196) | def administrative_unit(self) -> str: method city_with_postcode (line 1201) | def city_with_postcode(self) -> str: FILE: faker/providers/address/da_DK/__init__.py class Provider (line 4) | class Provider(AddressProvider): method dk_street_name (line 2510) | def dk_street_name(self) -> str: method city_name (line 2516) | def city_name(self) -> str: method administrative_unit (line 2519) | def administrative_unit(self) -> str: FILE: faker/providers/address/de/__init__.py class Provider (line 4) | class Provider(AddressProvider): FILE: faker/providers/address/de_AT/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_suffix_short (line 264) | def street_suffix_short(self) -> str: method street_suffix_long (line 267) | def street_suffix_long(self) -> str: method city_name (line 270) | def city_name(self) -> str: method administrative_unit (line 273) | def administrative_unit(self) -> str: method city_with_postcode (line 278) | def city_with_postcode(self) -> str: FILE: faker/providers/address/de_CH/__init__.py class Provider (line 6) | class Provider(AddressProvider): method canton (line 219) | def canton(self) -> Tuple[str, str]: method city_name (line 226) | def city_name(self) -> str: method administrative_unit (line 233) | def administrative_unit(self) -> str: method canton_code (line 242) | def canton_code(self) -> str: FILE: faker/providers/address/de_DE/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_suffix_short (line 454) | def street_suffix_short(self) -> str: method street_suffix_long (line 457) | def street_suffix_long(self) -> str: method city_name (line 460) | def city_name(self) -> str: method administrative_unit (line 463) | def administrative_unit(self) -> str: method city_with_postcode (line 468) | def city_with_postcode(self) -> str: FILE: faker/providers/address/el_GR/__init__.py class Provider (line 4) | class Provider(AddressProvider): method line_address (line 50) | def line_address(self) -> str: method street_prefix (line 54) | def street_prefix(self) -> str: method street_prefix_short (line 57) | def street_prefix_short(self) -> str: method street_prefix_long (line 60) | def street_prefix_long(self) -> str: method street (line 63) | def street(self) -> str: method city (line 66) | def city(self) -> str: method administrative_unit (line 69) | def administrative_unit(self) -> str: FILE: faker/providers/address/en/__init__.py class Provider (line 4) | class Provider(AddressProvider): FILE: faker/providers/address/en_AU/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_prefix (line 330) | def city_prefix(self) -> str: method secondary_address (line 333) | def secondary_address(self) -> str: method administrative_unit (line 336) | def administrative_unit(self) -> str: method state_abbr (line 341) | def state_abbr(self) -> str: FILE: faker/providers/address/en_BD/__init__.py class Provider (line 8) | class Provider(AddressProvider): method administrative_unit (line 488) | def administrative_unit(self) -> str: method area_name (line 494) | def area_name(self) -> str: method building_name (line 500) | def building_name(self) -> str: method building_number (line 506) | def building_number(self) -> str: method city_prefix (line 512) | def city_prefix(self) -> str: method city (line 518) | def city(self) -> str: method postcode (line 524) | def postcode(self) -> str: method secondary_address (line 531) | def secondary_address(self) -> str: method town (line 542) | def town(self) -> str: FILE: faker/providers/address/en_CA/__init__.py class Provider (line 10) | class Provider(AddressProvider): method administrative_unit (line 358) | def administrative_unit(self) -> str: method province_abbr (line 364) | def province_abbr(self) -> str: method city_prefix (line 367) | def city_prefix(self) -> str: method secondary_address (line 370) | def secondary_address(self) -> str: method postal_code_letter (line 373) | def postal_code_letter(self) -> str: method _postcode_replace (line 380) | def _postcode_replace(self, postal_code_format: str) -> str: method postcode (line 389) | def postcode(self) -> str: method postcode_in_province (line 395) | def postcode_in_province(self, province_abbr: Optional[str] = None) ->... method postalcode_in_province (line 413) | def postalcode_in_province(self, province_abbr: Optional[str] = None) ... method postalcode (line 416) | def postalcode(self) -> str: FILE: faker/providers/address/en_GB/__init__.py class Provider (line 6) | class Provider(AddressProvider): method postcode (line 530) | def postcode(self) -> str: method city_prefix (line 541) | def city_prefix(self) -> str: method secondary_address (line 544) | def secondary_address(self) -> str: method administrative_unit (line 547) | def administrative_unit(self) -> str: FILE: faker/providers/address/en_IE/__init__.py class Provider (line 6) | class Provider(AddressProvider): method postcode (line 52) | def postcode(self) -> str: method administrative_unit (line 58) | def administrative_unit(self) -> str: FILE: faker/providers/address/en_IN/__init__.py class Provider (line 8) | class Provider(AddressProvider): method city_name (line 504) | def city_name(self) -> str: method administrative_unit (line 507) | def administrative_unit(self) -> str: method union_territory (line 512) | def union_territory(self) -> str: method pincode_in_state (line 517) | def pincode_in_state(self, state_abbr: Optional[str] = None, include_u... method pincode_in_military (line 544) | def pincode_in_military(self) -> int: method zipcode_in_state (line 553) | def zipcode_in_state(self, state_abbr: Optional[str] = None, include_u... method postcode_in_state (line 556) | def postcode_in_state(self, state_abbr: Optional[str] = None, include_... method pincode_in_army (line 559) | def pincode_in_army(self) -> int: method zipcode_in_military (line 562) | def zipcode_in_military(self) -> int: method zipcode_in_army (line 565) | def zipcode_in_army(self) -> int: method postcode_in_military (line 568) | def postcode_in_military(self) -> int: method postcode_in_army (line 571) | def postcode_in_army(self) -> int: FILE: faker/providers/address/en_MS/__init__.py class Provider (line 10) | class Provider(AddressProvider): method city_prefix_abbr (line 207) | def city_prefix_abbr(self) -> str: method city (line 222) | def city(self) -> str: method street_prefix (line 236) | def street_prefix(self) -> str: method street_name (line 390) | def street_name(self) -> str: method building_prefix (line 410) | def building_prefix(self) -> str: method building_number (line 427) | def building_number(self) -> str: method city_state (line 432) | def city_state(self) -> str: method city_prefix (line 448) | def city_prefix(self) -> str: method administrative_unit (line 451) | def administrative_unit(self) -> str: method postcode_in_state (line 456) | def postcode_in_state(self, state_abbr: Optional[str] = None) -> str: method postcode (line 485) | def postcode(self) -> str: FILE: faker/providers/address/en_NZ/__init__.py class Provider (line 4) | class Provider(AddressProvider): method te_reo_part (line 321) | def te_reo_part(self) -> str: method te_reo_first (line 324) | def te_reo_first(self) -> str: method te_reo_ending (line 327) | def te_reo_ending(self) -> str: method city_prefix (line 330) | def city_prefix(self) -> str: method city_suffix (line 333) | def city_suffix(self) -> str: method rd_number (line 336) | def rd_number(self) -> str: method secondary_address (line 339) | def secondary_address(self) -> str: FILE: faker/providers/address/en_PH/__init__.py class Provider (line 9) | class Provider(AddressProvider): method _ordinal_string (line 1685) | def _ordinal_string(self, num: Union[int, str]) -> str: method _create_postcode (line 1693) | def _create_postcode(self, postcodes: Sequence[int]) -> str: method _create_address (line 1696) | def _create_address(self, address_formats: ElementsType[str]) -> str: method metro_manila_postcode (line 1699) | def metro_manila_postcode(self) -> str: method luzon_province_postcode (line 1702) | def luzon_province_postcode(self) -> str: method visayas_province_postcode (line 1705) | def visayas_province_postcode(self) -> str: method mindanao_province_postcode (line 1708) | def mindanao_province_postcode(self) -> str: method postcode (line 1711) | def postcode(self) -> str: method luzon_province (line 1714) | def luzon_province(self) -> str: method visayas_province (line 1717) | def visayas_province(self) -> str: method mindanao_province (line 1720) | def mindanao_province(self) -> str: method administrative_unit (line 1723) | def administrative_unit(self) -> str: method standalone_building_number (line 1728) | def standalone_building_number(self) -> str: method partitioned_building_number (line 1731) | def partitioned_building_number(self) -> str: method building_number (line 1738) | def building_number(self) -> str: method ordinal_street_number (line 1744) | def ordinal_street_number(self) -> str: method floor_number (line 1747) | def floor_number(self) -> str: method ordinal_floor_number (line 1750) | def ordinal_floor_number(self) -> str: method floor_unit_number (line 1753) | def floor_unit_number(self) -> str: method building_unit_number (line 1756) | def building_unit_number(self) -> str: method building_name (line 1759) | def building_name(self) -> str: method building_name_suffix (line 1762) | def building_name_suffix(self) -> str: method subdivision_block_number (line 1765) | def subdivision_block_number(self) -> str: method subdivision_lot_number (line 1768) | def subdivision_lot_number(self) -> str: method subdivision_unit_number (line 1771) | def subdivision_unit_number(self) -> str: method subdivision_name (line 1774) | def subdivision_name(self) -> str: method subdivision_name_suffix (line 1777) | def subdivision_name_suffix(self) -> str: method metro_manila_lgu (line 1780) | def metro_manila_lgu(self) -> str: method province_lgu (line 1783) | def province_lgu(self) -> str: method metro_manila_address (line 1786) | def metro_manila_address(self) -> str: method luzon_province_address (line 1789) | def luzon_province_address(self) -> str: method visayas_province_address (line 1792) | def visayas_province_address(self) -> str: method mindanao_province_address (line 1795) | def mindanao_province_address(self) -> str: method address (line 1798) | def address(self) -> str: FILE: faker/providers/address/en_US/__init__.py class Provider (line 7) | class Provider(AddressProvider): method city_prefix (line 492) | def city_prefix(self) -> str: method secondary_address (line 495) | def secondary_address(self) -> str: method administrative_unit (line 498) | def administrative_unit(self) -> str: method state_abbr (line 503) | def state_abbr( method postcode (line 526) | def postcode(self) -> str: method zipcode_plus4 (line 529) | def zipcode_plus4(self) -> str: method postcode_in_state (line 532) | def postcode_in_state(self, state_abbr: Optional[str] = None) -> str: method military_ship (line 561) | def military_ship(self) -> str: method military_state (line 567) | def military_state(self) -> str: method military_apo (line 573) | def military_apo(self) -> str: method military_dpo (line 579) | def military_dpo(self) -> str: method zipcode (line 586) | def zipcode(self) -> str: method zipcode_in_state (line 589) | def zipcode_in_state(self, state_abbr: Optional[str] = None) -> str: method postalcode (line 592) | def postalcode(self) -> str: method postalcode_in_state (line 595) | def postalcode_in_state(self, state_abbr: Optional[str] = None) -> str: method postalcode_plus4 (line 598) | def postalcode_plus4(self) -> str: FILE: faker/providers/address/es/__init__.py class Provider (line 4) | class Provider(AddressProvider): FILE: faker/providers/address/es_AR/__init__.py class Provider (line 7) | class Provider(AddressProvider): method provinces_code (line 125) | def provinces_code(self) -> str: method province (line 131) | def province(self) -> str: method municipality_code (line 139) | def municipality_code(self) -> str: method municipality (line 145) | def municipality(self) -> str: method street_prefix (line 153) | def street_prefix(self) -> str: method street_procer (line 159) | def street_procer(self) -> str: method street_municipality (line 165) | def street_municipality(self) -> str: method street_province (line 171) | def street_province(self) -> str: method street_suffix (line 177) | def street_suffix(self) -> str: method street_name (line 183) | def street_name(self) -> str: method building_number (line 190) | def building_number(self) -> str: method secondary_address (line 196) | def secondary_address(self) -> str: method street_address (line 202) | def street_address(self) -> str: method postcode (line 208) | def postcode(self) -> str: method address (line 214) | def address(self) -> str: FILE: faker/providers/address/es_CL/__init__.py class Provider (line 8) | class Provider(AddressProvider): method commune (line 594) | def commune(self) -> str: method province (line 597) | def province(self) -> str: method region (line 600) | def region(self) -> str: method commune_code (line 603) | def commune_code(self) -> str: method province_code (line 606) | def province_code(self) -> str: method region_code (line 609) | def region_code(self) -> str: method common_street_name (line 612) | def common_street_name(self) -> str: method plant_street_name (line 615) | def plant_street_name(self) -> str: method historic_people_street_name (line 618) | def historic_people_street_name(self) -> str: method street_prefix (line 622) | def street_prefix(self) -> str: method secondary_address (line 625) | def secondary_address(self) -> str: method commune_and_region (line 628) | def commune_and_region(self) -> str: method road_name (line 636) | def road_name(self) -> str: method highway_name (line 640) | def highway_name(self) -> str: method postcode (line 644) | def postcode(self) -> str: FILE: faker/providers/address/es_CO/__init__.py class Provider (line 7) | class Provider(AddressProvider): method department_code (line 1244) | def department_code(self) -> str: method department (line 1250) | def department(self) -> str: method municipality_code (line 1258) | def municipality_code(self) -> str: method municipality (line 1264) | def municipality(self) -> str: method street_prefix (line 1272) | def street_prefix(self) -> str: method street_suffix (line 1278) | def street_suffix(self) -> str: method street_name (line 1284) | def street_name(self) -> str: method building_number (line 1291) | def building_number(self) -> str: method secondary_address (line 1297) | def secondary_address(self) -> str: method street_address (line 1303) | def street_address(self) -> str: method postcode (line 1309) | def postcode(self) -> str: method address (line 1315) | def address(self) -> str: FILE: faker/providers/address/es_ES/__init__.py class Provider (line 4) | class Provider(AddressProvider): method state_name (line 120) | def state_name(self) -> str: method street_prefix (line 123) | def street_prefix(self) -> str: method secondary_address (line 126) | def secondary_address(self) -> str: method administrative_unit (line 129) | def administrative_unit(self) -> str: method region (line 134) | def region(self) -> str: method postcode (line 137) | def postcode(self) -> str: FILE: faker/providers/address/es_MX/__init__.py class Provider (line 6) | class Provider(AddressProvider): method city_prefix (line 130) | def city_prefix(self) -> str: method city_suffix (line 133) | def city_suffix(self) -> str: method city_adjective (line 136) | def city_adjective(self) -> str: method street_prefix (line 139) | def street_prefix(self) -> str: method secondary_address (line 145) | def secondary_address(self) -> str: method administrative_unit (line 151) | def administrative_unit(self) -> str: method state_abbr (line 159) | def state_abbr(self) -> str: FILE: faker/providers/address/fa_IR/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_prefix (line 287) | def city_prefix(self) -> str: method secondary_address (line 290) | def secondary_address(self) -> str: method administrative_unit (line 293) | def administrative_unit(self) -> str: FILE: faker/providers/address/fi_FI/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_prefix (line 791) | def street_prefix(self) -> str: method city_name (line 794) | def city_name(self) -> str: method administrative_unit (line 797) | def administrative_unit(self) -> str: FILE: faker/providers/address/fil_PH/__init__.py class Provider (line 4) | class Provider(EnPhAddressProvider): FILE: faker/providers/address/fr_CA/__init__.py class Provider (line 6) | class Provider(EnCaProvider): method __init__ (line 74) | def __init__(self, *args: Any, **kwargs: Any) -> None: method street_prefix (line 77) | def street_prefix(self) -> str: FILE: faker/providers/address/fr_CH/__init__.py class Provider (line 6) | class Provider(AddressProvider): method street_prefix (line 334) | def street_prefix(self) -> str: method city_prefix (line 340) | def city_prefix(self) -> str: method canton (line 346) | def canton(self) -> Tuple[str, str]: method administrative_unit (line 353) | def administrative_unit(self) -> str: method canton_code (line 362) | def canton_code(self) -> str: FILE: faker/providers/address/fr_FR/__init__.py class Provider (line 6) | class Provider(AddressProvider): method street_prefix (line 428) | def street_prefix(self) -> str: method city_prefix (line 434) | def city_prefix(self) -> str: method administrative_unit (line 440) | def administrative_unit(self) -> str: method department (line 448) | def department(self) -> Tuple[str, str]: method department_name (line 455) | def department_name(self) -> str: method department_number (line 462) | def department_number(self) -> str: method postcode (line 470) | def postcode(self) -> str: FILE: faker/providers/address/he_IL/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_name (line 867) | def city_name(self) -> str: method street_title (line 870) | def street_title(self) -> str: FILE: faker/providers/address/hi_IN/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_name (line 238) | def city_name(self) -> str: method administrative_unit (line 241) | def administrative_unit(self) -> str: FILE: faker/providers/address/hr_HR/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_name (line 579) | def city_name(self) -> str: method street_name (line 582) | def street_name(self) -> str: method administrative_unit (line 585) | def administrative_unit(self) -> str: FILE: faker/providers/address/hu_HU/__init__.py class Provider (line 6) | class Provider(AddressProvider): method administrative_unit (line 438) | def administrative_unit(self) -> str: method street_address_with_county (line 443) | def street_address_with_county(self) -> str: method city_prefix (line 446) | def city_prefix(self) -> str: method city_part (line 449) | def city_part(self) -> str: method real_city_name (line 452) | def real_city_name(self) -> str: method frequent_street_name (line 455) | def frequent_street_name(self) -> str: method postcode (line 458) | def postcode(self) -> str: method street_name (line 464) | def street_name(self) -> str: method building_number (line 467) | def building_number(self) -> str: method city (line 474) | def city(self) -> str: FILE: faker/providers/address/hy_AM/__init__.py class Provider (line 6) | class Provider(AddressProvider): method city (line 603) | def city(self) -> str: method city_prefix (line 609) | def city_prefix(self) -> str: method postcode (line 615) | def postcode(self) -> str: method postcode_in_state (line 621) | def postcode_in_state(self, state_abbr: Optional[str] = None) -> str: method secondary_address (line 644) | def secondary_address(self) -> str: method administrative_unit (line 650) | def administrative_unit(self) -> str: method state_abbr (line 658) | def state_abbr(self) -> str: method street (line 664) | def street(self) -> str: method street_prefix (line 670) | def street_prefix(self) -> str: method village (line 676) | def village(self) -> str: method village_prefix (line 682) | def village_prefix(self) -> str: FILE: faker/providers/address/id_ID/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street (line 505) | def street(self) -> str: method street_prefix_short (line 508) | def street_prefix_short(self) -> str: method street_prefix_long (line 511) | def street_prefix_long(self) -> str: method city_name (line 514) | def city_name(self) -> str: method administrative_unit (line 517) | def administrative_unit(self) -> str: method state_abbr (line 522) | def state_abbr(self) -> str: method country (line 525) | def country(self) -> str: FILE: faker/providers/address/it_IT/__init__.py function getcities (line 6) | def getcities(fulldict): class Provider (line 10) | class Provider(AddressProvider): method postcode_city_province (line 17621) | def postcode_city_province(self) -> str: method city (line 17629) | def city(self) -> str: method city_prefix (line 17635) | def city_prefix(self) -> str: method secondary_address (line 17641) | def secondary_address(self) -> str: method administrative_unit (line 17647) | def administrative_unit(self) -> str: method state_abbr (line 17655) | def state_abbr(self) -> str: FILE: faker/providers/address/ja_JP/__init__.py class Provider (line 4) | class Provider(AddressProvider): method administrative_unit (line 592) | def administrative_unit(self) -> str: method city (line 600) | def city(self) -> str: method town (line 606) | def town(self) -> str: method chome (line 612) | def chome(self) -> str: method ban (line 618) | def ban(self) -> str: method gou (line 624) | def gou(self) -> str: method building_name (line 630) | def building_name(self) -> str: method postcode (line 636) | def postcode(self) -> str: method zipcode (line 645) | def zipcode(self) -> str: FILE: faker/providers/address/ka_GE/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_title (line 1293) | def street_title(self) -> str: method city_name (line 1296) | def city_name(self) -> str: FILE: faker/providers/address/ko_KR/__init__.py class Provider (line 8) | class Provider(AddressProvider): method land_number (line 478) | def land_number(self) -> str: method land_address (line 484) | def land_address(self) -> str: method road_number (line 491) | def road_number(self) -> str: method road_address (line 497) | def road_address(self) -> str: method address_detail (line 504) | def address_detail(self) -> str: method road (line 511) | def road(self) -> str: method road_name (line 518) | def road_name(self) -> str: method road_suffix (line 524) | def road_suffix(self) -> str: method building_number (line 530) | def building_number(self) -> str: method building_number_underground (line 550) | def building_number_underground(self) -> str: method building_number_segregated (line 558) | def building_number_segregated(self) -> str: method metropolitan_city (line 568) | def metropolitan_city(self) -> str: method administrative_unit (line 574) | def administrative_unit(self) -> str: method city (line 582) | def city(self) -> str: method borough (line 589) | def borough(self) -> str: method town (line 595) | def town(self) -> str: method town_suffix (line 602) | def town_suffix(self) -> str: method building_name (line 608) | def building_name(self) -> str: method building_suffix (line 615) | def building_suffix(self) -> str: method building_dong (line 621) | def building_dong(self) -> str: method old_postal_code (line 627) | def old_postal_code(self) -> str: method postcode (line 633) | def postcode(self) -> str: method postal_code (line 639) | def postal_code(self) -> str: FILE: faker/providers/address/ne_NP/__init__.py class Provider (line 4) | class Provider(AddressProvider): method administrative_unit (line 597) | def administrative_unit(self) -> str: method district (line 605) | def district(self) -> str: method city (line 611) | def city(self) -> str: method building_prefix (line 617) | def building_prefix(self) -> str: FILE: faker/providers/address/nl_BE/__init__.py class Provider (line 4) | class Provider(AddressProvider): method administrative_unit (line 3041) | def administrative_unit(self) -> str: method city (line 3046) | def city(self) -> str: FILE: faker/providers/address/nl_NL/__init__.py class Provider (line 4) | class Provider(AddressProvider): method administrative_unit (line 2731) | def administrative_unit(self) -> str: method city (line 2736) | def city(self) -> str: FILE: faker/providers/address/no_NO/__init__.py class Provider (line 6) | class Provider(AddressProvider): method building_number (line 106) | def building_number(self) -> str: method city_suffix (line 110) | def city_suffix(self) -> str: method street_suffix (line 113) | def street_suffix(self) -> str: FILE: faker/providers/address/pl_PL/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_prefix (line 656) | def street_prefix(self) -> str: method street_prefix_feminine (line 663) | def street_prefix_feminine(self) -> str: method street_prefix_masculine (line 670) | def street_prefix_masculine(self) -> str: method street_prefix_short (line 677) | def street_prefix_short(self) -> str: method street_prefix_feminine_short (line 684) | def street_prefix_feminine_short(self) -> str: method street_prefix_masculine_short (line 691) | def street_prefix_masculine_short(self) -> str: method street_name (line 698) | def street_name(self) -> str: method street_name_adjective_feminine (line 705) | def street_name_adjective_feminine(self) -> str: method street_name_universal (line 712) | def street_name_universal(self) -> str: method city (line 719) | def city(self) -> str: method administrative_unit (line 726) | def administrative_unit(self) -> str: method postcode (line 732) | def postcode(self) -> str: method zipcode (line 738) | def zipcode(self) -> str: method postalcode (line 744) | def postalcode(self) -> str: FILE: faker/providers/address/pt_BR/__init__.py class Provider (line 6) | class Provider(AddressProvider): method street_prefix (line 880) | def street_prefix(self) -> str: method estado (line 886) | def estado(self) -> Tuple[str, str]: method estado_nome (line 893) | def estado_nome(self) -> str: method estado_sigla (line 900) | def estado_sigla(self) -> str: method bairro (line 907) | def bairro(self) -> str: method postcode (line 915) | def postcode(self, formatted: bool = True) -> str: method neighborhood (line 926) | def neighborhood(self) -> str: method administrative_unit (line 929) | def administrative_unit(self) -> str: method state_abbr (line 934) | def state_abbr(self) -> str: FILE: faker/providers/address/pt_PT/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_prefix (line 1556) | def street_prefix(self) -> str: method city_name (line 1562) | def city_name(self) -> str: method administrative_unit (line 1568) | def administrative_unit(self) -> str: method concelho (line 1576) | def concelho(self) -> str: method freguesia (line 1582) | def freguesia(self) -> str: method place_name (line 1588) | def place_name(self) -> str: FILE: faker/providers/address/ro_RO/__init__.py class Provider (line 6) | class Provider(AddressProvider): method street_prefix (line 408) | def street_prefix(self) -> str: method secondary_address (line 414) | def secondary_address(self) -> str: method city_name (line 420) | def city_name(self) -> str: method city_with_postcode (line 423) | def city_with_postcode(self) -> str: method administrative_unit (line 426) | def administrative_unit(self) -> str: method state_abbr (line 434) | def state_abbr(self) -> str: FILE: faker/providers/address/ru_RU/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_prefix (line 1548) | def city_prefix(self) -> str: method city_name (line 1551) | def city_name(self) -> str: method country (line 1554) | def country(self) -> str: method administrative_unit (line 1557) | def administrative_unit(self) -> str: method street_suffix (line 1572) | def street_suffix(self) -> str: method street_title (line 1575) | def street_title(self) -> str: method street_name (line 1578) | def street_name(self) -> str: FILE: faker/providers/address/sk_SK/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_suffix_short (line 5248) | def street_suffix_short(self) -> str: method street_suffix_long (line 5251) | def street_suffix_long(self) -> str: method city_name (line 5254) | def city_name(self) -> str: method street_name (line 5257) | def street_name(self) -> str: method administrative_unit (line 5260) | def administrative_unit(self) -> str: method city_with_postcode (line 5265) | def city_with_postcode(self) -> str: FILE: faker/providers/address/sl_SI/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_name (line 1592) | def city_name(self) -> str: method street_name (line 1595) | def street_name(self) -> str: method administrative_unit (line 1598) | def administrative_unit(self) -> str: FILE: faker/providers/address/sv_SE/__init__.py class Provider (line 4) | class Provider(AddressProvider): method street_prefix (line 366) | def street_prefix(self) -> str: method city_name (line 369) | def city_name(self) -> str: method administrative_unit (line 372) | def administrative_unit(self) -> str: FILE: faker/providers/address/ta_IN/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_name (line 423) | def city_name(self) -> str: method administrative_unit (line 426) | def administrative_unit(self) -> str: FILE: faker/providers/address/th/__init__.py class Provider (line 4) | class Provider(AddressProvider): FILE: faker/providers/address/th_TH/__init__.py class Provider (line 6) | class Provider(AddressProvider): method street_prefix (line 356) | def street_prefix(self) -> str: method administrative_unit (line 362) | def administrative_unit(self) -> str: method amphoe (line 370) | def amphoe(self) -> str: method tambon (line 378) | def tambon(self) -> str: method city_name (line 389) | def city_name(self) -> str: FILE: faker/providers/address/tl_PH/__init__.py class Provider (line 4) | class Provider(EnPhAddressProvider): FILE: faker/providers/address/uk_UA/__init__.py class Provider (line 4) | class Provider(AddressProvider): method city_prefix (line 2156) | def city_prefix(self) -> str: method city_name (line 2162) | def city_name(self) -> str: method postcode (line 2168) | def postcode(self) -> str: method street_prefix (line 2176) | def street_prefix(self) -> str: method street_name (line 2182) | def street_name(self) -> str: method street_title (line 2188) | def street_title(self) -> str: method region (line 2196) | def region(self) -> str: FILE: faker/providers/address/vi_VN/__init__.py class Provider (line 9) | class Provider(AddressProvider): method city_prefix (line 259) | def city_prefix(self) -> str: method administrative_unit (line 263) | def administrative_unit(self) -> str: method state_abbr (line 269) | def state_abbr(self) -> str: method postcode (line 277) | def postcode(self) -> str: method postcode_in_state (line 281) | def postcode_in_state(self, state_abbr: Optional[str] = None) -> str: FILE: faker/providers/address/zh_CN/__init__.py class Provider (line 4) | class Provider(AddressProvider): method building_number (line 437) | def building_number(self) -> str: method city_name (line 440) | def city_name(self) -> str: method administrative_unit (line 443) | def administrative_unit(self) -> str: method district (line 448) | def district(self) -> str: FILE: faker/providers/address/zh_TW/__init__.py class Provider (line 4) | class Provider(AddressProvider): method secondary_address (line 369) | def secondary_address(self) -> str: method building_number (line 372) | def building_number(self) -> str: method street_name (line 375) | def street_name(self) -> str: method street_name_suffix (line 378) | def street_name_suffix(self) -> str: method city_name (line 381) | def city_name(self) -> str: method city_name_suffix (line 384) | def city_name_suffix(self) -> str: method section_number (line 387) | def section_number(self) -> str: FILE: faker/providers/address/zu_ZA/__init__.py class Provider (line 4) | class Provider(AddressProvider): method secondary_address (line 178) | def secondary_address(self) -> str: method building_number (line 184) | def building_number(self) -> str: method street_name (line 190) | def street_name(self) -> str: method street_suffix (line 196) | def street_suffix(self) -> str: method city_name (line 202) | def city_name(self) -> str: method city_name_suffix (line 208) | def city_name_suffix(self) -> str: method section_number (line 214) | def section_number(self) -> str: method province (line 220) | def province(self) -> str: method administrative_unit (line 226) | def administrative_unit(self) -> str: FILE: faker/providers/automotive/__init__.py function calculate_vin_str_weight (line 10) | def calculate_vin_str_weight(s: str, weight_factor: list) -> int: class Provider (line 40) | class Provider(BaseProvider): method license_plate (line 45) | def license_plate(self) -> str: method vin (line 54) | def vin(self) -> str: FILE: faker/providers/automotive/ar_BH/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/ar_JO/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): method initials (line 17) | def initials(self) -> str: method license_plate (line 50) | def license_plate(self) -> str: FILE: faker/providers/automotive/ar_PS/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): method district (line 42) | def district(self) -> str: method license_plate (line 61) | def license_plate(self) -> str: FILE: faker/providers/automotive/ar_SA/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate_en (line 53) | def license_plate_en(self) -> str: method license_plate_ar (line 60) | def license_plate_ar(self) -> str: method _translate_license_plate (line 71) | def _translate_license_plate(self, license_plate: str) -> str: method license_plate (line 88) | def license_plate(self, ar: bool = True) -> str: FILE: faker/providers/automotive/az_AZ/__init__.py class Provider (line 6) | class Provider(AutoProvider): method license_plate (line 88) | def license_plate(self) -> str: FILE: faker/providers/automotive/bn_BD/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method city_name (line 222) | def city_name(self) -> str: method vehicle_category_letter (line 228) | def vehicle_category_letter(self) -> str: method vehicle_category_number (line 234) | def vehicle_category_number(self) -> str: method vehicle_serial_number (line 240) | def vehicle_serial_number(self) -> str: method license_plate (line 247) | def license_plate(self) -> str: FILE: faker/providers/automotive/da_DK/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/de_AT/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 162) | def license_plate(self) -> str: FILE: faker/providers/automotive/de_CH/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): method license_plate (line 41) | def license_plate(self) -> str: FILE: faker/providers/automotive/de_DE/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 423) | def license_plate(self) -> str: FILE: faker/providers/automotive/el_GR/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 16) | def license_plate(self) -> str: FILE: faker/providers/automotive/en_CA/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/en_GB/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/en_NZ/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/en_PH/__init__.py class Provider (line 7) | class Provider(AutomotiveProvider): method _license_plate (line 33) | def _license_plate(self, license_format: List[str]) -> str: method protocol_license_plate (line 36) | def protocol_license_plate(self) -> str: method motorcycle_license_plate (line 45) | def motorcycle_license_plate(self) -> str: method automobile_license_plate (line 54) | def automobile_license_plate(self) -> str: method license_plate (line 63) | def license_plate(self) -> str: FILE: faker/providers/automotive/en_US/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/es_AR/__init__.py class Provider (line 7) | class Provider(AutomotiveProvider): method license_plate_old (line 66) | def license_plate_old(self) -> str: method license_plate_mercosur (line 74) | def license_plate_mercosur(self) -> str: method license_plate (line 85) | def license_plate(self) -> str: FILE: faker/providers/automotive/es_CL/__init__.py class Provider (line 8) | class Provider(AutomotiveProvider): method license_plate_old (line 31) | def license_plate_old(self) -> str: method license_plate_new (line 44) | def license_plate_new(self) -> str: method license_plate_police (line 50) | def license_plate_police(self) -> str: method license_plate_temporary (line 54) | def license_plate_temporary(self) -> str: method license_plate_diplomatic (line 58) | def license_plate_diplomatic(self) -> str: method license_plate (line 62) | def license_plate(self) -> str: FILE: faker/providers/automotive/es_CO/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/es_ES/__init__.py class Provider (line 8) | class Provider(AutomotiveProvider): method license_plate_unified (line 92) | def license_plate_unified(self) -> str: method license_plate_by_province (line 101) | def license_plate_by_province(self, province_prefix: Optional[str] = N... method license_plate (line 116) | def license_plate(self) -> str: FILE: faker/providers/automotive/et_EE/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/fi_FI/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/fil_PH/__init__.py class Provider (line 4) | class Provider(EnPhAutomotiveProvider): FILE: faker/providers/automotive/fr_FR/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/he_IL/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/hu_HU/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/id_ID/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/it_IT/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/ja_JP/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 87) | def license_plate(self) -> str: method area_name (line 92) | def area_name(self) -> str: method classification_number (line 95) | def classification_number(self) -> str: method kana (line 98) | def kana(self) -> str: method serial_number (line 101) | def serial_number(self) -> str: FILE: faker/providers/automotive/ko_KR/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): method license_plate (line 49) | def license_plate(self) -> str: FILE: faker/providers/automotive/lt_LT/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/nl_BE/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/nl_NL/__init__.py class Provider (line 7) | class Provider(AutomotiveProvider): method license_plate_motorbike (line 49) | def license_plate_motorbike(self) -> str: method license_plate_car (line 56) | def license_plate_car(self) -> str: method license_plate (line 70) | def license_plate(self) -> str: FILE: faker/providers/automotive/no_NO/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/pl_PL/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate_regex_formats (line 31) | def license_plate_regex_formats(self) -> List[str]: FILE: faker/providers/automotive/pt_BR/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/pt_PT/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/ro_RO/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 59) | def license_plate(self) -> str: FILE: faker/providers/automotive/ru_RU/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): method license_plate (line 294) | def license_plate(self) -> str: method plate_letter (line 299) | def plate_letter(self) -> str: method plate_number (line 303) | def plate_number(self) -> str: method plate_number_extra (line 307) | def plate_number_extra(self) -> str: method plate_number_special (line 311) | def plate_number_special(self) -> str: method plate_suffix (line 315) | def plate_suffix(self) -> str: method vehicle_category (line 319) | def vehicle_category(self) -> str: FILE: faker/providers/automotive/sk_SK/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 93) | def license_plate(self) -> str: FILE: faker/providers/automotive/sq_AL/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/sv_SE/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/automotive/th_TH/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 31) | def license_plate(self) -> str: FILE: faker/providers/automotive/tl_PH/__init__.py class Provider (line 4) | class Provider(EnPhAutomotiveProvider): FILE: faker/providers/automotive/tr_TR/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 24) | def license_plate(self) -> str: FILE: faker/providers/automotive/uk_UA/__init__.py class Provider (line 8) | class Provider(AutomotiveProvider): method __get_random_region_code (line 202) | def __get_random_region_code(self, region_name: Optional[str] = None) ... method license_plate (line 213) | def license_plate(self, region_name: Optional[str] = None, temporary_p... method plate_region_code (line 236) | def plate_region_code(self, region_name: Optional[str] = None) -> str: method plate_letter_prefix (line 246) | def plate_letter_prefix(self, region_name: Optional[str] = None) -> str: method plate_letter_suffix (line 256) | def plate_letter_suffix(self) -> str: method plate_number (line 264) | def plate_number(self) -> str: method diplomatic_license_plate (line 272) | def diplomatic_license_plate(self) -> str: method vehicle_category (line 285) | def vehicle_category(self) -> str: FILE: faker/providers/automotive/vi_VN/__init__.py class Provider (line 6) | class Provider(AutomotiveProvider): method license_plate (line 17) | def license_plate(self) -> str: FILE: faker/providers/automotive/zh_CN/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): method license_plate (line 44) | def license_plate(self) -> str: FILE: faker/providers/automotive/zh_TW/__init__.py class Provider (line 4) | class Provider(AutomotiveProvider): FILE: faker/providers/bank/__init__.py class Provider (line 14) | class Provider(BaseProvider): method aba (line 34) | def aba(self) -> str: method bank_country (line 47) | def bank_country(self) -> str: method bank (line 51) | def bank(self) -> str: method bban (line 61) | def bban(self) -> str: method iban (line 66) | def iban(self) -> str: method swift8 (line 77) | def swift8(self, use_dataset: bool = False) -> str: method swift11 (line 89) | def swift11(self, primary: bool = False, use_dataset: bool = False) ->... method swift (line 102) | def swift( FILE: faker/providers/bank/az_AZ/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/bn_BD/__init__.py class Provider (line 6) | class Provider(BankProvider): method swift8 (line 76) | def swift8(self, use_dataset: bool = True) -> str: method swift11 (line 79) | def swift11(self, primary: bool = False, use_dataset: bool = True) -> ... method swift (line 82) | def swift(self, length: Optional[int] = None, primary: bool = False, u... FILE: faker/providers/bank/cs_CZ/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/da_DK/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/de_AT/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/de_CH/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/de_DE/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/el_GR/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/en_GB/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/en_IE/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/en_IN/__init__.py class Provider (line 4) | class Provider(BankProvider): method bank (line 45) | def bank(self) -> str: FILE: faker/providers/bank/en_PH/__init__.py class Provider (line 8) | class Provider(BankProvider): method bban (line 83) | def bban(self) -> str: method iban (line 98) | def iban(self) -> str: FILE: faker/providers/bank/es_AR/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/es_ES/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/es_MX/__init__.py function get_clabe_control_digit (line 6) | def get_clabe_control_digit(clabe: str) -> int: function is_valid_clabe (line 21) | def is_valid_clabe(clabe: str) -> bool: class Provider (line 33) | class Provider(BankProvider): method clabe (line 254) | def clabe(self, bank_code: Optional[int] = None) -> str: FILE: faker/providers/bank/fa_IR/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/fi_FI/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/fil_PH/__init__.py class Provider (line 4) | class Provider(EnPhBankProvider): FILE: faker/providers/bank/fr_CH/__init__.py class Provider (line 4) | class Provider(DeChBankProvider): FILE: faker/providers/bank/fr_FR/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/it_CH/__init__.py class Provider (line 4) | class Provider(DeChBankProvider): FILE: faker/providers/bank/it_IT/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/nl_BE/__init__.py class Provider (line 4) | class Provider(BankProvider): method bban (line 66) | def bban(self) -> str: method iban (line 72) | def iban(self) -> str: method _generate_account_number (line 78) | def _generate_account_number(self) -> str: method _calculate_mod97 (line 82) | def _calculate_mod97(self, account_number: str) -> str: method _calculate_iban_check_digits (line 87) | def _calculate_iban_check_digits(self, bban: str) -> str: FILE: faker/providers/bank/nl_NL/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/no_NO/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/pl_PL/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/pt_PT/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/ro_RO/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/ru_RU/__init__.py class Provider (line 4) | class Provider(BankProvider): method bic (line 724) | def bic(self) -> str: method correspondent_account (line 735) | def correspondent_account(self) -> str: method checking_account (line 745) | def checking_account(self) -> str: FILE: faker/providers/bank/sk_SK/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/th_TH/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/tl_PH/__init__.py class Provider (line 4) | class Provider(EnPhBankProvider): FILE: faker/providers/bank/tr_TR/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/uk_UA/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/bank/zh_CN/__init__.py class Provider (line 4) | class Provider(BankProvider): FILE: faker/providers/barcode/__init__.py class Provider (line 10) | class Provider(BaseProvider): method _ean (line 20) | def _ean(self, length: int = 13, prefixes: PrefixType = ()) -> str: method ean (line 41) | def ean(self, length: int = 13, prefixes: PrefixType = ()) -> str: method ean8 (line 57) | def ean8(self, prefixes: PrefixType = ()) -> str: method ean13 (line 72) | def ean13(self, prefixes: PrefixType = ()) -> str: method localized_ean (line 92) | def localized_ean(self, length: int = 13) -> str: method localized_ean8 (line 108) | def localized_ean8(self) -> str: method localized_ean13 (line 116) | def localized_ean13(self) -> str: FILE: faker/providers/barcode/en_CA/__init__.py class Provider (line 6) | class Provider(EnUsBarcodeProvider): FILE: faker/providers/barcode/en_US/__init__.py class Provider (line 10) | class Provider(BarcodeProvider): method ean13 (line 48) | def ean13(self, prefixes: PrefixType = (), leading_zero: Optional[bool... method _convert_upc_a2e (line 87) | def _convert_upc_a2e(self, upc_a: str) -> str: method _upc_ae (line 114) | def _upc_ae(self, base: Optional[str] = None, number_system_digit: Opt... method upc_a (line 149) | def upc_a( method upc_e (line 194) | def upc_e( FILE: faker/providers/barcode/es_ES/__init__.py class Provider (line 4) | class Provider(BarcodeProvider): FILE: faker/providers/barcode/fr_CA/__init__.py class Provider (line 4) | class Provider(BarcodeProvider): FILE: faker/providers/barcode/ja_JP/__init__.py class Provider (line 4) | class Provider(BarcodeProvider): method jan (line 26) | def jan(self, length: int = 13) -> str: method jan8 (line 37) | def jan8(self) -> str: method jan13 (line 44) | def jan13(self) -> str: FILE: faker/providers/color/__init__.py class Provider (line 12) | class Provider(BaseProvider): method color_name (line 178) | def color_name(self) -> str: method safe_color_name (line 186) | def safe_color_name(self) -> str: method hex_color (line 194) | def hex_color(self) -> str: method safe_hex_color (line 202) | def safe_hex_color(self) -> str: method rgb_color (line 210) | def rgb_color(self) -> str: method rgb_css_color (line 218) | def rgb_css_color(self) -> str: method _random_color (line 227) | def _random_color(self): method color (line 230) | def color( method color_rgb (line 276) | def color_rgb( method color_rgb_float (line 290) | def color_rgb_float( method color_hsl (line 304) | def color_hsl( method color_hsv (line 318) | def color_hsv( FILE: faker/providers/color/ar_PS/__init__.py class Provider (line 6) | class Provider(ColorProvider): FILE: faker/providers/color/az_AZ/__init__.py class Provider (line 6) | class Provider(ColorProvider): FILE: faker/providers/color/bg_BG/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/bn_BD/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/color.py class RandomColor (line 132) | class RandomColor: method __init__ (line 139) | def __init__(self, generator: Optional["Generator"] = None, seed: Opti... method generate (line 150) | def generate( method generate_hsv (line 168) | def generate_hsv( method generate_rgb (line 185) | def generate_rgb( method generate_rgb_float (line 193) | def generate_rgb_float( method generate_hsl (line 201) | def generate_hsl( method pick_hue (line 209) | def pick_hue(self, hue: Optional[HueType]) -> int: method pick_saturation (line 220) | def pick_saturation(self, hue: int, hue_name: Optional[HueType], lumin... method pick_brightness (line 241) | def pick_brightness(self, h: int, s: int, luminosity: Optional[str]) -... method set_format (line 259) | def set_format(self, hsv: Tuple[int, int, int], color_format: ColorFor... method get_minimum_brightness (line 278) | def get_minimum_brightness(self, h: int, s: int) -> int: method _validate_color_input (line 294) | def _validate_color_input(self, color_input: HueType) -> Tuple[int, int]: method get_hue_range (line 304) | def get_hue_range(self, color_input: Optional[HueType]) -> Tuple[int, ... method get_saturation_range (line 327) | def get_saturation_range(self, hue: int) -> Tuple[int, int]: method get_color_info (line 332) | def get_color_info(self, hue: int) -> Dict[str, Sequence[Tuple[int, in... method random_within (line 345) | def random_within(self, r: Sequence[int]) -> int: method hsv_to_rgb_float (line 350) | def hsv_to_rgb_float(cls, hsv: Tuple[int, int, int]) -> Tuple[float, f... method hsv_to_rgb (line 363) | def hsv_to_rgb(cls, hsv: Tuple[int, int, int]) -> Tuple[int, int, int]: method hsv_to_hsl (line 373) | def hsv_to_hsl(cls, hsv: Tuple[int, int, int]) -> Tuple[int, int, int]: FILE: faker/providers/color/cs_CZ/__init__.py class Provider (line 4) | class Provider(ColorProvider): FILE: faker/providers/color/da_DK/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/de/__init__.py class Provider (line 10) | class Provider(ColorProvider): FILE: faker/providers/color/de_AT/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/color/de_CH/__init__.py class Provider (line 8) | class Provider(BaseProvider): FILE: faker/providers/color/de_DE/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/color/el_GR/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/en_US/__init__.py class Provider (line 4) | class Provider(ColorProvider): FILE: faker/providers/color/es/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/es_CL/__init__.py class Provider (line 6) | class Provider(ColorProvider): FILE: faker/providers/color/es_ES/__init__.py class Provider (line 6) | class Provider(ColorProvider): FILE: faker/providers/color/fa_IR/__init__.py class Provider (line 6) | class Provider(ColorProvider): FILE: faker/providers/color/fr_FR/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/he_IL/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/hr_HR/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/hu_HU/__init__.py class Provider (line 4) | class Provider(ColorProvider): FILE: faker/providers/color/hy_AM/__init__.py class Provider (line 6) | class Provider(ColorProvider): FILE: faker/providers/color/id_ID/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/ka_GE/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/pt_BR/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/ru_RU/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/sk_SK/__init__.py class Provider (line 4) | class Provider(ColorProvider): FILE: faker/providers/color/th_TH/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/uk_UA/__init__.py class Provider (line 6) | class Provider(ColorProvider): FILE: faker/providers/color/uz_UZ/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/color/vi_VN/__init__.py class Provider (line 8) | class Provider(ColorProvider): FILE: faker/providers/company/__init__.py class Provider (line 8) | class Provider(BaseProvider): method company (line 508) | def company(self) -> str: method company_suffix (line 515) | def company_suffix(self) -> str: method catch_phrase (line 521) | def catch_phrase(self) -> str: method bs (line 527) | def bs(self) -> str: FILE: faker/providers/company/az_AZ/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method large_company (line 48) | def large_company(self) -> str: FILE: faker/providers/company/bg_BG/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/bn_BD/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company (line 636) | def company(self) -> str: FILE: faker/providers/company/cs_CZ/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/da_DK/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/de_AT/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/de_CH/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/de_DE/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/el_GR/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/en_PH/__init__.py class Provider (line 6) | class Provider(CompanyProvider): method company_type (line 133) | def company_type(self) -> str: method random_company_adjective (line 136) | def random_company_adjective(self) -> str: method random_company_noun_chain (line 139) | def random_company_noun_chain(self) -> str: method random_company_product (line 142) | def random_company_product(self) -> str: method random_company_acronym (line 145) | def random_company_acronym(self) -> str: FILE: faker/providers/company/en_US/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/es_CL/__init__.py class Provider (line 5) | class Provider(CompanyProvider): method company_prefix (line 438) | def company_prefix(self) -> str: FILE: faker/providers/company/es_ES/__init__.py class Provider (line 6) | class Provider(CompanyProvider): method company_type (line 110) | def company_type(self) -> str: method company_suffix (line 113) | def company_suffix(self) -> str: method random_name_complements (line 116) | def random_name_complements(self) -> str: method random_company_adjective (line 119) | def random_company_adjective(self) -> str: method random_company_acronym (line 122) | def random_company_acronym(self) -> str: method company_prefix (line 126) | def company_prefix(self) -> str: FILE: faker/providers/company/es_MX/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_prefix (line 435) | def company_prefix(self) -> str: FILE: faker/providers/company/fa_IR/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company (line 1112) | def company(self) -> str: FILE: faker/providers/company/fi_FI/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_business_id (line 22) | def company_business_id(self) -> str: method company_vat (line 53) | def company_vat(self) -> str: FILE: faker/providers/company/fil_PH/__init__.py class Provider (line 7) | class Provider(EnPhProvider): method random_noun_ish_good_trait (line 77) | def random_noun_ish_good_trait(self) -> str: method random_good_service_adjective (line 80) | def random_good_service_adjective(self) -> str: method random_good_service_adjective_chain (line 83) | def random_good_service_adjective_chain(self) -> str: method random_object_of_concern (line 87) | def random_object_of_concern(self) -> str: method english_catch_phrase (line 90) | def english_catch_phrase(self) -> str: method catch_phrase (line 93) | def catch_phrase(self) -> str: FILE: faker/providers/company/fr_CH/__init__.py class Provider (line 6) | class Provider(CompanyProvider): method ide (line 9) | def ide(self) -> str: FILE: faker/providers/company/fr_FR/__init__.py class Provider (line 8) | class Provider(CompanyProvider): method catch_phrase_noun (line 297) | def catch_phrase_noun(self) -> str: method catch_phrase_attribute (line 303) | def catch_phrase_attribute(self) -> str: method catch_phrase_verb (line 309) | def catch_phrase_verb(self) -> str: method catch_phrase (line 315) | def catch_phrase(self) -> str: method _is_catch_phrase_valid (line 333) | def _is_catch_phrase_valid(self, catch_phrase: str) -> bool: method siren (line 349) | def siren(self) -> str: method siret (line 357) | def siret(self, max_sequential_digits: int = 2) -> str: method company_vat (line 376) | def company_vat(self, siren: str = "") -> str: method ape_code (line 391) | def ape_code(self, version: Optional[str] = "naf-2003") -> str: method rcs_number (line 422) | def rcs_number(self, city: str = "", letter: str = "", siren: str = ""... FILE: faker/providers/company/hr_HR/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/hu_HU/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_suffix (line 14) | def company_suffix(self) -> str: FILE: faker/providers/company/hy_AM/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/id_ID/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_prefix (line 31) | def company_prefix(self) -> str: FILE: faker/providers/company/it_IT/__init__.py class Provider (line 6) | class Provider(CompanyProvider): method _random_vat_office (line 349) | def _random_vat_office(self) -> int: method company_vat (line 369) | def company_vat(self) -> str: FILE: faker/providers/company/ja_JP/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_prefix (line 27) | def company_prefix(self) -> str: method company_category (line 30) | def company_category(self) -> str: FILE: faker/providers/company/ko_KR/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_name_word (line 466) | def company_name_word(self) -> str: method brand_suffix (line 469) | def brand_suffix(self) -> str: FILE: faker/providers/company/nl_BE/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/nl_NL/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method large_company (line 511) | def large_company(self) -> str: method company_prefix (line 517) | def company_prefix(self) -> str: FILE: faker/providers/company/no_NO/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/pl_PL/__init__.py function regon_checksum (line 6) | def regon_checksum(digits: List[int]) -> int: function local_regon_checksum (line 24) | def local_regon_checksum(digits: List[int]) -> int: function company_vat_checksum (line 42) | def company_vat_checksum(digits: List[int]) -> int: class Provider (line 57) | class Provider(CompanyProvider): method company_prefix (line 86) | def company_prefix(self) -> str: method regon (line 92) | def regon(self) -> str: method local_regon (line 109) | def local_regon(self) -> str: method company_vat (line 125) | def company_vat(self) -> str: FILE: faker/providers/company/pt_BR/__init__.py function company_id_checksum (line 6) | def company_id_checksum(digits: List[int]) -> List[int]: class Provider (line 23) | class Provider(CompanyProvider): method catch_phrase_noun (line 76) | def catch_phrase_noun(self) -> str: method catch_phrase_attribute (line 82) | def catch_phrase_attribute(self) -> str: method catch_phrase_verb (line 88) | def catch_phrase_verb(self) -> str: method catch_phrase (line 94) | def catch_phrase(self) -> str: method company_id (line 103) | def company_id(self) -> str: method cnpj (line 109) | def cnpj(self) -> str: FILE: faker/providers/company/pt_PT/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/ro_RO/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_suffix (line 33) | def company_suffix(self) -> str: FILE: faker/providers/company/ru_RU/__init__.py function calculate_checksum (line 6) | def calculate_checksum(value: str) -> str: function calculate_snils_checksum (line 15) | def calculate_snils_checksum(numbers: str) -> str: class Provider (line 20) | class Provider(CompanyProvider): method catch_phrase (line 1087) | def catch_phrase(self) -> str: method large_company (line 1104) | def large_company(self) -> str: method company_prefix (line 1110) | def company_prefix(self) -> str: method businesses_inn (line 1116) | def businesses_inn(self) -> str: method individuals_inn (line 1127) | def individuals_inn(self) -> str: method businesses_ogrn (line 1139) | def businesses_ogrn(self) -> str: method individuals_ogrn (line 1153) | def individuals_ogrn(self) -> str: method kpp (line 1166) | def kpp(self) -> str: method snils (line 1177) | def snils(self) -> str: FILE: faker/providers/company/sk_SK/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/sl_SI/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/sv_SE/__init__.py class Provider (line 4) | class Provider(CompanyProvider): FILE: faker/providers/company/th_TH/__init__.py class Provider (line 6) | class Provider(CompanyProvider): method company_prefix (line 104) | def company_prefix(self) -> str: method company_limited_prefix (line 110) | def company_limited_prefix(self) -> str: method company_limited_suffix (line 116) | def company_limited_suffix(self) -> str: method nonprofit_prefix (line 122) | def nonprofit_prefix(self) -> str: FILE: faker/providers/company/tl_PH/__init__.py class Provider (line 4) | class Provider(FilPhProvider): FILE: faker/providers/company/tr_TR/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method large_company (line 119) | def large_company(self) -> str: FILE: faker/providers/company/vi_VN/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_suffix (line 23) | def company_suffix(self) -> str: FILE: faker/providers/company/zh_CN/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_prefix (line 94) | def company_prefix(self) -> str: FILE: faker/providers/company/zh_TW/__init__.py class Provider (line 4) | class Provider(CompanyProvider): method company_prefix (line 112) | def company_prefix(self) -> str: FILE: faker/providers/credit_card/__init__.py class Provider (line 10) | class Provider(BaseProvider): method credit_card_provider (line 112) | def credit_card_provider(self, card_type: Optional[CardType] = None) -... method credit_card_number (line 118) | def credit_card_number(self, card_type: Optional[CardType] = None) -> ... method credit_card_expire (line 125) | def credit_card_expire( method credit_card_full (line 142) | def credit_card_full(self, card_type: Optional[CardType] = None) -> str: method credit_card_security_code (line 159) | def credit_card_security_code(self, card_type: Optional[CardType] = No... method _credit_card_type (line 164) | def _credit_card_type(self, card_type: Optional[CardType] = None) -> C... method _generate_number (line 172) | def _generate_number(self, prefix: str, length: int) -> str: FILE: faker/providers/credit_card/en_US/__init__.py class Provider (line 4) | class Provider(CreditCardProvider): FILE: faker/providers/credit_card/fa_IR/__init__.py class Provider (line 8) | class Provider(CreditCardProvider): FILE: faker/providers/credit_card/pt_PT/__init__.py class Provider (line 8) | class Provider(CreditCardProvider): FILE: faker/providers/credit_card/ru_RU/__init__.py class Provider (line 10) | class Provider(CreditCardProvider): method credit_card_full (line 90) | def credit_card_full(self, card_type: Optional[CardType] = None) -> str: FILE: faker/providers/credit_card/uk_UA/__init__.py class Provider (line 10) | class Provider(CreditCardProvider): method credit_card_full (line 29) | def credit_card_full(self, card_type: Optional[CardType] = None) -> str: FILE: faker/providers/credit_card/zh_CN/__init__.py class Provider (line 8) | class Provider(CreditCardProvider): method credit_card_full (line 23) | def credit_card_full(self, card_type: Optional[CardType] = None) -> str: FILE: faker/providers/currency/__init__.py class Provider (line 8) | class Provider(BaseProvider): method currency (line 395) | def currency(self) -> Tuple[str, str]: method currency_code (line 398) | def currency_code(self) -> str: method currency_name (line 401) | def currency_name(self) -> str: method currency_symbol (line 404) | def currency_symbol(self, code: Optional[str] = None) -> str: method cryptocurrency (line 414) | def cryptocurrency(self) -> Tuple[str, str]: method cryptocurrency_code (line 417) | def cryptocurrency_code(self) -> str: method cryptocurrency_name (line 420) | def cryptocurrency_name(self) -> str: method pricetag (line 423) | def pricetag(self) -> str: FILE: faker/providers/currency/az_AZ/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 177) | def pricetag(self): FILE: faker/providers/currency/bn_BD/__init__.py class Provider (line 6) | class Provider(CurrencyProvider): method pricetag (line 224) | def pricetag(self) -> str: FILE: faker/providers/currency/cs_CZ/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/da_DK/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self): FILE: faker/providers/currency/de/__init__.py class Provider (line 7) | class Provider(CurrencyProvider): FILE: faker/providers/currency/de_AT/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/de_CH/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 8) | def pricetag(self): FILE: faker/providers/currency/de_DE/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self): FILE: faker/providers/currency/el_GR/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 157) | def pricetag(self) -> str: FILE: faker/providers/currency/en_AU/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/en_CA/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self): FILE: faker/providers/currency/en_US/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/es/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): FILE: faker/providers/currency/es_AR/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/es_CL/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/es_ES/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/fa_IR/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/fr_CA/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/fr_FR/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self): FILE: faker/providers/currency/it_IT/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self): FILE: faker/providers/currency/ng_NG/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/nl_NL/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/pl_PL/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/pt_BR/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/ro_RO/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/ru_RU/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 176) | def pricetag(self) -> str: FILE: faker/providers/currency/sk_SK/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self): FILE: faker/providers/currency/sv_SE/__init__.py class Provider (line 6) | class Provider(CurrencyProvider): FILE: faker/providers/currency/th_TH/__init__.py class Provider (line 6) | class Provider(CurrencyProvider): FILE: faker/providers/currency/tr_TR/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 7) | def pricetag(self) -> str: FILE: faker/providers/currency/uk_UA/__init__.py class Provider (line 7) | class Provider(CurrencyProvider): method pricetag (line 172) | def pricetag(self) -> str: FILE: faker/providers/currency/uz_UZ/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 175) | def pricetag(self) -> str: FILE: faker/providers/currency/vi_VN/__init__.py class Provider (line 4) | class Provider(CurrencyProvider): method pricetag (line 8) | def pricetag(self) -> str: FILE: faker/providers/date_time/__init__.py function _get_local_timezone (line 22) | def _get_local_timezone(): function _get_next_month_start (line 26) | def _get_next_month_start(dt: Union[dtdate, datetime]) -> Union[dtdate, ... function datetime_to_timestamp (line 32) | def datetime_to_timestamp(dt: Union[dtdate, datetime]) -> int: function timestamp_to_datetime (line 38) | def timestamp_to_datetime(timestamp: Union[int, float], tzinfo: Optional... function change_year (line 45) | def change_year(current_date: dtdate, year_diff: int) -> dtdate: class ParseError (line 68) | class ParseError(ValueError): class Provider (line 85) | class Provider(BaseProvider): method _rand_seconds (line 110) | def _rand_seconds(self, start_datetime: int, end_datetime: int) -> float: method _rand_seconds (line 115) | def _rand_seconds(self, start_datetime: int, end_datetime: int) -> float: method unix_time (line 1848) | def unix_time( method time_delta (line 1868) | def time_delta(self, end_datetime: Optional[DateParseType] = None) -> ... method date_time (line 1884) | def date_time( method date_time_ad (line 1902) | def date_time_ad( method iso8601 (line 1938) | def iso8601( method date (line 1957) | def date(self, pattern: str = "%Y-%m-%d", end_datetime: Optional[DateP... method date_object (line 1970) | def date_object(self, end_datetime: Optional[datetime] = None) -> dtdate: method time (line 1981) | def time(self, pattern: str = "%H:%M:%S", end_datetime: Optional[DateP... method time_object (line 1993) | def time_object(self, end_datetime: Optional[DateParseType] = None) ->... method _parse_start_datetime (line 2005) | def _parse_start_datetime(cls, value: Optional[DateParseType]) -> int: method _parse_end_datetime (line 2012) | def _parse_end_datetime(cls, value: Optional[DateParseType]) -> int: method _parse_date_string (line 2019) | def _parse_date_string(cls, value: str) -> Dict[str, float]: method _parse_timedelta (line 2043) | def _parse_timedelta(cls, value: Union[timedelta, str, float]) -> Unio... method _parse_date_time (line 2054) | def _parse_date_time(cls, value: DateParseType, tzinfo: Optional[TzInf... method _parse_date (line 2070) | def _parse_date(cls, value: DateParseType) -> dtdate: method date_time_between (line 2087) | def date_time_between( method date_between (line 2114) | def date_between(self, start_date: DateParseType = "-30y", end_date: D... method future_datetime (line 2131) | def future_datetime(self, end_date: DateParseType = "+30d", tzinfo: Op... method future_date (line 2144) | def future_date(self, end_date: DateParseType = "+30d") -> dtdate: method past_datetime (line 2157) | def past_datetime(self, start_date: DateParseType = "-30d", tzinfo: Op... method past_date (line 2171) | def past_date(self, start_date: DateParseType = "-30d", tzinfo: Option... method date_time_between_dates (line 2184) | def date_time_between_dates( method date_between_dates (line 2228) | def date_between_dates( method date_time_this_century (line 2243) | def date_time_this_century( method date_time_this_decade (line 2272) | def date_time_this_decade( method date_time_this_year (line 2301) | def date_time_this_year( method date_time_this_month (line 2330) | def date_time_this_month( method date_this_century (line 2359) | def date_this_century(self, before_today: bool = True, after_today: bo... method date_this_decade (line 2382) | def date_this_decade(self, before_today: bool = True, after_today: boo... method date_this_year (line 2405) | def date_this_year(self, before_today: bool = True, after_today: bool ... method date_this_month (line 2428) | def date_this_month(self, before_today: bool = True, after_today: bool... method time_series (line 2451) | def time_series( method am_pm (line 2496) | def am_pm(self) -> str: method day_of_month (line 2502) | def day_of_month(self) -> str: method day_of_week (line 2508) | def day_of_week(self) -> str: method month (line 2514) | def month(self) -> str: method month_name (line 2520) | def month_name(self) -> str: method year (line 2526) | def year(self) -> str: method century (line 2532) | def century(self) -> str: method timezone (line 2538) | def timezone(self) -> str: method pytimezone (line 2544) | def pytimezone(self, *args: Any, **kwargs: Any) -> Optional[TzInfo]: method date_of_birth (line 2563) | def date_of_birth( function convert_timestamp_to_datetime (line 2610) | def convert_timestamp_to_datetime(timestamp: Union[int, float], tzinfo: ... FILE: faker/providers/date_time/ar_AA/__init__.py class Provider (line 6) | class Provider(DateTimeProvider): method month_name (line 1755) | def month_name(self) -> str: method am_pm (line 1759) | def am_pm(self) -> str: method day_of_week (line 1763) | def day_of_week(self) -> str: FILE: faker/providers/date_time/ar_EG/__init__.py class Provider (line 4) | class Provider(ArabicDateTimeProvider): FILE: faker/providers/date_time/az_AZ/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/bn_BD/__init__.py class Provider (line 6) | class Provider(DateTimeProvider): method day_of_week (line 1734) | def day_of_week(self) -> str: method month_name (line 1738) | def month_name(self) -> str: FILE: faker/providers/date_time/cs_CZ/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/da_DK/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/de_AT/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/de_DE/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/el_GR/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/en_PH/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): FILE: faker/providers/date_time/en_US/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): FILE: faker/providers/date_time/es/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/es_AR/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): FILE: faker/providers/date_time/es_CL/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): FILE: faker/providers/date_time/es_ES/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): FILE: faker/providers/date_time/fil_PH/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 31) | def day_of_week(self): method month_name (line 35) | def month_name(self): FILE: faker/providers/date_time/fr_CA/__init__.py class Provider (line 6) | class Provider(FRFRProvider): method __init__ (line 7) | def __init__(self, *args: Any, **kwargs: Any) -> None: FILE: faker/providers/date_time/fr_DZ/__init__.py class Provider (line 4) | class Provider(fr_FRProvider): FILE: faker/providers/date_time/fr_FR/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 29) | def day_of_week(self) -> str: method month_name (line 33) | def month_name(self) -> str: FILE: faker/providers/date_time/gu_IN/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 56) | def day_of_week(self) -> str: method month_name (line 60) | def month_name(self) -> str: method day_of_week_in_guj (line 64) | def day_of_week_in_guj(self) -> str: method month_name_in_guj (line 69) | def month_name_in_guj(self) -> str: method month_in_guj (line 74) | def month_in_guj(self) -> str: FILE: faker/providers/date_time/hi_IN/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 5) | def day_of_week(self) -> str: method month_name (line 19) | def month_name(self) -> str: FILE: faker/providers/date_time/hr_HR/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 5) | def day_of_week(self) -> str: method month_name (line 18) | def month_name(self) -> str: FILE: faker/providers/date_time/hu_HU/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 5) | def day_of_week(self) -> str: method month_name (line 19) | def month_name(self) -> str: FILE: faker/providers/date_time/hy_AM/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/id_ID/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 5) | def day_of_week(self) -> str: method month_name (line 19) | def month_name(self) -> str: FILE: faker/providers/date_time/it_IT/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/ja_JP/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 44) | def day_of_week(self) -> str: method month_name (line 48) | def month_name(self) -> str: method traditional_month_name (line 52) | def traditional_month_name(self) -> str: FILE: faker/providers/date_time/ka_GE/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 31) | def day_of_week(self): method month_name (line 35) | def month_name(self): FILE: faker/providers/date_time/ko_KR/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 5) | def day_of_week(self) -> str: method month_name (line 18) | def month_name(self) -> str: FILE: faker/providers/date_time/nl_NL/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/no_NO/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 29) | def day_of_week(self) -> str: method month_name (line 33) | def month_name(self) -> str: FILE: faker/providers/date_time/pl_PL/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/pt_BR/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/pt_PT/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/ro_RO/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/ru_RU/__init__.py class Provider (line 6) | class Provider(DateTimeProvider): method day_of_week (line 1634) | def day_of_week(self) -> str: method month_name (line 1638) | def month_name(self) -> str: FILE: faker/providers/date_time/sk_SK/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/sl_SI/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self) -> str: method month_name (line 34) | def month_name(self) -> str: FILE: faker/providers/date_time/ta_IN/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 31) | def day_of_week(self) -> str: method month_name (line 35) | def month_name(self) -> str: FILE: faker/providers/date_time/th_TH/__init__.py function _std_strftime (line 62) | def _std_strftime(dt_obj: datetime, fmt_char: str) -> str: function _thai_strftime (line 86) | def _thai_strftime( function thai_strftime (line 172) | def thai_strftime( class Provider (line 283) | class Provider(DateParseTypeProvider): method date (line 284) | def date( method time (line 308) | def time( method century (line 328) | def century(self, thai_digit: bool = False, buddhist_era: bool = True)... FILE: faker/providers/date_time/tl_PH/__init__.py class Provider (line 4) | class Provider(FilPhProvider): FILE: faker/providers/date_time/tr_TR/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self): method month_name (line 34) | def month_name(self): FILE: faker/providers/date_time/uz_UZ/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 30) | def day_of_week(self) -> str: method month_name (line 34) | def month_name(self) -> str: FILE: faker/providers/date_time/vi_VN/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 31) | def day_of_week(self): method month_name (line 35) | def month_name(self): FILE: faker/providers/date_time/zh_CN/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 29) | def day_of_week(self) -> str: method month_name (line 33) | def month_name(self) -> str: FILE: faker/providers/date_time/zh_TW/__init__.py class Provider (line 4) | class Provider(DateTimeProvider): method day_of_week (line 29) | def day_of_week(self) -> str: method month_name (line 33) | def month_name(self) -> str: method minguo_year (line 37) | def minguo_year(self) -> str: FILE: faker/providers/doi/__init__.py class Provider (line 4) | class Provider(BaseProvider): method doi (line 10) | def doi(self) -> str: FILE: faker/providers/emoji/__init__.py class Provider (line 4) | class Provider(BaseProvider): method emoji (line 3524) | def emoji(self) -> str: FILE: faker/providers/emoji/en_US/__init__.py class Provider (line 4) | class Provider(EmojiProvider): FILE: faker/providers/file/__init__.py class Provider (line 9) | class Provider(BaseProvider): method mime_type (line 221) | def mime_type(self, category: Optional[str] = None) -> str: method file_name (line 235) | def file_name(self, category: Optional[str] = None, extension: Optiona... method file_extension (line 257) | def file_extension(self, category: Optional[str] = None) -> str: method file_path (line 271) | def file_path( method unix_device (line 328) | def unix_device(self, prefix: Optional[str] = None) -> str: method unix_partition (line 343) | def unix_partition(self, prefix: Optional[str] = None) -> str: FILE: faker/providers/file/en_US/__init__.py class Provider (line 4) | class Provider(FileProvider): FILE: faker/providers/geo/__init__.py class Provider (line 11) | class Provider(BaseProvider): method coordinate (line 1005) | def coordinate(self, center: Optional[float] = None, radius: Union[flo... method latitude (line 1019) | def latitude(self) -> Decimal: method longitude (line 1023) | def longitude(self) -> Decimal: method latlng (line 1026) | def latlng(self) -> Tuple[Decimal, Decimal]: method local_latlng (line 1029) | def local_latlng( method location_on_land (line 1043) | def location_on_land(self, coords_only: bool = False) -> Tuple[str, ...]: FILE: faker/providers/geo/bn_BD/__init__.py class Provider (line 6) | class Provider(GeoProvider): method local_latlng (line 987) | def local_latlng(self, country_code: str = "BD", coords_only: bool = F... FILE: faker/providers/geo/cs_CZ/__init__.py class Provider (line 4) | class Provider(GeoProvider): FILE: faker/providers/geo/de_AT/__init__.py class Provider (line 6) | class Provider(GeoProvider): method local_latitude (line 7) | def local_latitude(self) -> Decimal: method local_longitude (line 10) | def local_longitude(self) -> Decimal: FILE: faker/providers/geo/el_GR/__init__.py class Provider (line 7) | class Provider(GeoProvider): method local_latlng (line 15) | def local_latlng(self, *args: Any, **kwargs: Any) -> Tuple[str, str]: method local_latitude (line 18) | def local_latitude(self) -> Decimal: method local_longitude (line 24) | def local_longitude(self) -> Decimal: FILE: faker/providers/geo/en_IE/__init__.py class Provider (line 4) | class Provider(GeoProvider): FILE: faker/providers/geo/en_US/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/geo/pl_PL/__init__.py class Provider (line 4) | class Provider(GeoProvider): FILE: faker/providers/geo/pt_PT/__init__.py class Provider (line 4) | class Provider(GeoProvider): method nationality (line 123) | def nationality(self) -> str: FILE: faker/providers/geo/sk_SK/__init__.py class Provider (line 4) | class Provider(GeoProvider): FILE: faker/providers/geo/tr_TR/__init__.py class Provider (line 4) | class Provider(GeoProvider): FILE: faker/providers/internet/__init__.py class _IPv4Constants (line 13) | class _IPv4Constants: class Provider (line 59) | class Provider(BaseProvider): method _to_ascii (line 221) | def _to_ascii(self, string: str) -> str: method email (line 229) | def email(self, safe: bool = True, domain: Optional[str] = None) -> str: method safe_domain_name (line 240) | def safe_domain_name(self) -> str: method safe_email (line 244) | def safe_email(self) -> str: method free_email (line 248) | def free_email(self) -> str: method company_email (line 252) | def company_email(self) -> str: method free_email_domain (line 256) | def free_email_domain(self) -> str: method ascii_email (line 260) | def ascii_email(self) -> str: method ascii_safe_email (line 267) | def ascii_safe_email(self) -> str: method ascii_free_email (line 271) | def ascii_free_email(self) -> str: method ascii_company_email (line 277) | def ascii_company_email(self) -> str: method user_name (line 283) | def user_name(self) -> str: method hostname (line 288) | def hostname(self, levels: int = 1) -> str: method domain_name (line 306) | def domain_name(self, levels: int = 1) -> str: method domain_word (line 324) | def domain_word(self) -> str: method dga (line 329) | def dga( method tld (line 363) | def tld(self) -> str: method http_method (line 366) | def http_method(self) -> str: method http_status_code (line 375) | def http_status_code(self, include_unassigned: bool = True) -> int: method url (line 392) | def url(self, schemes: Optional[List[str]] = None) -> str: method _get_all_networks_and_weights (line 407) | def _get_all_networks_and_weights(self, address_class: Optional[str] =... method _get_private_networks_and_weights (line 440) | def _get_private_networks_and_weights( method _get_public_networks_and_weights (line 475) | def _get_public_networks_and_weights( method _random_ipv4_address_from_subnets (line 509) | def _random_ipv4_address_from_subnets( method _exclude_ipv4_networks (line 563) | def _exclude_ipv4_networks( method ipv4_network_class (line 606) | def ipv4_network_class(self) -> str: method ipv4 (line 614) | def ipv4( method ipv4_private (line 636) | def ipv4_private(self, network: bool = False, address_class: Optional[... method ipv4_public (line 647) | def ipv4_public(self, network: bool = False, address_class: Optional[s... method ipv6 (line 658) | def ipv6(self, network: bool = False) -> str: method mac_address (line 666) | def mac_address(self, multicast: bool = False) -> str: method port_number (line 680) | def port_number(self, is_system: bool = False, is_user: bool = False, ... method uri_page (line 699) | def uri_page(self) -> str: method uri_path (line 702) | def uri_path(self, deep: Optional[int] = None) -> str: method uri_extension (line 708) | def uri_extension(self) -> str: method uri (line 711) | def uri(self, schemes: Optional[List[str]] = None, deep: Optional[int]... method slug (line 729) | def slug(self, value: Optional[str] = None) -> str: method image_url (line 739) | def image_url( method iana_id (line 762) | def iana_id(self) -> str: method ripe_id (line 771) | def ripe_id(self) -> str: method nic_handle (line 782) | def nic_handle(self, suffix: str = "FAKE") -> str: method nic_handles (line 796) | def nic_handles(self, count: int = 1, suffix: str = "????") -> List[str]: FILE: faker/providers/internet/ar_AA/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/az_AZ/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/bg_BG/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/bn_BD/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/bs_BA/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/cs_CZ/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/de_AT/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/de_DE/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/el_GR/__init__.py class Provider (line 8) | class Provider(InternetProvider): method user_name (line 21) | def user_name(self) -> str: method domain_word (line 26) | def domain_word(self) -> str: function remove_accents (line 36) | def remove_accents(value: str) -> str: function latinize (line 52) | def latinize(value: str) -> str: FILE: faker/providers/internet/en_AU/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/en_GB/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/en_NZ/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/en_PH/__init__.py class Provider (line 8) | class Provider(InternetProvider): method domain_word (line 43) | def domain_word(self) -> str: FILE: faker/providers/internet/en_US/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/es_AR/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/es_CL/__init__.py class Provider (line 8) | class Provider(InternetProvider): method domain_word (line 29) | def domain_word(self) -> str: FILE: faker/providers/internet/es_ES/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/fa_IR/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/internet/fi_FI/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/fil_PH/__init__.py class Provider (line 4) | class Provider(EnPhInternetProvider): FILE: faker/providers/internet/fr_CH/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/fr_FR/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/hr_HR/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/hu_HU/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/id_ID/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/it_IT/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/ja_JP/__init__.py class Provider (line 6) | class Provider(InternetProvider): method domain_word (line 16) | def domain_word(self) -> str: FILE: faker/providers/internet/ko_KR/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/no_NO/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/pl_PL/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/pt_BR/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/pt_PT/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/ro_RO/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/ru_RU/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/sk_SK/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/sl_SI/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/sv_SE/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/th_TH/__init__.py class Provider (line 6) | class Provider(InternetProvider): FILE: faker/providers/internet/tl_PH/__init__.py class Provider (line 4) | class Provider(EnPhInternetProvider): FILE: faker/providers/internet/tr_TR/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/uk_UA/__init__.py class Provider (line 4) | class Provider(InternetProvider): FILE: faker/providers/internet/zh_CN/__init__.py class Provider (line 8) | class Provider(InternetProvider): method domain_word (line 79) | def domain_word(self) -> str: method domain_name (line 86) | def domain_name(self, levels: int = 1) -> str: FILE: faker/providers/internet/zh_TW/__init__.py class Provider (line 6) | class Provider(InternetProvider): method domain_word (line 16) | def domain_word(self): FILE: faker/providers/isbn/__init__.py class Provider (line 9) | class Provider(BaseProvider): method _body (line 20) | def _body(self) -> List[str]: method _registrant_publication (line 42) | def _registrant_publication(reg_pub: str, rules: List[Tuple[str, str, ... method isbn13 (line 61) | def isbn13(self, separator: str = "-") -> str: method isbn10 (line 69) | def isbn10(self, separator: str = "-") -> str: FILE: faker/providers/isbn/en_US/__init__.py class Provider (line 4) | class Provider(ISBNProvider): FILE: faker/providers/isbn/es_ES/__init__.py class Provider (line 4) | class Provider(ISBNProvider): FILE: faker/providers/isbn/isbn.py class ISBN (line 11) | class ISBN: method __init__ (line 12) | def __init__( class ISBN13 (line 25) | class ISBN13(ISBN): method __init__ (line 26) | def __init__(self, *args: Any, **kwargs: Any) -> None: method _check_digit (line 30) | def _check_digit(self) -> str: method format (line 42) | def format(self, separator: str = "") -> str: class ISBN10 (line 58) | class ISBN10(ISBN): method __init__ (line 59) | def __init__(self, *args: Any, **kwargs: Any) -> None: method _check_digit (line 63) | def _check_digit(self) -> str: method format (line 74) | def format(self, separator: str = "") -> str: FILE: faker/providers/job/__init__.py class Provider (line 6) | class Provider(BaseProvider): method job (line 649) | def job(self) -> str: method job_female (line 652) | def job_female(self) -> str: method job_male (line 657) | def job_male(self) -> str: FILE: faker/providers/job/ar_AA/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/az_AZ/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/bn_BD/__init__.py class Provider (line 4) | class Provider(JobProvider): FILE: faker/providers/job/bs_BA/__init__.py class Provider (line 10) | class Provider(BaseProvider): FILE: faker/providers/job/cs_CZ/__init__.py class Provider (line 4) | class Provider(JobProvider): method job (line 486) | def job(self) -> str: FILE: faker/providers/job/da_DK/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/de_AT/__init__.py class Provider (line 5) | class Provider(BaseProvider): method job (line 4996) | def job(self) -> str: FILE: faker/providers/job/de_DE/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/el_GR/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/en_US/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/es/__init__.py class Provider (line 5) | class Provider(BaseProvider): FILE: faker/providers/job/es_AR/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/es_CL/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/es_CO/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/es_ES/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/es_MX/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/fa_IR/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/fi_FI/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/fr_CH/__init__.py class Provider (line 7) | class Provider(BaseProvider): FILE: faker/providers/job/fr_FR/__init__.py class Provider (line 7) | class Provider(BaseProvider): FILE: faker/providers/job/hr_HR/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/hu_HU/__init__.py class Provider (line 4) | class Provider(BaseProvider): method job (line 417) | def job(self) -> str: FILE: faker/providers/job/hy_AM/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/ja_JP/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/ka_GE/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/ko_KR/__init__.py class Provider (line 7) | class Provider(BaseProvider): FILE: faker/providers/job/pl_PL/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/pt_BR/__init__.py class Provider (line 7) | class Provider(BaseProvider): FILE: faker/providers/job/pt_PT/__init__.py class Provider (line 6) | class Provider(BaseProvider): FILE: faker/providers/job/ro_RO/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/ru_RU/__init__.py class Provider (line 7) | class Provider(BaseProvider): FILE: faker/providers/job/sk_SK/__init__.py class Provider (line 4) | class Provider(JobProvider): method job (line 510) | def job(self) -> str: FILE: faker/providers/job/th_TH/__init__.py class Provider (line 7) | class Provider(BaseProvider): FILE: faker/providers/job/tr_TR/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/job/uk_UA/__init__.py class Provider (line 7) | class Provider(BaseProvider): FILE: faker/providers/job/vi_VN/__init__.py class Provider (line 4) | class Provider(JobProvider): method job (line 74) | def job(self) -> str: FILE: faker/providers/job/zh_CN/__init__.py class Provider (line 6) | class Provider(BaseProvider): FILE: faker/providers/job/zh_TW/__init__.py class Provider (line 7) | class Provider(BaseProvider): FILE: faker/providers/lorem/__init__.py class Provider (line 11) | class Provider(BaseProvider): method get_words_list (line 26) | def get_words_list( method words (line 65) | def words( method word (line 101) | def word(self, part_of_speech: Optional[str] = None, ext_word_list: Op... method sentence (line 114) | def sentence( method sentences (line 145) | def sentences(self, nb: int = 3, ext_word_list: Optional[Sequence[str]... method paragraph (line 159) | def paragraph( method paragraphs (line 190) | def paragraphs(self, nb: int = 3, ext_word_list: Optional[Sequence[str... method text (line 203) | def text(self, max_nb_chars: int = 200, ext_word_list: Optional[Sequen... method texts (line 260) | def texts( FILE: faker/providers/lorem/ar_AA/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/az_AZ/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/bn_BD/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/cs_CZ/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/da_DK/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/de_AT/__init__.py class Provider (line 4) | class Provider(GermanProvider): FILE: faker/providers/lorem/de_DE/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/el_GR/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/en_PH/__init__.py class Provider (line 7) | class Provider(LoremProvider): method english_word (line 25) | def english_word(self) -> str: method english_words (line 29) | def english_words(self, nb: int = 3, unique: bool = False) -> List[str]: method english_sentence (line 40) | def english_sentence(self, nb_words: int = 6, variable_nb_words: bool ... method english_sentences (line 48) | def english_sentences(self, nb: int = 3) -> List[str]: method english_paragraph (line 55) | def english_paragraph(self, nb_sentences: int = 3, variable_nb_sentenc... method english_paragraphs (line 63) | def english_paragraphs(self, nb: int = 3) -> List[str]: method english_text (line 70) | def english_text(self, max_nb_chars: int = 200) -> str: method english_texts (line 79) | def english_texts(self, nb_texts: int = 3, max_nb_chars: int = 200) ->... FILE: faker/providers/lorem/en_US/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/es_AR/__init__.py class Provider (line 4) | class Provider(SpanishProvider): FILE: faker/providers/lorem/es_ES/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/es_MX/__init__.py class Provider (line 4) | class Provider(SpanishProvider): FILE: faker/providers/lorem/fa_IR/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/fil_PH/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/fr_FR/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/he_IL/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/hy_AM/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/it_IT/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/ja_JP/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/la/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/nl_BE/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/nl_NL/__init__.py class Provider (line 7) | class Provider(LoremProvider): FILE: faker/providers/lorem/pl_PL/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/ru_RU/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/th_TH/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/tl_PH/__init__.py class Provider (line 4) | class Provider(FilPhProvider): FILE: faker/providers/lorem/uk_UA/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/vi_VN/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/zh_CN/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/lorem/zh_TW/__init__.py class Provider (line 6) | class Provider(LoremProvider): FILE: faker/providers/misc/__init__.py class Provider (line 29) | class Provider(BaseProvider): method boolean (line 30) | def boolean(self, chance_of_getting_true: int = 50) -> bool: method null_boolean (line 39) | def null_boolean(self) -> Optional[bool]: method binary (line 48) | def binary(self, length: int = (1 * 1024 * 1024)) -> bytes: method md5 (line 65) | def md5(self) -> str: ... method md5 (line 68) | def md5(self, raw_output: Literal[True]) -> bytes: ... method md5 (line 71) | def md5(self, raw_output: Literal[False]) -> str: ... method md5 (line 73) | def md5(self, raw_output: bool = False) -> Union[bytes, str]: method sha1 (line 88) | def sha1(self) -> str: ... method sha1 (line 91) | def sha1(self, raw_output: Literal[True]) -> bytes: ... method sha1 (line 94) | def sha1(self, raw_output: Literal[False]) -> str: ... method sha1 (line 96) | def sha1(self, raw_output: bool = False) -> Union[bytes, str]: method sha256 (line 111) | def sha256(self) -> str: ... method sha256 (line 114) | def sha256(self, raw_output: Literal[True]) -> bytes: ... method sha256 (line 117) | def sha256(self, raw_output: Literal[False]) -> str: ... method sha256 (line 119) | def sha256(self, raw_output: bool = False) -> Union[bytes, str]: method uuid4 (line 134) | def uuid4(self) -> str: ... method uuid4 (line 137) | def uuid4(self, cast_to: None) -> uuid.UUID: ... method uuid4 (line 140) | def uuid4(self, cast_to: Callable[[uuid.UUID], str]) -> str: ... method uuid4 (line 143) | def uuid4(self, cast_to: Callable[[uuid.UUID], bytes]) -> bytes: ... method uuid4 (line 145) | def uuid4( method password (line 164) | def password( method zip (line 215) | def zip( method tar (line 281) | def tar( method image (line 352) | def image( method dsv (line 395) | def dsv( method csv (line 460) | def csv( method tsv (line 485) | def tsv( method psv (line 510) | def psv( method json_bytes (line 535) | def json_bytes( method json (line 550) | def json( method xml (line 660) | def xml( method fixed_width (line 689) | def fixed_width(self, data_columns: Optional[DataColumns] = None, num_... method _value_format_selection (line 753) | def _value_format_selection(self, definition: str, **kwargs: Any) -> U... FILE: faker/providers/misc/en_PH/__init__.py class Provider (line 4) | class Provider(MiscProvider): method gemstone_name (line 205) | def gemstone_name(self) -> str: method mountain_name (line 208) | def mountain_name(self) -> str: method plant_name (line 211) | def plant_name(self) -> str: method space_object_name (line 214) | def space_object_name(self) -> str: method random_object_name (line 217) | def random_object_name(self) -> str: FILE: faker/providers/misc/en_US/__init__.py class Provider (line 4) | class Provider(MiscProvider): FILE: faker/providers/misc/fil_PH/__init__.py class Provider (line 4) | class Provider(EnPhMiscProvider): FILE: faker/providers/misc/tl_PH/__init__.py class Provider (line 4) | class Provider(EnPhMiscProvider): FILE: faker/providers/passport/__init__.py class Provider (line 14) | class Provider(BaseProvider): method passport_dob (line 19) | def passport_dob(self) -> datetime.date: method passport_owner (line 24) | def passport_owner(self, gender: SexLiteral = "X") -> Tuple[str, str]: method passport_number (line 40) | def passport_number(self) -> str: FILE: faker/providers/passport/de_AT/__init__.py class Provider (line 5) | class Provider(PassportProvider): FILE: faker/providers/passport/en_US/__init__.py class Provider (line 11) | class Provider(PassportProvider): method passport_dates (line 27) | def passport_dates(self, birthday: date = date.today()) -> Tuple[str, ... method passport_gender (line 69) | def passport_gender(self, seed: int = 0) -> SexLiteral: method passport_full (line 83) | def passport_full(self) -> str: FILE: faker/providers/passport/it_IT/__init__.py class Provider (line 5) | class Provider(PassportProvider): method passport_number (line 20) | def passport_number(self) -> str: FILE: faker/providers/passport/ru_RU/__init__.py class Provider (line 15) | class Provider(BaseProvider): method passport_owner (line 21) | def passport_owner(self, gender: SexLiteral = "M") -> Tuple[str, str]: FILE: faker/providers/person/__init__.py class Provider (line 8) | class Provider(BaseProvider): method name (line 201) | def name(self) -> str: method first_name (line 208) | def first_name(self) -> str: method last_name (line 211) | def last_name(self) -> str: method name_male (line 214) | def name_male(self) -> str: method name_nonbinary (line 222) | def name_nonbinary(self) -> str: method name_female (line 230) | def name_female(self) -> str: method first_name_male (line 238) | def first_name_male(self) -> str: method first_name_nonbinary (line 243) | def first_name_nonbinary(self) -> str: method first_name_female (line 248) | def first_name_female(self) -> str: method last_name_male (line 253) | def last_name_male(self) -> str: method last_name_nonbinary (line 258) | def last_name_nonbinary(self) -> str: method last_name_female (line 263) | def last_name_female(self) -> str: method prefix (line 268) | def prefix(self) -> str: method prefix_male (line 283) | def prefix_male(self) -> str: method prefix_nonbinary (line 288) | def prefix_nonbinary(self) -> str: method prefix_female (line 293) | def prefix_female(self) -> str: method suffix (line 298) | def suffix(self) -> str: method suffix_male (line 313) | def suffix_male(self) -> str: method suffix_nonbinary (line 318) | def suffix_nonbinary(self) -> str: method suffix_female (line 323) | def suffix_female(self) -> str: method language_name (line 328) | def language_name(self) -> str: FILE: faker/providers/person/ar_AA/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/ar_DZ/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/ar_PS/__init__.py class Provider (line 4) | class Provider(ArabicPersonProvider): FILE: faker/providers/person/ar_SA/__init__.py class Provider (line 4) | class Provider(ArabicPersonProvider): FILE: faker/providers/person/az_AZ/__init__.py class Provider (line 6) | class Provider(PersonProvider): method last_name_male (line 900) | def last_name_male(self) -> str: method last_name_unique_to_male (line 903) | def last_name_unique_to_male(self) -> str: method last_name_female (line 906) | def last_name_female(self) -> str: method last_name_unique_to_female (line 909) | def last_name_unique_to_female(self) -> str: method last_name_unisex (line 912) | def last_name_unisex(self) -> str: FILE: faker/providers/person/bg_BG/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/bn_BD/__init__.py function translate_to_bengali_digits (line 4) | def translate_to_bengali_digits(en_digit: str = "0") -> str: class Provider (line 27) | class Provider(PersonProvider): method first_name_male_common (line 540) | def first_name_male_common(self) -> str: method first_name_male_hinduism (line 547) | def first_name_male_hinduism(self) -> str: method first_name_male_islamic (line 554) | def first_name_male_islamic(self) -> str: method first_name_female_common (line 561) | def first_name_female_common(self) -> str: method first_name_female_hinduism (line 568) | def first_name_female_hinduism(self) -> str: method first_name_female_islamic (line 575) | def first_name_female_islamic(self) -> str: method last_name_common (line 582) | def last_name_common(self) -> str: method last_name_hinduism (line 589) | def last_name_hinduism(self) -> str: method last_name_islamic (line 596) | def last_name_islamic(self) -> str: method last_name_female_islamic (line 603) | def last_name_female_islamic(self) -> str: FILE: faker/providers/person/cs_CZ/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/da_DK/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/de_AT/__init__.py class Provider (line 4) | class Provider(PersonProvider): method academic_prefix (line 1606) | def academic_prefix(self) -> str: method academic_suffix (line 1613) | def academic_suffix(self) -> str: FILE: faker/providers/person/de_CH/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/de_DE/__init__.py class Provider (line 6) | class Provider(PersonProvider): method civil_status (line 2490) | def civil_status(self) -> Tuple[str, str]: method civil_status_code (line 2493) | def civil_status_code(self) -> str: method civil_status_name (line 2496) | def civil_status_name(self) -> str: FILE: faker/providers/person/de_LI/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/de_LU/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/el_GR/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/en/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/en_GB/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/en_IE/__init__.py class Provider (line 13) | class Provider(PersonProvider): FILE: faker/providers/person/en_IN/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/en_KE/__init__.py class Provider (line 17) | class Provider(PersonProvider): FILE: faker/providers/person/en_NG/__init__.py class Provider (line 13) | class Provider(PersonProvider): FILE: faker/providers/person/en_NZ/__init__.py class Provider (line 7) | class Provider(PersonProvider): FILE: faker/providers/person/en_PK/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/en_TH/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/en_US/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/es/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/es_AR/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/es_CA/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/es_CL/__init__.py class Provider (line 8) | class Provider(PersonProvider): method first_names (line 1057) | def first_names(self): # type: ignore[override] method name (line 1579) | def name(self) -> str: method given_name (line 1585) | def given_name(self) -> str: method given_name_male (line 1594) | def given_name_male(self) -> str: method given_name_female (line 1599) | def given_name_female(self) -> str: FILE: faker/providers/person/es_CO/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/es_ES/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/es_MX/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/et_EE/__init__.py class Provider (line 6) | class Provider(PersonProvider): method first_name_male_est (line 686) | def first_name_male_est(self) -> str: method first_name_female_est (line 689) | def first_name_female_est(self) -> str: method first_name_male_rus (line 692) | def first_name_male_rus(self) -> str: method first_name_female_rus (line 695) | def first_name_female_rus(self) -> str: method first_name_est (line 698) | def first_name_est(self) -> str: method first_name_rus (line 701) | def first_name_rus(self) -> str: method last_name_est (line 704) | def last_name_est(self) -> str: method last_name_rus (line 707) | def last_name_rus(self) -> str: FILE: faker/providers/person/fa_IR/__init__.py class Provider (line 4) | class Provider(PersonProvider): method suffix (line 345) | def suffix(self) -> str: FILE: faker/providers/person/fi_FI/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/fr_BE/__init__.py class Provider (line 12) | class Provider(PersonProvider): FILE: faker/providers/person/fr_CA/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/fr_CH/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/fr_DZ/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/fr_FR/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/fr_QC/__init__.py class Provider (line 8) | class Provider(FRCAProvider): method __init__ (line 9) | def __init__(self, *args: Any, **kwargs: Any) -> None: FILE: faker/providers/person/ga_IE/__init__.py class Provider (line 12) | class Provider(PersonProvider): FILE: faker/providers/person/gu_IN/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/ha_NG/__init__.py class Provider (line 9) | class Provider(PersonProvider): FILE: faker/providers/person/he_IL/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/hi_IN/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/hr_HR/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/hu_HU/__init__.py class Provider (line 28) | class Provider(PersonProvider): method first_name_male_abbreviated (line 436) | def first_name_male_abbreviated(self) -> str: method first_name_female_abbreviated (line 439) | def first_name_female_abbreviated(self) -> str: FILE: faker/providers/person/hy_AM/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/id_ID/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/ig_NG/__init__.py class Provider (line 9) | class Provider(PersonProvider): FILE: faker/providers/person/is_IS/__init__.py class Provider (line 6) | class Provider(PersonProvider): method last_name_male (line 3782) | def last_name_male(self) -> str: method last_name_female (line 3786) | def last_name_female(self) -> str: method last_name (line 3790) | def last_name(self) -> str: method middle_name (line 3940) | def middle_name(self) -> str: FILE: faker/providers/person/it_IT/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/ja_JP/__init__.py class Provider (line 8) | class Provider(PersonProvider): method first_name_pair (line 163) | def first_name_pair(self) -> Tuple[str, str, str]: method first_name_male_pair (line 169) | def first_name_male_pair(self) -> Tuple[str, str, str]: method first_name_female_pair (line 175) | def first_name_female_pair(self) -> Tuple[str, str, str]: method last_name_pair (line 181) | def last_name_pair(self) -> Tuple[str, str, str]: method first_name (line 187) | def first_name(self) -> str: method first_name_male (line 193) | def first_name_male(self) -> str: method first_name_female (line 199) | def first_name_female(self) -> str: method last_name (line 205) | def last_name(self) -> str: method first_kana_name (line 211) | def first_kana_name(self) -> str: method first_kana_name_male (line 217) | def first_kana_name_male(self) -> str: method first_kana_name_female (line 223) | def first_kana_name_female(self) -> str: method last_kana_name (line 229) | def last_kana_name(self) -> str: method first_romanized_name (line 235) | def first_romanized_name(self) -> str: method first_romanized_name_male (line 241) | def first_romanized_name_male(self) -> str: method first_romanized_name_female (line 247) | def first_romanized_name_female(self) -> str: method last_romanized_name (line 253) | def last_romanized_name(self) -> str: method kana_name (line 259) | def kana_name(self) -> str: method kana_name_male (line 266) | def kana_name_male(self) -> str: method kana_name_female (line 273) | def kana_name_female(self) -> str: method romanized_name (line 280) | def romanized_name(self) -> str: method romanized_name_male (line 287) | def romanized_name_male(self) -> str: method romanized_name_female (line 294) | def romanized_name_female(self) -> str: FILE: faker/providers/person/ka_GE/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/ko_KR/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/lt_LT/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/lv_LV/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/ne_NP/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/nl_BE/__init__.py class Provider (line 12) | class Provider(PersonProvider): FILE: faker/providers/person/nl_NL/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/no_NO/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/or_IN/__init__.py class Provider (line 4) | class Provider(PersonProvider): method first_name_unisex (line 1168) | def first_name_unisex(self) -> str: method middle_name (line 1171) | def middle_name(self) -> str: FILE: faker/providers/person/pl_PL/__init__.py function checksum_identity_card_number (line 7) | def checksum_identity_card_number(characters: Sequence[Union[str, int]])... class Provider (line 19) | class Provider(PersonProvider): method last_name (line 4090) | def last_name(self) -> str: method identity_card_number (line 4093) | def identity_card_number(self) -> str: method pesel_compute_check_digit (line 4118) | def pesel_compute_check_digit(self, pesel: str) -> int: method pesel (line 4122) | def pesel(self, date_of_birth: Optional[datetime] = None, sex: Optiona... method pwz_doctor_compute_check_digit (line 4170) | def pwz_doctor_compute_check_digit(self, x: Sequence[int]) -> int: method pwz_doctor (line 4173) | def pwz_doctor(self) -> str: method pwz_nurse (line 4189) | def pwz_nurse(self, kind: str = "nurse") -> str: method nip (line 4971) | def nip(self) -> str: FILE: faker/providers/person/pt_BR/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/pt_PT/__init__.py class Provider (line 4) | class Provider(PersonProvider): method prefix (line 342) | def prefix(self) -> str: FILE: faker/providers/person/ro_RO/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/ru_RU/__init__.py function translit (line 8) | def translit(text: str) -> str: class Provider (line 81) | class Provider(PersonProvider): method middle_name (line 1384) | def middle_name(self) -> str: method middle_name_male (line 1387) | def middle_name_male(self) -> str: method middle_name_female (line 1390) | def middle_name_female(self) -> str: FILE: faker/providers/person/sk_SK/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/sl_SI/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/sv_SE/__init__.py class Provider (line 17) | class Provider(PersonProvider): FILE: faker/providers/person/sw/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/ta_IN/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/th_TH/__init__.py class Provider (line 6) | class Provider(PersonProvider): FILE: faker/providers/person/tr_TR/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/tw_GH/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/uk_UA/__init__.py function translit (line 10) | def translit(text: str) -> str: class Provider (line 88) | class Provider(PersonProvider): method middle_name (line 1295) | def middle_name(self) -> str: method middle_name_male (line 1302) | def middle_name_male(self) -> str: method middle_name_female (line 1309) | def middle_name_female(self) -> str: method full_name (line 1316) | def full_name(self, gender: Optional[SexLiteral] = None, short: Option... FILE: faker/providers/person/uz_UZ/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/vi_VN/__init__.py class Provider (line 4) | class Provider(PersonProvider): method first_name_unisex (line 106) | def first_name_unisex(self) -> str: method middle_name (line 109) | def middle_name(self) -> str: FILE: faker/providers/person/yo_NG/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/person/zh_CN/__init__.py class Provider (line 6) | class Provider(PersonProvider): method romanized_name (line 680) | def romanized_name(self) -> str: method first_romanized_name (line 687) | def first_romanized_name(self) -> str: method last_romanized_name (line 693) | def last_romanized_name(self) -> str: FILE: faker/providers/person/zh_TW/__init__.py class Provider (line 6) | class Provider(PersonProvider): method first_romanized_name_male (line 908) | def first_romanized_name_male(self) -> str: # 只有jp有實作 method first_romanized_name_female (line 914) | def first_romanized_name_female(self) -> str: # 只有jp有實作 method romanized_name (line 920) | def romanized_name(self) -> str: # 姓名 method first_romanized_name (line 927) | def first_romanized_name(self) -> str: # 只有姓 method last_romanized_name (line 933) | def last_romanized_name(self) -> str: # 只有名 method romanized_name_male (line 939) | def romanized_name_male(self) -> str: # 男生姓名 method romanized_name_female (line 946) | def romanized_name_female(self) -> str: # 女生姓名 FILE: faker/providers/person/zu_ZA/__init__.py class Provider (line 4) | class Provider(PersonProvider): FILE: faker/providers/phone_number/__init__.py class Provider (line 14) | class Provider(BaseProvider): method phone_number (line 323) | def phone_number(self) -> str: method country_calling_code (line 326) | def country_calling_code(self) -> str: method msisdn (line 329) | def msisdn(self) -> str: FILE: faker/providers/phone_number/ar_AE/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method cellphone_provider_code (line 43) | def cellphone_provider_code(self) -> str: method telephone_provider_code (line 55) | def telephone_provider_code(self) -> str: method area_code (line 68) | def area_code(self) -> str: method cellphone_number (line 76) | def cellphone_number(self) -> str: method telephone_number (line 80) | def telephone_number(self) -> str: method service_phone_number (line 84) | def service_phone_number(self) -> str: method toll_number (line 88) | def toll_number(self) -> str: method phone_number (line 92) | def phone_number(self) -> str: FILE: faker/providers/phone_number/ar_JO/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method operator_id (line 30) | def operator_id(self) -> str: method area_code (line 40) | def area_code(self) -> str: method cellphone_number (line 51) | def cellphone_number(self) -> str: method telephone_number (line 55) | def telephone_number(self) -> str: method service_phone_number (line 59) | def service_phone_number(self) -> str: method phone_number (line 63) | def phone_number(self) -> str: FILE: faker/providers/phone_number/ar_PS/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method provider_code (line 93) | def provider_code(self) -> str: method area_code (line 101) | def area_code(self) -> str: method cellphone_number (line 111) | def cellphone_number(self) -> str: method telephone_number (line 115) | def telephone_number(self) -> str: method service_phone_number (line 119) | def service_phone_number(self) -> str: method toll_number (line 123) | def toll_number(self) -> str: method phone_number (line 127) | def phone_number(self) -> str: FILE: faker/providers/phone_number/az_AZ/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method start_digit (line 38) | def start_digit(self) -> str: method provider_code (line 41) | def provider_code(self) -> str: method area_code (line 44) | def area_code(self) -> str: method cellphone_number (line 47) | def cellphone_number(self) -> str: method landline_number (line 51) | def landline_number(self) -> str: method phone_number (line 55) | def phone_number(self) -> str: FILE: faker/providers/phone_number/bg_BG/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/bn_BD/__init__.py class Provider (line 6) | class Provider(PhoneNumberProvider): method phone_number (line 328) | def phone_number(self) -> str: method msisdn (line 332) | def msisdn(self) -> str: FILE: faker/providers/phone_number/bs_BA/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/cs_CZ/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/da_DK/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/de_AT/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method dialing_code (line 95) | def dialing_code(self) -> str: method area_code (line 102) | def area_code(self) -> str: method phone_number (line 110) | def phone_number(self) -> str: method cellphone_number (line 118) | def cellphone_number(self) -> str: FILE: faker/providers/phone_number/de_CH/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method dialing_code (line 57) | def dialing_code(self) -> str: method landline_code (line 64) | def landline_code(self) -> str: method phone_number (line 71) | def phone_number(self) -> str: method cellphone_number (line 79) | def cellphone_number(self) -> str: FILE: faker/providers/phone_number/de_DE/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/de_LI/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/de_LU/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method phone_number (line 36) | def phone_number(self) -> str: FILE: faker/providers/phone_number/el_GR/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/en_AU/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method area_code (line 36) | def area_code(self) -> str: method phone_number (line 39) | def phone_number(self) -> str: FILE: faker/providers/phone_number/en_CA/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/en_GB/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method cellphone_number (line 265) | def cellphone_number(self) -> str: FILE: faker/providers/phone_number/en_IN/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/en_NZ/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method area_code (line 41) | def area_code(self) -> str: method phone_number (line 44) | def phone_number(self) -> str: FILE: faker/providers/phone_number/en_PH/__init__.py class Provider (line 6) | class Provider(BaseProvider): method _create_phone_number (line 199) | def _create_phone_number(self, formats: Sequence[str]) -> str: method globe_mobile_number_prefix (line 203) | def globe_mobile_number_prefix(self) -> str: method smart_mobile_number_prefix (line 206) | def smart_mobile_number_prefix(self) -> str: method sun_mobile_number_prefix (line 209) | def sun_mobile_number_prefix(self) -> str: method bayantel_landline_identifier (line 212) | def bayantel_landline_identifier(self) -> str: method misc_landline_identifier (line 215) | def misc_landline_identifier(self) -> str: method non_area2_landline_area_code (line 218) | def non_area2_landline_area_code(self) -> str: method globe_mobile_number (line 221) | def globe_mobile_number(self) -> str: method smart_mobile_number (line 224) | def smart_mobile_number(self) -> str: method sun_mobile_number (line 227) | def sun_mobile_number(self) -> str: method mobile_number (line 230) | def mobile_number(self) -> str: method globe_area2_landline_number (line 233) | def globe_area2_landline_number(self) -> str: method pldt_area2_landline_number (line 236) | def pldt_area2_landline_number(self) -> str: method bayantel_area2_landline_number (line 239) | def bayantel_area2_landline_number(self) -> str: method misc_area2_landline_number (line 242) | def misc_area2_landline_number(self) -> str: method area2_landline_number (line 245) | def area2_landline_number(self) -> str: method non_area2_landline_number (line 248) | def non_area2_landline_number(self) -> str: method landline_number (line 251) | def landline_number(self) -> str: FILE: faker/providers/phone_number/en_US/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method basic_phone_number (line 48) | def basic_phone_number(self) -> str: FILE: faker/providers/phone_number/es_AR/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/es_CL/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method landline_code (line 55) | def landline_code(self) -> str: method cellphone_block (line 58) | def cellphone_block(self) -> str: method special_code (line 61) | def special_code(self) -> str: method phone_number (line 64) | def phone_number(self) -> str: FILE: faker/providers/phone_number/es_CO/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/es_ES/__init__.py class Provider (line 6) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/es_MX/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/fa_IR/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/fi_FI/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/fil_PH/__init__.py class Provider (line 4) | class Provider(EnPhPhoneNumberProvider): FILE: faker/providers/phone_number/fr_CH/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/fr_DZ/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/fr_FR/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method area_code_without_separator (line 275) | def area_code_without_separator(self) -> str: method area_code_with_separator (line 278) | def area_code_with_separator(self) -> str: method phone_number (line 282) | def phone_number(self) -> str: FILE: faker/providers/phone_number/he_IL/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/hi_IN/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/hr_HR/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/hu_HU/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/hy_AM/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/id_ID/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/it_CH/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/it_IT/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method area_code (line 265) | def area_code(self) -> str: method phone_number (line 268) | def phone_number(self) -> str: FILE: faker/providers/phone_number/ja_JP/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/ka_GE/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/ko_KR/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/lt_LT/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/lv_LV/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/ne_NP/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/nl_BE/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/nl_NL/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/no_NO/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/pl_PL/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/pt_BR/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method cellphone_number (line 134) | def cellphone_number(self) -> str: method service_phone_number (line 138) | def service_phone_number(self) -> str: FILE: faker/providers/phone_number/pt_PT/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/ro_RO/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/ru_RU/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/sk_SK/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/sl_SI/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/sv_SE/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/ta_IN/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/th_TH/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/tl_PH/__init__.py class Provider (line 4) | class Provider(EnPhPhoneNumberProvider): FILE: faker/providers/phone_number/tr_TR/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/tw_GH/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/uk_UA/__init__.py class Provider (line 5) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/uz_UZ/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/vi_VN/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): FILE: faker/providers/phone_number/zh_CN/__init__.py class Provider (line 4) | class Provider(PhoneNumberProvider): method phonenumber_prefix (line 39) | def phonenumber_prefix(self) -> int: FILE: faker/providers/phone_number/zh_TW/__init__.py class Provider (line 6) | class Provider(PhoneNumberProvider): FILE: faker/providers/profile/__init__.py class Provider (line 11) | class Provider(BaseProvider): method simple_profile (line 17) | def simple_profile(self, sex: Optional[SexLiteral] = None) -> Dict[str... method profile (line 35) | def profile( FILE: faker/providers/profile/en_US/__init__.py class Provider (line 4) | class Provider(ProfileProvider): # pragma: no cover FILE: faker/providers/python/__init__.py class EmptyEnumException (line 20) | class EmptyEnumException(BaseFakerException): class Provider (line 24) | class Provider(BaseProvider): method _check_signature (line 39) | def _check_signature(self, value_types: Optional[TypesSpec], allowed_t... method pyobject (line 60) | def pyobject( method pybool (line 94) | def pybool(self, truth_probability: int = 50) -> bool: method pystr (line 107) | def pystr( method pystr_format (line 135) | def pystr_format( method pyfloat (line 143) | def pyfloat( method _safe_random_int (line 255) | def _safe_random_int(self, min_value: float, max_value: float, positiv... method pyint (line 275) | def pyint(self, min_value: int = 0, max_value: int = 9999, step: int =... method _random_int_of_length (line 278) | def _random_int_of_length(self, length: int) -> int: method pydecimal (line 293) | def pydecimal( method pytuple (line 383) | def pytuple( method pyset (line 399) | def pyset( method pylist (line 415) | def pylist( method pyiterable (line 432) | def pyiterable( method _random_type (line 447) | def _random_type(self, type_list: List[str]) -> str: method _pyiterable (line 456) | def _pyiterable( method pydict (line 480) | def pydict( method pystruct (line 520) | def pystruct( method enum (line 564) | def enum(self, enum_cls: Type[TEnum]) -> TEnum: FILE: faker/providers/python/en_US/__init__.py class Provider (line 4) | class Provider(PythonProvider): # pragma: no cover FILE: faker/providers/sbn/__init__.py class Provider (line 10) | class Provider(BaseProvider): method _body (line 18) | def _body(self) -> List[str]: method _registrant_publication (line 32) | def _registrant_publication(reg_pub: str, rules: List[RegistrantRule])... method sbn9 (line 50) | def sbn9(self, separator: str = "-") -> str: FILE: faker/providers/sbn/en_US/__init__.py class Provider (line 4) | class Provider(SBNProvider): FILE: faker/providers/sbn/sbn.py class SBN (line 9) | class SBN: method __init__ (line 12) | def __init__( class SBN9 (line 21) | class SBN9(SBN): method __init__ (line 22) | def __init__(self, *args: Any, **kwargs: Any) -> None: method _check_digit (line 26) | def _check_digit(self) -> str: method format (line 39) | def format(self, separator: str = "") -> str: FILE: faker/providers/ssn/__init__.py class Provider (line 6) | class Provider(BaseProvider): method ssn (line 9) | def ssn(self) -> str: FILE: faker/providers/ssn/az_AZ/__init__.py class Provider (line 4) | class Provider(SsnProvider): method ssn (line 37) | def ssn(self) -> str: FILE: faker/providers/ssn/bg_BG/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 14) | def vat_id(self) -> str: FILE: faker/providers/ssn/bn_BD/__init__.py class Provider (line 4) | class Provider(SsnProvider): FILE: faker/providers/ssn/cs_CZ/__init__.py class Provider (line 7) | class Provider(BaseProvider): method vat_id (line 16) | def vat_id(self) -> str: method birth_number (line 23) | def birth_number(self) -> str: FILE: faker/providers/ssn/de_AT/__init__.py class Provider (line 7) | class Provider(BaseProvider): method vat_id (line 14) | def vat_id(self) -> str: method __get_check_digit (line 22) | def __get_check_digit(self, ssn_without_checkdigit: str) -> int: method ssn (line 34) | def ssn(self, birthdate: Optional[date] = None) -> str: FILE: faker/providers/ssn/de_CH/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/ssn/de_DE/__init__.py class Provider (line 10) | class Provider(BaseProvider): method __letter_to_digit_string (line 22) | def __letter_to_digit_string(self, letter: str) -> str: method __get_rvnr_checkdigit (line 28) | def __get_rvnr_checkdigit(self, rvnr: str) -> str: method vat_id (line 51) | def vat_id(self) -> str: method rvnr (line 60) | def rvnr(self, birthdate: Optional[date] = None) -> str: method kvnr (line 74) | def kvnr(self) -> str: FILE: faker/providers/ssn/dk_DK/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 11) | def vat_id(self) -> str: FILE: faker/providers/ssn/el_CY/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 11) | def vat_id(self) -> str: FILE: faker/providers/ssn/el_GR/__init__.py function tin_checksum (line 8) | def tin_checksum(tin: str) -> int: class Provider (line 31) | class Provider(BaseProvider): method vat_id (line 40) | def vat_id(self, prefix: bool = True) -> str: method tin (line 52) | def tin(self) -> str: method ssn (line 64) | def ssn(self) -> str: method police_id (line 75) | def police_id(self) -> str: FILE: faker/providers/ssn/en_CA/__init__.py function checksum (line 4) | def checksum(sin): class Provider (line 42) | class Provider(SsnProvider): method ssn (line 49) | def ssn(self) -> str: FILE: faker/providers/ssn/en_GB/__init__.py class Provider (line 6) | class Provider(BaseProvider): method ssn (line 23) | def ssn(self) -> str: method vat_id (line 34) | def vat_id(self) -> str: FILE: faker/providers/ssn/en_IE/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 15) | def vat_id(self) -> str: FILE: faker/providers/ssn/en_IN/__init__.py class Provider (line 6) | class Provider(BaseProvider): method aadhaar_id (line 13) | def aadhaar_id(self) -> str: FILE: faker/providers/ssn/en_PH/__init__.py class Provider (line 4) | class Provider(BaseProvider): method sss (line 36) | def sss(self) -> str: method gsis (line 39) | def gsis(self) -> str: method pagibig (line 42) | def pagibig(self) -> str: method philhealth (line 45) | def philhealth(self) -> str: method umid (line 48) | def umid(self) -> str: method ssn (line 51) | def ssn(self) -> str: FILE: faker/providers/ssn/en_US/__init__.py class Provider (line 6) | class Provider(BaseProvider): method itin (line 12) | def itin(self) -> str: method ein (line 34) | def ein(self) -> str: method invalid_ssn (line 142) | def invalid_ssn(self) -> str: method ssn (line 205) | def ssn(self, taxpayer_identification_number_type: str = SSN_TYPE) -> ... FILE: faker/providers/ssn/es_CA/__init__.py class Provider (line 4) | class Provider(BaseProvider): FILE: faker/providers/ssn/es_CL/__init__.py function rut_check_digit (line 6) | def rut_check_digit(number: int) -> str: class Provider (line 27) | class Provider(BaseProvider): method person_rut (line 44) | def person_rut(self) -> str: method company_rut (line 50) | def company_rut(self) -> str: method rut (line 56) | def rut(self, min: int = minimum_rut_person, max: int = maximum_rut_co... FILE: faker/providers/ssn/es_CO/__init__.py function nit_check_digit (line 8) | def nit_check_digit(nit: str) -> str: class Provider (line 27) | class Provider(BaseProvider): method nuip (line 42) | def nuip(self) -> str: method natural_person_nit_with_check_digit (line 51) | def natural_person_nit_with_check_digit(self) -> str: method legal_person_nit (line 59) | def legal_person_nit(self) -> str: method legal_person_nit_with_check_digit (line 66) | def legal_person_nit_with_check_digit(self) -> str: FILE: faker/providers/ssn/es_ES/__init__.py class Provider (line 6) | class Provider(BaseProvider): method vat_id (line 17) | def vat_id(self) -> str: method nie (line 27) | def nie(self) -> str: method nif (line 40) | def nif(self) -> str: method cif (line 51) | def cif(self) -> str: method nuss (line 64) | def nuss(self, company: bool = False) -> str: method _calculate_control_doi (line 82) | def _calculate_control_doi(doi: str) -> str: method _calculate_control_cif (line 93) | def _calculate_control_cif(cls, cif: str) -> str: FILE: faker/providers/ssn/es_MX/__init__.py function _reduce_digits (line 104) | def _reduce_digits(number: int) -> int: function ssn_checksum (line 119) | def ssn_checksum(digits: map) -> int: function curp_checksum (line 126) | def curp_checksum(characters: str) -> int: class Provider (line 134) | class Provider(BaseProvider): method ssn (line 141) | def ssn(self) -> str: method curp (line 159) | def curp(self) -> str: method rfc (line 201) | def rfc(self, natural: bool = True) -> str: method elector_code (line 230) | def elector_code(self, gender: Optional[Literal["H", "M"]] = None) -> ... FILE: faker/providers/ssn/et_EE/__init__.py function checksum (line 9) | def checksum(digits: List[int]) -> int: class Provider (line 31) | class Provider(SsnProvider): method ssn (line 35) | def ssn(self, min_age: int = 16, max_age: int = 90) -> str: method vat_id (line 64) | def vat_id(self) -> str: FILE: faker/providers/ssn/fi_FI/__init__.py class Provider (line 6) | class Provider(SsnProvider): method ssn (line 7) | def ssn(self, min_age: int = 0, max_age: int = 105, artificial: bool =... method _get_century_code (line 48) | def _get_century_code(year: int) -> str: method vat_id (line 62) | def vat_id(self) -> str: FILE: faker/providers/ssn/fil_PH/__init__.py class Provider (line 4) | class Provider(EnPhSsnProvider): FILE: faker/providers/ssn/fr_CH/__init__.py class Provider (line 6) | class Provider(SsnProvider): method ssn (line 9) | def ssn(self) -> str: method vat_id (line 31) | def vat_id(self) -> str: FILE: faker/providers/ssn/fr_FR/__init__.py function calculate_checksum (line 6) | def calculate_checksum(ssn_without_checksum: int) -> int: class Provider (line 10) | class Provider(BaseProvider): method ssn (line 128) | def ssn(self) -> str: method vat_id (line 153) | def vat_id(self) -> str: FILE: faker/providers/ssn/he_IL/__init__.py class Provider (line 4) | class Provider(SsnProvider): method ssn (line 5) | def ssn(self) -> str: FILE: faker/providers/ssn/hr_HR/__init__.py function checksum (line 6) | def checksum(digits: List[int]) -> int: class Provider (line 24) | class Provider(SsnProvider): method ssn (line 35) | def ssn(self) -> str: method vat_id (line 44) | def vat_id(self) -> str: FILE: faker/providers/ssn/hu_HU/__init__.py function zfix (line 9) | def zfix(d: int) -> str: class Provider (line 13) | class Provider(SsnProvider): method ssn (line 14) | def ssn(self, dob: Optional[str] = None, gender: Optional[SexLiteral] ... method vat_id (line 130) | def vat_id(self) -> str: FILE: faker/providers/ssn/it_IT/__init__.py function checksum (line 8004) | def checksum(value: str) -> str: class Provider (line 8012) | class Provider(SsnProvider): method ssn (line 8017) | def ssn(self) -> str: method cie (line 8036) | def cie(self) -> str: method vat_id (line 8050) | def vat_id(self) -> str: method _get_name_letters (line 8057) | def _get_name_letters(self, sex: int) -> str: method _get_surname_letters (line 8092) | def _get_surname_letters(self) -> str: method _transliterate_name (line 8116) | def _transliterate_name(self, name: str) -> str: method _get_vowels (line 8120) | def _get_vowels(self, sequence: str) -> list: method _get_consonants (line 8130) | def _get_consonants(self, sequence: str) -> list: method _pad_shorter (line 8140) | def _pad_shorter(self, sequence: str) -> str: method is_leap_year (line 8147) | def is_leap_year(year: int) -> bool: method _get_max_day (line 8155) | def _get_max_day(self, is_leap_year: bool, month: str) -> int: FILE: faker/providers/ssn/ko_KR/__init__.py class Provider (line 4) | class Provider(SsnProvider): FILE: faker/providers/ssn/lb_LU/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 11) | def vat_id(self) -> str: FILE: faker/providers/ssn/lt_LT/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 14) | def vat_id(self) -> str: FILE: faker/providers/ssn/lv_LV/__init__.py class Provider (line 6) | class Provider(SsnProvider): method ssn (line 7) | def ssn(self, min_age: int = 0, max_age: int = 105) -> str: method _get_century_code (line 38) | def _get_century_code(year: int) -> int: method vat_id (line 56) | def vat_id(self) -> str: FILE: faker/providers/ssn/mt_MT/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 11) | def vat_id(self) -> str: FILE: faker/providers/ssn/nl_BE/__init__.py class Provider (line 9) | class Provider(SsnProvider): method ssn (line 10) | def ssn(self) -> str: method vat_id (line 59) | def vat_id(self) -> str: FILE: faker/providers/ssn/nl_NL/__init__.py class Provider (line 4) | class Provider(SsnProvider): method ssn (line 5) | def ssn(self) -> str: method vat_id (line 40) | def vat_id(self) -> str: FILE: faker/providers/ssn/no_NO/__init__.py function checksum (line 10) | def checksum(digits: Sequence[int], scale: List[int]) -> int: class Provider (line 29) | class Provider(SsnProvider): method ssn (line 33) | def ssn(self, dob: Optional[str] = None, gender: Optional[SexLiteral] ... FILE: faker/providers/ssn/pl_PL/__init__.py function checksum (line 7) | def checksum(digits: List[int]) -> int: function calculate_month (line 22) | def calculate_month(birth_date: datetime) -> int: class Provider (line 31) | class Provider(SsnProvider): method ssn (line 32) | def ssn(self) -> str: method vat_id (line 60) | def vat_id(self) -> str: FILE: faker/providers/ssn/pt_BR/__init__.py function checksum (line 6) | def checksum(digits: List[int]) -> int: class Provider (line 26) | class Provider(SsnProvider): method ssn (line 34) | def ssn(self) -> str: method cpf (line 43) | def cpf(self) -> str: method rg (line 47) | def rg(self) -> str: FILE: faker/providers/ssn/pt_PT/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 11) | def vat_id(self) -> str: FILE: faker/providers/ssn/ro_RO/__init__.py function ssn_checksum (line 4) | def ssn_checksum(number: str) -> int: function vat_checksum (line 13) | def vat_checksum(number: str) -> int: class Provider (line 23) | class Provider(BaseProvider): method vat_id (line 49) | def vat_id(self) -> str: method ssn (line 65) | def ssn(self) -> str: FILE: faker/providers/ssn/ru_RU/__init__.py class Provider (line 4) | class Provider(SsnProvider): FILE: faker/providers/ssn/sk_SK/__init__.py class Provider (line 6) | class Provider(BaseProvider): method vat_id (line 15) | def vat_id(self) -> str: method birth_number (line 23) | def birth_number(self) -> str: FILE: faker/providers/ssn/sl_SI/__init__.py class Provider (line 4) | class Provider(BaseProvider): method vat_id (line 11) | def vat_id(self) -> str: FILE: faker/providers/ssn/sv_SE/__init__.py class Provider (line 11) | class Provider(SsnProvider): method _org_to_vat (line 13) | def _org_to_vat(org_id: str) -> str: method ssn (line 19) | def ssn( method org_id (line 53) | def org_id(self, long: bool = False, dash: bool = True) -> str: method vat_id (line 73) | def vat_id(self) -> str: method org_and_vat_id (line 82) | def org_and_vat_id(self, long: bool = False, dash: bool = True) -> Tup... FILE: faker/providers/ssn/th_TH/__init__.py class Provider (line 6) | class Provider(BaseProvider): method ssn (line 16) | def ssn(self) -> str: method vat_id (line 54) | def vat_id(self) -> str: FILE: faker/providers/ssn/tl_PH/__init__.py class Provider (line 4) | class Provider(EnPhSsnProvider): FILE: faker/providers/ssn/tr_TR/__init__.py class Provider (line 4) | class Provider(BaseProvider): method ssn (line 16) | def ssn(self) -> str: FILE: faker/providers/ssn/uk_UA/__init__.py function select_gender (line 10) | def select_gender(gender: SexLiteral) -> int: function calculate_day_count (line 16) | def calculate_day_count(birthday: date) -> int: function calculate_check_sum (line 22) | def calculate_check_sum(val: str) -> int: class Provider (line 30) | class Provider(SsnProvider): method ssn (line 31) | def ssn(self, birthday: Optional[str] = None, gender: Optional[SexLite... FILE: faker/providers/ssn/zh_CN/__init__.py class Provider (line 9) | class Provider(SsnProvider): method ssn (line 3529) | def ssn( FILE: faker/providers/ssn/zh_TW/__init__.py function checksum (line 4) | def checksum(s: str) -> int: class Provider (line 41) | class Provider(SsnProvider): method ssn (line 42) | def ssn(self) -> str: FILE: faker/providers/user_agent/__init__.py class Provider (line 10) | class Provider(BaseProvider): method mac_processor (line 157) | def mac_processor(self) -> str: method linux_processor (line 161) | def linux_processor(self) -> str: method user_agent (line 165) | def user_agent(self) -> str: method chrome (line 170) | def chrome( method firefox (line 222) | def firefox(self) -> str: method safari (line 272) | def safari(self) -> str: method opera (line 317) | def opera(self) -> str: method internet_explorer (line 329) | def internet_explorer(self) -> str: method windows_platform_token (line 337) | def windows_platform_token(self) -> str: method linux_platform_token (line 341) | def linux_platform_token(self) -> str: method mac_platform_token (line 345) | def mac_platform_token(self) -> str: method android_platform_token (line 352) | def android_platform_token(self) -> str: method ios_platform_token (line 356) | def ios_platform_token(self) -> str: FILE: faker/providers/user_agent/en_US/__init__.py class Provider (line 4) | class Provider(UserAgentProvider): # pragma: no cover FILE: faker/proxy.py class Faker (line 23) | class Faker: method __init__ (line 31) | def __init__( method __dir__ (line 94) | def __dir__(self): method __getitem__ (line 100) | def __getitem__(self, locale: str) -> Faker: method __getattribute__ (line 107) | def __getattribute__(self, attr: str) -> Any: method __getattr__ (line 122) | def __getattr__(self, attr: str) -> Any: method __deepcopy__ (line 141) | def __deepcopy__(self, memodict): method __setstate__ (line 152) | def __setstate__(self, state: Any) -> None: method unique (line 156) | def unique(self) -> UniqueProxy: method optional (line 160) | def optional(self) -> OptionalProxy: method _select_factory (line 163) | def _select_factory(self, method_name: str) -> Factory: method _select_factory_distribution (line 185) | def _select_factory_distribution(self, factories, weights): method _select_factory_choice (line 188) | def _select_factory_choice(self, factories): method _map_provider_method (line 191) | def _map_provider_method(self, method_name: str) -> tuple[list[Factory... method seed (line 225) | def seed(cls, seed: SeedType | None = None) -> None: method seed_instance (line 233) | def seed_instance(self, seed: SeedType | None = None) -> None: method seed_locale (line 242) | def seed_locale(self, locale: str, seed: SeedType | None = None) -> None: method random (line 252) | def random(self) -> Random: method random (line 268) | def random(self, value: Random) -> None: method locales (line 284) | def locales(self) -> list[str]: method weights (line 288) | def weights(self) -> list[int | float] | None: method factories (line 292) | def factories(self) -> list[Generator | Faker]: method items (line 295) | def items(self) -> list[tuple[str, Generator | Faker]]: class UniqueProxy (line 299) | class UniqueProxy: method __init__ (line 300) | def __init__(self, proxy: Faker, excluded_types: tuple[type, ...] = ()): method clear (line 306) | def clear(self) -> None: method exclude_types (line 309) | def exclude_types(self, types: list[type]) -> UniqueProxy: method __getitem__ (line 330) | def __getitem__(self, locale: str) -> UniqueProxy: method __getattr__ (line 337) | def __getattr__(self, name: str) -> Any: method __getstate__ (line 344) | def __getstate__(self): method __setstate__ (line 351) | def __setstate__(self, state): method _make_hashable (line 354) | def _make_hashable(self, value: Any) -> Any: method _wrap (line 364) | def _wrap(self, name: str, function: Callable) -> Callable: class OptionalProxy (line 407) | class OptionalProxy: method __init__ (line 412) | def __init__(self, proxy: Faker): method __getattr__ (line 415) | def __getattr__(self, name: str) -> Any: method __getstate__ (line 422) | def __getstate__(self): method __setstate__ (line 429) | def __setstate__(self, state): method _wrap (line 432) | def _wrap(self, name: str, function: Callable[..., RetType]) -> Callab... FILE: faker/proxy.pyi class Faker (line 35) | class Faker: method address (line 36) | def address(self) -> str: method administrative_unit (line 42) | def administrative_unit(self) -> str: ... method bothify (line 43) | def bothify(self, text: str = ..., letters: str = ...) -> str: method building_number (line 67) | def building_number(self) -> str: method city (line 73) | def city(self) -> str: method city_prefix (line 79) | def city_prefix(self) -> str: ... method city_suffix (line 80) | def city_suffix(self) -> str: method country (line 86) | def country(self) -> str: method country_code (line 92) | def country_code(self, representation: str = ...) -> str: method current_country (line 100) | def current_country(self) -> str: method current_country_code (line 106) | def current_country_code(self) -> str: method hexify (line 112) | def hexify(self, text: str = ..., upper: bool = ...) -> str: method language_code (line 125) | def language_code(self) -> str: method lexify (line 131) | def lexify(self, text: str = ..., letters: str = ...) -> str: method locale (line 143) | def locale(self) -> str: method military_apo (line 149) | def military_apo(self) -> str: method military_dpo (line 155) | def military_dpo(self) -> str: method military_ship (line 161) | def military_ship(self) -> str: method military_state (line 167) | def military_state(self) -> str: method numerify (line 173) | def numerify(self, text: str = ...) -> str: method postalcode (line 195) | def postalcode(self) -> str: ... method postalcode_in_state (line 196) | def postalcode_in_state(self, state_abbr: Optional[str] = ...) -> str:... method postalcode_plus4 (line 197) | def postalcode_plus4(self) -> str: ... method postcode (line 198) | def postcode(self) -> str: method postcode_in_state (line 204) | def postcode_in_state(self, state_abbr: Optional[str] = ...) -> str: method random_choices (line 212) | def random_choices( method random_digit (line 239) | def random_digit(self) -> int: method random_digit_above_two (line 245) | def random_digit_above_two(self) -> int: method random_digit_not_null (line 251) | def random_digit_not_null(self) -> int: method random_digit_not_null_or_empty (line 257) | def random_digit_not_null_or_empty(self) -> Union[int, str]: method random_digit_or_empty (line 266) | def random_digit_or_empty(self) -> Union[int, str]: method random_element (line 275) | def random_element(self, elements: Union[Collection[T], OrderedDict[T,... method random_elements (line 294) | def random_elements( method random_int (line 359) | def random_int(self, min: int = ..., max: int = ..., step: int = ...) ... method random_letter (line 372) | def random_letter(self) -> str: method random_letters (line 378) | def random_letters(self, length: int = ...) -> Sequence[str]: method random_lowercase_letter (line 386) | def random_lowercase_letter(self) -> str: method random_number (line 392) | def random_number(self, digits: Optional[int] = ..., fix_len: bool = .... method random_sample (line 411) | def random_sample( method random_uppercase_letter (line 426) | def random_uppercase_letter(self) -> str: method randomize_nb_elements (line 432) | def randomize_nb_elements( method secondary_address (line 458) | def secondary_address(self) -> str: ... method state (line 459) | def state(self) -> str: ... method state_abbr (line 460) | def state_abbr(self, include_territories: bool = ..., include_freely_a... method street_address (line 474) | def street_address(self) -> str: method street_name (line 480) | def street_name(self) -> str: method street_suffix (line 486) | def street_suffix(self) -> str: method zipcode (line 492) | def zipcode(self) -> str: ... method zipcode_in_state (line 493) | def zipcode_in_state(self, state_abbr: Optional[str] = ...) -> str: ... method zipcode_plus4 (line 494) | def zipcode_plus4(self) -> str: ... method license_plate (line 495) | def license_plate(self) -> str: method vin (line 501) | def vin(self) -> str: method aba (line 507) | def aba(self) -> str: method bank (line 513) | def bank(self) -> str: method bank_country (line 519) | def bank_country(self) -> str: method bban (line 525) | def bban(self) -> str: method iban (line 531) | def iban(self) -> str: method swift (line 537) | def swift(self, length: Optional[int] = ..., primary: bool = ..., use_... method swift11 (line 573) | def swift11(self, primary: bool = ..., use_dataset: bool = ...) -> str: method swift8 (line 587) | def swift8(self, use_dataset: bool = ...) -> str: method ean (line 600) | def ean(self, length: int = ..., prefixes: Tuple[Union[int, str, Tuple... method ean13 (line 617) | def ean13( method ean8 (line 655) | def ean8(self, prefixes: Tuple[Union[int, str, Tuple[Union[int, str], ... method localized_ean (line 671) | def localized_ean(self, length: int = ...) -> str: method localized_ean13 (line 688) | def localized_ean13(self) -> str: method localized_ean8 (line 697) | def localized_ean8(self) -> str: method upc_a (line 706) | def upc_a( method upc_e (line 745) | def upc_e(self, base: Optional[str] = ..., number_system_digit: Option... method color (line 793) | def color( method color_hsl (line 836) | def color_hsl( method color_hsv (line 848) | def color_hsv( method color_name (line 860) | def color_name(self) -> str: method color_rgb (line 868) | def color_rgb( method color_rgb_float (line 880) | def color_rgb_float( method hex_color (line 892) | def hex_color(self) -> str: method rgb_color (line 900) | def rgb_color(self) -> str: method rgb_css_color (line 908) | def rgb_css_color(self) -> str: method safe_color_name (line 916) | def safe_color_name(self) -> str: method safe_hex_color (line 924) | def safe_hex_color(self) -> str: method bs (line 932) | def bs(self) -> str: method catch_phrase (line 938) | def catch_phrase(self) -> str: method company (line 944) | def company(self) -> str: method company_suffix (line 950) | def company_suffix(self) -> str: method credit_card_expire (line 956) | def credit_card_expire( method credit_card_full (line 973) | def credit_card_full(self, card_type: Optional[CardType] = ...) -> str: method credit_card_number (line 979) | def credit_card_number(self, card_type: Optional[CardType] = ...) -> str: method credit_card_provider (line 985) | def credit_card_provider(self, card_type: Optional[CardType] = ...) ->... method credit_card_security_code (line 991) | def credit_card_security_code(self, card_type: Optional[CardType] = ..... method cryptocurrency (line 997) | def cryptocurrency(self) -> Tuple[str, str]: ... method cryptocurrency_code (line 998) | def cryptocurrency_code(self) -> str: ... method cryptocurrency_name (line 999) | def cryptocurrency_name(self) -> str: ... method currency (line 1000) | def currency(self) -> Tuple[str, str]: ... method currency_code (line 1001) | def currency_code(self) -> str: ... method currency_name (line 1002) | def currency_name(self) -> str: ... method currency_symbol (line 1003) | def currency_symbol(self, code: Optional[str] = ...) -> str: method pricetag (line 1009) | def pricetag(self) -> str: ... method am_pm (line 1010) | def am_pm(self) -> str: method century (line 1016) | def century(self) -> str: method date (line 1022) | def date( method date_between (line 1039) | def date_between( method date_between_dates (line 1057) | def date_between_dates( method date_object (line 1072) | def date_object(self, end_datetime: Optional[datetime.datetime] = ...)... method date_of_birth (line 1083) | def date_of_birth( method date_this_century (line 1100) | def date_this_century(self, before_today: bool = ..., after_today: boo... method date_this_decade (line 1112) | def date_this_decade(self, before_today: bool = ..., after_today: bool... method date_this_month (line 1124) | def date_this_month(self, before_today: bool = ..., after_today: bool ... method date_this_year (line 1136) | def date_this_year(self, before_today: bool = ..., after_today: bool =... method date_time (line 1148) | def date_time( method date_time_ad (line 1163) | def date_time_ad( method date_time_between (line 1181) | def date_time_between( method date_time_between_dates (line 1199) | def date_time_between_dates( method date_time_this_century (line 1218) | def date_time_this_century( method date_time_this_decade (line 1233) | def date_time_this_decade( method date_time_this_month (line 1248) | def date_time_this_month( method date_time_this_year (line 1263) | def date_time_this_year( method day_of_month (line 1278) | def day_of_month(self) -> str: method day_of_week (line 1284) | def day_of_week(self) -> str: method future_date (line 1290) | def future_date( method future_datetime (line 1305) | def future_datetime( method iso8601 (line 1322) | def iso8601( method month (line 1341) | def month(self) -> str: method month_name (line 1347) | def month_name(self) -> str: method past_date (line 1353) | def past_date( method past_datetime (line 1370) | def past_datetime( method pytimezone (line 1388) | def pytimezone(self, *args: Any, **kwargs: Any) -> Optional[datetime.t... method time (line 1398) | def time( method time_delta (line 1414) | def time_delta( method time_object (line 1427) | def time_object( method time_series (line 1440) | def time_series( method timezone (line 1466) | def timezone(self) -> str: method unix_time (line 1472) | def unix_time( method year (line 1490) | def year(self) -> str: method doi (line 1496) | def doi(self) -> str: method emoji (line 1506) | def emoji(self) -> str: method file_extension (line 1512) | def file_extension(self, category: Optional[str] = ...) -> str: method file_name (line 1525) | def file_name(self, category: Optional[str] = ..., extension: Optional... method file_path (line 1545) | def file_path( method mime_type (line 1585) | def mime_type(self, category: Optional[str] = ...) -> str: method unix_device (line 1599) | def unix_device(self, prefix: Optional[str] = ...) -> str: method unix_partition (line 1611) | def unix_partition(self, prefix: Optional[str] = ...) -> str: method coordinate (line 1623) | def coordinate(self, center: Optional[float] = ..., radius: Union[floa... method latitude (line 1629) | def latitude(self) -> Decimal: ... method latlng (line 1630) | def latlng(self) -> Tuple[Decimal, Decimal]: ... method local_latlng (line 1631) | def local_latlng(self, country_code: str = ..., coords_only: bool = ..... method location_on_land (line 1638) | def location_on_land(self, coords_only: bool = ...) -> Tuple[str, ...]: method longitude (line 1646) | def longitude(self) -> Decimal: ... method ascii_company_email (line 1647) | def ascii_company_email(self) -> str: ... method ascii_email (line 1648) | def ascii_email(self) -> str: ... method ascii_free_email (line 1649) | def ascii_free_email(self) -> str: ... method ascii_safe_email (line 1650) | def ascii_safe_email(self) -> str: ... method company_email (line 1651) | def company_email(self) -> str: ... method dga (line 1652) | def dga( method domain_name (line 1673) | def domain_name(self, levels: int = ...) -> str: method domain_word (line 1685) | def domain_word(self) -> str: ... method email (line 1686) | def email(self, safe: bool = ..., domain: Optional[str] = ...) -> str:... method free_email (line 1687) | def free_email(self) -> str: ... method free_email_domain (line 1688) | def free_email_domain(self) -> str: ... method hostname (line 1689) | def hostname(self, levels: int = ...) -> str: method http_method (line 1702) | def http_method(self) -> str: method http_status_code (line 1711) | def http_status_code(self, include_unassigned: bool = ...) -> int: method iana_id (line 1725) | def iana_id(self) -> str: method image_url (line 1734) | def image_url( method ipv4 (line 1750) | def ipv4(self, network: bool = ..., address_class: Optional[str] = ...... method ipv4_network_class (line 1761) | def ipv4_network_class(self) -> str: method ipv4_private (line 1769) | def ipv4_private(self, network: bool = ..., address_class: Optional[st... method ipv4_public (line 1779) | def ipv4_public(self, network: bool = ..., address_class: Optional[str... method ipv6 (line 1789) | def ipv6(self, network: bool = ...) -> str: method mac_address (line 1795) | def mac_address(self, multicast: bool = ...) -> str: method nic_handle (line 1804) | def nic_handle(self, suffix: str = ...) -> str: method nic_handles (line 1813) | def nic_handles(self, count: int = ..., suffix: str = ...) -> List[str]: method port_number (line 1821) | def port_number(self, is_system: bool = ..., is_user: bool = ..., is_d... method ripe_id (line 1833) | def ripe_id(self) -> str: method safe_domain_name (line 1842) | def safe_domain_name(self) -> str: ... method safe_email (line 1843) | def safe_email(self) -> str: ... method slug (line 1844) | def slug(self, value: Optional[str] = ...) -> str: method tld (line 1850) | def tld(self) -> str: ... method uri (line 1851) | def uri(self, schemes: Optional[List[str]] = ..., deep: Optional[int] ... method uri_extension (line 1861) | def uri_extension(self) -> str: ... method uri_page (line 1862) | def uri_page(self) -> str: ... method uri_path (line 1863) | def uri_path(self, deep: Optional[int] = ...) -> str: ... method url (line 1864) | def url(self, schemes: Optional[List[str]] = ...) -> str: method user_name (line 1873) | def user_name(self) -> str: ... method isbn10 (line 1874) | def isbn10(self, separator: str = ...) -> str: method isbn13 (line 1880) | def isbn13(self, separator: str = ...) -> str: method job (line 1886) | def job(self) -> str: ... method job_female (line 1887) | def job_female(self) -> str: ... method job_male (line 1888) | def job_male(self) -> str: ... method get_words_list (line 1889) | def get_words_list( method paragraph (line 1916) | def paragraph( method paragraphs (line 1940) | def paragraphs(self, nb: int = ..., ext_word_list: Optional[Sequence[s... method sentence (line 1954) | def sentence( method sentences (line 1976) | def sentences(self, nb: int = ..., ext_word_list: Optional[Sequence[st... method text (line 1991) | def text(self, max_nb_chars: int = ..., ext_word_list: Optional[Sequen... method texts (line 2008) | def texts( method word (line 2026) | def word(self, part_of_speech: Optional[str] = ..., ext_word_list: Opt... method words (line 2038) | def words( method binary (line 2068) | def binary(self, length: int = ...) -> bytes: method boolean (line 2079) | def boolean(self, chance_of_getting_true: int = ...) -> bool: method csv (line 2089) | def csv( method dsv (line 2109) | def dsv( method fixed_width (line 2148) | def fixed_width( method image (line 2191) | def image( method json (line 2218) | def json( method json_bytes (line 2271) | def json_bytes( method md5 (line 2287) | def md5(self) -> str: method md5 (line 2300) | def md5(self, raw_output: Literal[True]) -> bytes: method md5 (line 2313) | def md5(self, raw_output: Literal[False]) -> str: method null_boolean (line 2325) | def null_boolean(self) -> Optional[bool]: method password (line 2331) | def password( method psv (line 2354) | def psv( method sha1 (line 2375) | def sha1(self) -> str: method sha1 (line 2388) | def sha1(self, raw_output: Literal[True]) -> bytes: method sha1 (line 2401) | def sha1(self, raw_output: Literal[False]) -> str: method sha256 (line 2414) | def sha256(self) -> str: method sha256 (line 2427) | def sha256(self, raw_output: Literal[True]) -> bytes: method sha256 (line 2440) | def sha256(self, raw_output: Literal[False]) -> str: method tar (line 2452) | def tar( method tsv (line 2481) | def tsv( method uuid4 (line 2502) | def uuid4(self) -> str: method uuid4 (line 2516) | def uuid4(self, cast_to: None) -> UUID: method uuid4 (line 2530) | def uuid4(self, cast_to: Callable[[UUID], str]) -> str: method uuid4 (line 2544) | def uuid4(self, cast_to: Callable[[UUID], bytes]) -> bytes: method xml (line 2557) | def xml( method zip (line 2575) | def zip( method passport_dates (line 2604) | def passport_dates(self, birthday: datetime.date = ...) -> Tuple[str, ... method passport_dob (line 2618) | def passport_dob(self) -> datetime.date: method passport_full (line 2624) | def passport_full(self) -> str: method passport_gender (line 2630) | def passport_gender(self, seed: int = ...) -> Literal["M", "F", "X"]: method passport_number (line 2640) | def passport_number(self) -> str: method passport_owner (line 2646) | def passport_owner(self, gender: Literal["M", "F", "X"] = ...) -> Tupl... method first_name (line 2654) | def first_name(self) -> str: ... method first_name_female (line 2655) | def first_name_female(self) -> str: ... method first_name_male (line 2656) | def first_name_male(self) -> str: ... method first_name_nonbinary (line 2657) | def first_name_nonbinary(self) -> str: ... method language_name (line 2658) | def language_name(self) -> str: method last_name (line 2664) | def last_name(self) -> str: ... method last_name_female (line 2665) | def last_name_female(self) -> str: ... method last_name_male (line 2666) | def last_name_male(self) -> str: ... method last_name_nonbinary (line 2667) | def last_name_nonbinary(self) -> str: ... method name (line 2668) | def name(self) -> str: method name_female (line 2674) | def name_female(self) -> str: ... method name_male (line 2675) | def name_male(self) -> str: ... method name_nonbinary (line 2676) | def name_nonbinary(self) -> str: ... method prefix (line 2677) | def prefix(self) -> str: ... method prefix_female (line 2678) | def prefix_female(self) -> str: ... method prefix_male (line 2679) | def prefix_male(self) -> str: ... method prefix_nonbinary (line 2680) | def prefix_nonbinary(self) -> str: ... method suffix (line 2681) | def suffix(self) -> str: ... method suffix_female (line 2682) | def suffix_female(self) -> str: ... method suffix_male (line 2683) | def suffix_male(self) -> str: ... method suffix_nonbinary (line 2684) | def suffix_nonbinary(self) -> str: ... method basic_phone_number (line 2685) | def basic_phone_number(self) -> str: ... method country_calling_code (line 2686) | def country_calling_code(self) -> str: ... method msisdn (line 2687) | def msisdn(self) -> str: method phone_number (line 2693) | def phone_number(self) -> str: ... method profile (line 2694) | def profile( method simple_profile (line 2703) | def simple_profile( method enum (line 2711) | def enum(self, enum_cls: Type[TEnum]) -> TEnum: method pybool (line 2720) | def pybool(self, truth_probability: int = ...) -> bool: method pydecimal (line 2730) | def pydecimal( method pydict (line 2738) | def pydict( method pyfloat (line 2754) | def pyfloat( method pyint (line 2762) | def pyint(self, min_value: int = ..., max_value: int = ..., step: int ... method pyiterable (line 2763) | def pyiterable( method pylist (line 2770) | def pylist( method pyobject (line 2777) | def pyobject( method pyset (line 2789) | def pyset( method pystr (line 2796) | def pystr(self, min_chars: Optional[int] = ..., max_chars: int = ..., ... method pystr_format (line 2808) | def pystr_format(self, string_format: str = ..., letters: str = ...) -... method pystruct (line 2809) | def pystruct( method pytuple (line 2815) | def pytuple( method sbn9 (line 2822) | def sbn9(self, separator: str = ...) -> str: ... method ein (line 2823) | def ein(self) -> str: method invalid_ssn (line 2837) | def invalid_ssn(self) -> str: method itin (line 2854) | def itin(self) -> str: method ssn (line 2869) | def ssn(self, taxpayer_identification_number_type: str = ...) -> str: method android_platform_token (line 2877) | def android_platform_token(self) -> str: method chrome (line 2883) | def chrome(self, version_from: int = ..., version_to: int = ..., build... method firefox (line 2889) | def firefox(self) -> str: method internet_explorer (line 2895) | def internet_explorer(self) -> str: method ios_platform_token (line 2901) | def ios_platform_token(self) -> str: method linux_platform_token (line 2907) | def linux_platform_token(self) -> str: method linux_processor (line 2913) | def linux_processor(self) -> str: method mac_platform_token (line 2919) | def mac_platform_token(self) -> str: method mac_processor (line 2925) | def mac_processor(self) -> str: method opera (line 2931) | def opera(self) -> str: method safari (line 2937) | def safari(self) -> str: method user_agent (line 2943) | def user_agent(self) -> str: method windows_platform_token (line 2949) | def windows_platform_token(self) -> str: method area_code (line 2955) | def area_code(self) -> str: ... method cellphone_number (line 2956) | def cellphone_number(self) -> str: ... method cellphone_provider_code (line 2957) | def cellphone_provider_code(self) -> str: ... method service_phone_number (line 2958) | def service_phone_number(self) -> str: ... method telephone_number (line 2959) | def telephone_number(self) -> str: ... method telephone_provider_code (line 2960) | def telephone_provider_code(self) -> str: ... method toll_number (line 2961) | def toll_number(self) -> str: ... method initials (line 2962) | def initials(self) -> str: method operator_id (line 2968) | def operator_id(self) -> str: ... method district (line 2969) | def district(self) -> str: method provider_code (line 2975) | def provider_code(self) -> str: ... method license_plate_ar (line 2976) | def license_plate_ar(self) -> str: method license_plate_en (line 2987) | def license_plate_en(self) -> str: method district_suffix (line 2993) | def district_suffix(self) -> str: method house_number (line 2999) | def house_number(self) -> str: method settlement (line 3005) | def settlement(self) -> str: method settlement_suffix (line 3011) | def settlement_suffix(self) -> str: method street (line 3017) | def street(self) -> str: method village (line 3023) | def village(self) -> str: method village_suffix (line 3029) | def village_suffix(self) -> str: method large_company (line 3035) | def large_company(self) -> str: method last_name_unique_to_female (line 3041) | def last_name_unique_to_female(self) -> str: ... method last_name_unique_to_male (line 3042) | def last_name_unique_to_male(self) -> str: ... method last_name_unisex (line 3043) | def last_name_unisex(self) -> str: ... method landline_number (line 3044) | def landline_number(self) -> str: ... method start_digit (line 3045) | def start_digit(self) -> str: ... method vat_id (line 3046) | def vat_id(self) -> str: method area_name (line 3053) | def area_name(self) -> str: method building_name (line 3059) | def building_name(self) -> str: method town (line 3065) | def town(self) -> str: method city_name (line 3071) | def city_name(self) -> str: method vehicle_category_letter (line 3077) | def vehicle_category_letter(self) -> str: method vehicle_category_number (line 3083) | def vehicle_category_number(self) -> str: method vehicle_serial_number (line 3089) | def vehicle_serial_number(self) -> str: method first_name_female_common (line 3096) | def first_name_female_common(self) -> str: method first_name_female_hinduism (line 3103) | def first_name_female_hinduism(self) -> str: method first_name_female_islamic (line 3110) | def first_name_female_islamic(self) -> str: method first_name_male_common (line 3117) | def first_name_male_common(self) -> str: method first_name_male_hinduism (line 3124) | def first_name_male_hinduism(self) -> str: method first_name_male_islamic (line 3131) | def first_name_male_islamic(self) -> str: method last_name_common (line 3138) | def last_name_common(self) -> str: method last_name_female_islamic (line 3145) | def last_name_female_islamic(self) -> str: method last_name_hinduism (line 3152) | def last_name_hinduism(self) -> str: method last_name_islamic (line 3159) | def last_name_islamic(self) -> str: method city_with_postcode (line 3166) | def city_with_postcode(self) -> str: ... method street_suffix_long (line 3167) | def street_suffix_long(self) -> str: ... method street_suffix_short (line 3168) | def street_suffix_short(self) -> str: ... method birth_number (line 3169) | def birth_number(self) -> str: method dk_street_name (line 3176) | def dk_street_name(self) -> str: method local_latitude (line 3182) | def local_latitude(self) -> Decimal: ... method local_longitude (line 3183) | def local_longitude(self) -> Decimal: ... method academic_prefix (line 3184) | def academic_prefix(self) -> str: ... method academic_suffix (line 3185) | def academic_suffix(self) -> str: ... method dialing_code (line 3186) | def dialing_code(self) -> str: ... method canton (line 3187) | def canton(self) -> Tuple[str, str]: method canton_code (line 3194) | def canton_code(self) -> str: method canton_name (line 3201) | def canton_name(self) -> str: method landline_code (line 3208) | def landline_code(self) -> str: ... method civil_status (line 3209) | def civil_status(self) -> Tuple[str, str]: ... method civil_status_code (line 3210) | def civil_status_code(self) -> str: ... method civil_status_name (line 3211) | def civil_status_name(self) -> str: ... method kvnr (line 3212) | def kvnr(self) -> str: method rvnr (line 3222) | def rvnr(self, birthdate: Optional[datetime.date] = ...) -> str: method line_address (line 3232) | def line_address(self) -> str: ... method region (line 3233) | def region(self) -> str: ... method street_prefix (line 3234) | def street_prefix(self) -> str: ... method street_prefix_long (line 3235) | def street_prefix_long(self) -> str: ... method street_prefix_short (line 3236) | def street_prefix_short(self) -> str: ... method police_id (line 3237) | def police_id(self) -> str: method tin (line 3244) | def tin(self) -> str: method postal_code_letter (line 3251) | def postal_code_letter(self) -> str: method postalcode_in_province (line 3258) | def postalcode_in_province(self, province_abbr: Optional[str] = ...) -... method postcode_in_province (line 3259) | def postcode_in_province(self, province_abbr: Optional[str] = ...) -> ... method province (line 3265) | def province(self) -> str: ... method province_abbr (line 3266) | def province_abbr(self) -> str: ... method county (line 3267) | def county(self) -> str: ... method pincode_in_army (line 3268) | def pincode_in_army(self) -> int: ... method pincode_in_military (line 3269) | def pincode_in_military(self) -> int: method pincode_in_state (line 3275) | def pincode_in_state(self, state_abbr: Optional[str] = ..., include_un... method postcode_in_army (line 3286) | def postcode_in_army(self) -> int: ... method postcode_in_military (line 3287) | def postcode_in_military(self) -> int: ... method union_territory (line 3288) | def union_territory(self) -> str: method zipcode_in_army (line 3294) | def zipcode_in_army(self) -> int: ... method zipcode_in_military (line 3295) | def zipcode_in_military(self) -> int: ... method aadhaar_id (line 3296) | def aadhaar_id(self) -> str: method building_prefix (line 3305) | def building_prefix(self) -> str: ... method city_prefix_abbr (line 3306) | def city_prefix_abbr(self) -> str: ... method city_state (line 3307) | def city_state(self) -> str: method rd_number (line 3315) | def rd_number(self) -> str: ... method te_reo_ending (line 3316) | def te_reo_ending(self) -> str: ... method te_reo_first (line 3317) | def te_reo_first(self) -> str: ... method te_reo_part (line 3318) | def te_reo_part(self) -> str: ... method building_name_suffix (line 3319) | def building_name_suffix(self) -> str: ... method building_unit_number (line 3320) | def building_unit_number(self) -> str: ... method floor_number (line 3321) | def floor_number(self) -> str: ... method floor_unit_number (line 3322) | def floor_unit_number(self) -> str: ... method luzon_province (line 3323) | def luzon_province(self) -> str: ... method luzon_province_address (line 3324) | def luzon_province_address(self) -> str: ... method luzon_province_postcode (line 3325) | def luzon_province_postcode(self) -> str: ... method metro_manila_address (line 3326) | def metro_manila_address(self) -> str: ... method metro_manila_lgu (line 3327) | def metro_manila_lgu(self) -> str: ... method metro_manila_postcode (line 3328) | def metro_manila_postcode(self) -> str: ... method mindanao_province (line 3329) | def mindanao_province(self) -> str: ... method mindanao_province_address (line 3330) | def mindanao_province_address(self) -> str: ... method mindanao_province_postcode (line 3331) | def mindanao_province_postcode(self) -> str: ... method ordinal_floor_number (line 3332) | def ordinal_floor_number(self) -> str: ... method ordinal_street_number (line 3333) | def ordinal_street_number(self) -> str: ... method partitioned_building_number (line 3334) | def partitioned_building_number(self) -> str: ... method province_lgu (line 3335) | def province_lgu(self) -> str: ... method standalone_building_number (line 3336) | def standalone_building_number(self) -> str: ... method subdivision_block_number (line 3337) | def subdivision_block_number(self) -> str: ... method subdivision_lot_number (line 3338) | def subdivision_lot_number(self) -> str: ... method subdivision_name (line 3339) | def subdivision_name(self) -> str: ... method subdivision_name_suffix (line 3340) | def subdivision_name_suffix(self) -> str: ... method subdivision_unit_number (line 3341) | def subdivision_unit_number(self) -> str: ... method visayas_province (line 3342) | def visayas_province(self) -> str: ... method visayas_province_address (line 3343) | def visayas_province_address(self) -> str: ... method visayas_province_postcode (line 3344) | def visayas_province_postcode(self) -> str: ... method automobile_license_plate (line 3345) | def automobile_license_plate(self) -> str: method motorcycle_license_plate (line 3355) | def motorcycle_license_plate(self) -> str: method protocol_license_plate (line 3365) | def protocol_license_plate(self) -> str: method company_type (line 3375) | def company_type(self) -> str: ... method random_company_acronym (line 3376) | def random_company_acronym(self) -> str: ... method random_company_adjective (line 3377) | def random_company_adjective(self) -> str: ... method random_company_noun_chain (line 3378) | def random_company_noun_chain(self) -> str: ... method random_company_product (line 3379) | def random_company_product(self) -> str: ... method english_paragraph (line 3380) | def english_paragraph(self, nb_sentences: int = ..., variable_nb_sente... method english_paragraphs (line 3389) | def english_paragraphs(self, nb: int = ...) -> List[str]: method english_sentence (line 3397) | def english_sentence(self, nb_words: int = ..., variable_nb_words: boo... method english_sentences (line 3406) | def english_sentences(self, nb: int = ...) -> List[str]: method english_text (line 3414) | def english_text(self, max_nb_chars: int = ...) -> str: method english_texts (line 3424) | def english_texts(self, nb_texts: int = ..., max_nb_chars: int = ...) ... method english_word (line 3433) | def english_word(self) -> str: method english_words (line 3439) | def english_words(self, nb: int = ..., unique: bool = ...) -> List[str]: method gemstone_name (line 3448) | def gemstone_name(self) -> str: ... method mountain_name (line 3449) | def mountain_name(self) -> str: ... method plant_name (line 3450) | def plant_name(self) -> str: ... method random_object_name (line 3451) | def random_object_name(self) -> str: ... method space_object_name (line 3452) | def space_object_name(self) -> str: ... method area2_landline_number (line 3453) | def area2_landline_number(self) -> str: ... method bayantel_area2_landline_number (line 3454) | def bayantel_area2_landline_number(self) -> str: ... method bayantel_landline_identifier (line 3455) | def bayantel_landline_identifier(self) -> str: ... method globe_area2_landline_number (line 3456) | def globe_area2_landline_number(self) -> str: ... method globe_mobile_number (line 3457) | def globe_mobile_number(self) -> str: ... method globe_mobile_number_prefix (line 3458) | def globe_mobile_number_prefix(self) -> str: ... method misc_area2_landline_number (line 3459) | def misc_area2_landline_number(self) -> str: ... method misc_landline_identifier (line 3460) | def misc_landline_identifier(self) -> str: ... method mobile_number (line 3461) | def mobile_number(self) -> str: ... method non_area2_landline_area_code (line 3462) | def non_area2_landline_area_code(self) -> str: ... method non_area2_landline_number (line 3463) | def non_area2_landline_number(self) -> str: ... method pldt_area2_landline_number (line 3464) | def pldt_area2_landline_number(self) -> str: ... method smart_mobile_number (line 3465) | def smart_mobile_number(self) -> str: ... method smart_mobile_number_prefix (line 3466) | def smart_mobile_number_prefix(self) -> str: ... method sun_mobile_number (line 3467) | def sun_mobile_number(self) -> str: ... method sun_mobile_number_prefix (line 3468) | def sun_mobile_number_prefix(self) -> str: ... method gsis (line 3469) | def gsis(self) -> str: ... method pagibig (line 3470) | def pagibig(self) -> str: ... method philhealth (line 3471) | def philhealth(self) -> str: ... method sss (line 3472) | def sss(self) -> str: ... method umid (line 3473) | def umid(self) -> str: ... method municipality (line 3474) | def municipality(self) -> str: method municipality_code (line 3480) | def municipality_code(self) -> str: method provinces_code (line 3486) | def provinces_code(self) -> str: method street_municipality (line 3492) | def street_municipality(self) -> str: method street_procer (line 3498) | def street_procer(self) -> str: method street_province (line 3504) | def street_province(self) -> str: method license_plate_mercosur (line 3510) | def license_plate_mercosur(self) -> str: method license_plate_old (line 3516) | def license_plate_old(self) -> str: method cif (line 3522) | def cif(self) -> str: method nie (line 3531) | def nie(self) -> str: method nif (line 3540) | def nif(self) -> str: method nuss (line 3549) | def nuss(self, company: bool = ...) -> str: method common_street_name (line 3559) | def common_street_name(self) -> str: ... method commune (line 3560) | def commune(self) -> str: ... method commune_and_region (line 3561) | def commune_and_region(self) -> str: ... method commune_code (line 3562) | def commune_code(self) -> str: ... method highway_name (line 3563) | def highway_name(self) -> str: ... method historic_people_street_name (line 3564) | def historic_people_street_name(self) -> str: ... method plant_street_name (line 3565) | def plant_street_name(self) -> str: ... method province_code (line 3566) | def province_code(self) -> str: ... method region_code (line 3567) | def region_code(self) -> str: ... method road_name (line 3568) | def road_name(self) -> str: ... method license_plate_diplomatic (line 3569) | def license_plate_diplomatic(self) -> str: ... method license_plate_new (line 3570) | def license_plate_new(self) -> str: ... method license_plate_police (line 3571) | def license_plate_police(self) -> str: ... method license_plate_temporary (line 3572) | def license_plate_temporary(self) -> str: ... method company_prefix (line 3573) | def company_prefix(self) -> str: method given_name (line 3579) | def given_name(self) -> str: method given_name_female (line 3585) | def given_name_female(self) -> str: method given_name_male (line 3591) | def given_name_male(self) -> str: method cellphone_block (line 3597) | def cellphone_block(self) -> str: ... method special_code (line 3598) | def special_code(self) -> str: ... method company_rut (line 3599) | def company_rut(self) -> str: method person_rut (line 3605) | def person_rut(self) -> str: method rut (line 3611) | def rut(self, min: int = ..., max: int = ...) -> str: method department (line 3621) | def department(self) -> str: method department_code (line 3627) | def department_code(self) -> str: method legal_person_nit (line 3633) | def legal_person_nit(self) -> str: method legal_person_nit_with_check_digit (line 3640) | def legal_person_nit_with_check_digit(self) -> str: method natural_person_nit (line 3646) | def natural_person_nit(self) -> str: method natural_person_nit_with_check_digit (line 3653) | def natural_person_nit_with_check_digit(self) -> str: method nuip (line 3659) | def nuip(self) -> str: method autonomous_community (line 3666) | def autonomous_community(self) -> str: ... method state_name (line 3667) | def state_name(self) -> str: ... method license_plate_by_province (line 3668) | def license_plate_by_province(self, province_prefix: Optional[str] = .... method license_plate_unified (line 3678) | def license_plate_unified(self) -> str: method random_name_complements (line 3684) | def random_name_complements(self) -> str: ... method city_adjective (line 3685) | def city_adjective(self) -> str: ... method clabe (line 3686) | def clabe(self, bank_code: Optional[int] = ...) -> str: method curp (line 3701) | def curp(self) -> str: method elector_code (line 3709) | def elector_code(self, gender: Optional[Literal["H", "M"]] = ...) -> str: method rfc (line 3723) | def rfc(self, natural: bool = ...) -> str: method first_name_est (line 3734) | def first_name_est(self) -> str: ... method first_name_female_est (line 3735) | def first_name_female_est(self) -> str: ... method first_name_female_rus (line 3736) | def first_name_female_rus(self) -> str: ... method first_name_male_est (line 3737) | def first_name_male_est(self) -> str: ... method first_name_male_rus (line 3738) | def first_name_male_rus(self) -> str: ... method first_name_rus (line 3739) | def first_name_rus(self) -> str: ... method last_name_est (line 3740) | def last_name_est(self) -> str: ... method last_name_rus (line 3741) | def last_name_rus(self) -> str: ... method company_business_id (line 3742) | def company_business_id(self) -> str: method company_vat (line 3752) | def company_vat(self) -> str: method english_catch_phrase (line 3760) | def english_catch_phrase(self) -> str: ... method random_good_service_adjective (line 3761) | def random_good_service_adjective(self) -> str: ... method random_good_service_adjective_chain (line 3762) | def random_good_service_adjective_chain(self) -> str: ... method random_noun_ish_good_trait (line 3763) | def random_noun_ish_good_trait(self) -> str: ... method random_object_of_concern (line 3764) | def random_object_of_concern(self) -> str: ... method ape_code (line 3765) | def ape_code(self, version: Optional[str] = ...) -> str: method catch_phrase_attribute (line 3788) | def catch_phrase_attribute(self) -> str: method catch_phrase_noun (line 3794) | def catch_phrase_noun(self) -> str: method catch_phrase_verb (line 3800) | def catch_phrase_verb(self) -> str: method ide (line 3806) | def ide(self) -> str: method idi (line 3813) | def idi(self) -> str: method rcs_number (line 3820) | def rcs_number(self, city: str = ..., letter: str = ..., siren: str = ... method siren (line 3836) | def siren(self) -> str: method siret (line 3842) | def siret(self, max_sequential_digits: int = ...) -> str: method uid (line 3854) | def uid(self) -> str: method department_name (line 3861) | def department_name(self) -> str: method department_number (line 3868) | def department_number(self) -> str: method area_code_with_separator (line 3876) | def area_code_with_separator(self) -> str: ... method area_code_without_separator (line 3877) | def area_code_without_separator(self) -> str: ... method day_of_week_in_guj (line 3878) | def day_of_week_in_guj(self) -> str: method month_in_guj (line 3884) | def month_in_guj(self) -> str: method month_name_in_guj (line 3890) | def month_name_in_guj(self) -> str: method street_title (line 3896) | def street_title(self) -> str: ... method city_part (line 3897) | def city_part(self) -> str: ... method frequent_street_name (line 3898) | def frequent_street_name(self) -> str: ... method real_city_name (line 3899) | def real_city_name(self) -> str: ... method street_address_with_county (line 3900) | def street_address_with_county(self) -> str: ... method first_name_female_abbreviated (line 3901) | def first_name_female_abbreviated(self) -> str: ... method first_name_male_abbreviated (line 3902) | def first_name_male_abbreviated(self) -> str: ... method village_prefix (line 3903) | def village_prefix(self) -> str: method middle_name (line 3909) | def middle_name(self) -> str: ... method postcode_city_province (line 3910) | def postcode_city_province(self) -> str: method cie (line 3916) | def cie(self) -> str: method is_leap_year (line 3927) | def is_leap_year(year: int) -> bool: method ban (line 3933) | def ban(self) -> str: method chome (line 3939) | def chome(self) -> str: method gou (line 3945) | def gou(self) -> str: method prefecture (line 3951) | def prefecture(self) -> str: method classification_number (line 3957) | def classification_number(self) -> str: ... method kana (line 3958) | def kana(self) -> str: ... method serial_number (line 3959) | def serial_number(self) -> str: method jan (line 3968) | def jan(self, length: int = ...) -> str: method jan13 (line 3980) | def jan13(self) -> str: method jan8 (line 3988) | def jan8(self) -> str: method company_category (line 3996) | def company_category(self) -> str: ... method traditional_month_name (line 3997) | def traditional_month_name(self) -> str: ... method first_kana_name (line 3998) | def first_kana_name(self) -> str: method first_kana_name_female (line 4004) | def first_kana_name_female(self) -> str: method first_kana_name_male (line 4010) | def first_kana_name_male(self) -> str: method first_name_female_pair (line 4016) | def first_name_female_pair(self) -> Tuple[str, str, str]: method first_name_male_pair (line 4022) | def first_name_male_pair(self) -> Tuple[str, str, str]: method first_name_pair (line 4028) | def first_name_pair(self) -> Tuple[str, str, str]: method first_romanized_name (line 4034) | def first_romanized_name(self) -> str: method first_romanized_name_female (line 4040) | def first_romanized_name_female(self) -> str: method first_romanized_name_male (line 4046) | def first_romanized_name_male(self) -> str: method kana_name (line 4052) | def kana_name(self) -> str: method kana_name_female (line 4058) | def kana_name_female(self) -> str: method kana_name_male (line 4064) | def kana_name_male(self) -> str: method last_kana_name (line 4070) | def last_kana_name(self) -> str: method last_name_pair (line 4076) | def last_name_pair(self) -> Tuple[str, str, str]: method last_romanized_name (line 4082) | def last_romanized_name(self) -> str: method romanized_name (line 4088) | def romanized_name(self) -> str: method romanized_name_female (line 4094) | def romanized_name_female(self) -> str: method romanized_name_male (line 4100) | def romanized_name_male(self) -> str: method address_detail (line 4106) | def address_detail(self) -> str: method borough (line 4112) | def borough(self) -> str: method building_dong (line 4118) | def building_dong(self) -> str: method building_number_segregated (line 4124) | def building_number_segregated(self) -> str: method building_number_underground (line 4132) | def building_number_underground(self) -> str: method building_suffix (line 4140) | def building_suffix(self) -> str: method land_address (line 4146) | def land_address(self) -> str: method land_number (line 4152) | def land_number(self) -> str: method metropolitan_city (line 4158) | def metropolitan_city(self) -> str: method old_postal_code (line 4164) | def old_postal_code(self) -> str: method postal_code (line 4170) | def postal_code(self) -> str: method road (line 4176) | def road(self) -> str: method road_address (line 4182) | def road_address(self) -> str: method road_number (line 4188) | def road_number(self) -> str: method road_suffix (line 4194) | def road_suffix(self) -> str: method town_suffix (line 4200) | def town_suffix(self) -> str: method brand_suffix (line 4206) | def brand_suffix(self) -> str: ... method company_name_word (line 4207) | def company_name_word(self) -> str: ... method license_plate_car (line 4208) | def license_plate_car(self) -> str: method license_plate_motorbike (line 4214) | def license_plate_motorbike(self) -> str: method first_name_unisex (line 4220) | def first_name_unisex(self) -> str: ... method street_name_adjective_feminine (line 4221) | def street_name_adjective_feminine(self) -> str: method street_name_universal (line 4228) | def street_name_universal(self) -> str: method street_prefix_feminine (line 4235) | def street_prefix_feminine(self) -> str: method street_prefix_feminine_short (line 4242) | def street_prefix_feminine_short(self) -> str: method street_prefix_masculine (line 4249) | def street_prefix_masculine(self) -> str: method street_prefix_masculine_short (line 4256) | def street_prefix_masculine_short(self) -> str: method license_plate_regex_formats (line 4263) | def license_plate_regex_formats(self) -> List[str]: method local_regon (line 4274) | def local_regon(self) -> str: method regon (line 4283) | def regon(self) -> str: method identity_card_number (line 4292) | def identity_card_number(self) -> str: method nip (line 4304) | def nip(self) -> str: method pesel (line 4315) | def pesel(self, date_of_birth: Optional[datetime.datetime] = ..., sex:... method pesel_compute_check_digit (line 4335) | def pesel_compute_check_digit(self, pesel: str) -> int: ... method pwz_doctor (line 4336) | def pwz_doctor(self) -> str: method pwz_doctor_compute_check_digit (line 4345) | def pwz_doctor_compute_check_digit(self, x: Sequence[int]) -> int: ... method pwz_nurse (line 4346) | def pwz_nurse(self, kind: str = ...) -> str: method bairro (line 4358) | def bairro(self) -> str: method estado (line 4366) | def estado(self) -> Tuple[str, str]: method estado_nome (line 4373) | def estado_nome(self) -> str: method estado_sigla (line 4380) | def estado_sigla(self) -> str: method neighborhood (line 4387) | def neighborhood(self) -> str: ... method cnpj (line 4388) | def cnpj(self) -> str: ... method company_id (line 4389) | def company_id(self) -> str: ... method cpf (line 4390) | def cpf(self) -> str: ... method rg (line 4391) | def rg(self) -> str: method concelho (line 4398) | def concelho(self) -> str: method distrito (line 4404) | def distrito(self) -> str: method freguesia (line 4410) | def freguesia(self) -> str: method place_name (line 4416) | def place_name(self) -> str: method nationality (line 4422) | def nationality(self) -> str: method plate_letter (line 4428) | def plate_letter(self) -> str: method plate_number (line 4434) | def plate_number(self) -> str: method plate_number_extra (line 4440) | def plate_number_extra(self) -> str: method plate_number_special (line 4446) | def plate_number_special(self) -> str: method plate_suffix (line 4452) | def plate_suffix(self) -> str: method vehicle_category (line 4458) | def vehicle_category(self) -> str: method bic (line 4464) | def bic(self) -> str: method checking_account (line 4473) | def checking_account(self) -> str: method correspondent_account (line 4483) | def correspondent_account(self) -> str: method businesses_inn (line 4493) | def businesses_inn(self) -> str: method businesses_ogrn (line 4499) | def businesses_ogrn(self) -> str: method individuals_inn (line 4506) | def individuals_inn(self) -> str: method individuals_ogrn (line 4512) | def individuals_ogrn(self) -> str: method kpp (line 4519) | def kpp(self) -> str: method snils (line 4525) | def snils(self) -> str: method middle_name_female (line 4531) | def middle_name_female(self) -> str: ... method middle_name_male (line 4532) | def middle_name_male(self) -> str: ... method org_and_vat_id (line 4533) | def org_and_vat_id(self, long: bool = ..., dash: bool = ...) -> Tuple[... method org_id (line 4539) | def org_id(self, long: bool = ..., dash: bool = ...) -> str: method amphoe (line 4547) | def amphoe(self) -> str: method tambon (line 4555) | def tambon(self) -> str: method company_limited_prefix (line 4563) | def company_limited_prefix(self) -> str: method company_limited_suffix (line 4569) | def company_limited_suffix(self) -> str: method nonprofit_prefix (line 4575) | def nonprofit_prefix(self) -> str: method diplomatic_license_plate (line 4581) | def diplomatic_license_plate(self) -> str: method plate_letter_prefix (line 4589) | def plate_letter_prefix(self, region_name: Optional[str] = ...) -> str: method plate_letter_suffix (line 4598) | def plate_letter_suffix(self) -> str: method plate_region_code (line 4606) | def plate_region_code(self, region_name: Optional[str] = ...) -> str: method full_name (line 4615) | def full_name(self, gender: Optional[Literal["M", "F", "X"]] = ..., sh... method phonenumber_prefix (line 4631) | def phonenumber_prefix(self) -> int: ... method city_name_suffix (line 4632) | def city_name_suffix(self) -> str: ... method section_number (line 4633) | def section_number(self) -> str: ... method street_name_suffix (line 4634) | def street_name_suffix(self) -> str: ... method minguo_year (line 4635) | def minguo_year(self) -> str: ... method __deepcopy__ (line 4636) | def __deepcopy__(self, memodict): ... method __dir__ (line 4637) | def __dir__(self): method __getattr__ (line 4643) | def __getattr__(self, attr: "str") -> "Any": method __getattribute__ (line 4652) | def __getattribute__(self, attr: "str") -> "Any": method __getitem__ (line 4663) | def __getitem__(self, locale: "str") -> "Faker": ... method __init__ (line 4664) | def __init__( method __setstate__ (line 4678) | def __setstate__(self, state: "Any") -> "None": ... method items (line 4679) | def items(self) -> "list[tuple[str, Generator | Faker]]": ... method seed (line 4681) | def seed(seed: "SeedType | None" = ...) -> "None": method seed_instance (line 4689) | def seed_instance(self, seed: "SeedType | None" = ...) -> "None": method seed_locale (line 4697) | def seed_locale(self, locale: "str", seed: "SeedType | None" = ...) ->... FILE: faker/sphinx/autodoc.py function _create_source_files (line 5) | def _create_source_files(app): function _process_docstring (line 9) | def _process_docstring(app, what, name, obj, options, lines): function setup (line 15) | def setup(app): FILE: faker/sphinx/docstring.py class ProviderMethodDocstring (line 36) | class ProviderMethodDocstring: method __init__ (line 51) | def __init__(self, app, what, name, obj, options, lines): method _log_warning (line 83) | def _log_warning(self, warning): method _parse (line 86) | def _parse(self): method _parse_section (line 95) | def _parse_section(self, section): method _process_sample_section (line 125) | def _process_sample_section(self, section): method _beautify_kwargs (line 147) | def _beautify_kwargs(self, kwargs): method _stringify_result (line 165) | def _stringify_result(self, value): method _generate_eval_scope (line 168) | def _generate_eval_scope(self): method _inject_default_sample_section (line 176) | def _inject_default_sample_section(self): method _generate_samples (line 180) | def _generate_samples(self): method skipped (line 218) | def skipped(self): method lines (line 222) | def lines(self): FILE: faker/sphinx/documentor.py function _get_provider_methods (line 33) | def _get_provider_methods(provider_class): function _get_localized_provider_info (line 50) | def _get_localized_provider_info(locale): function _write (line 65) | def _write(fh, s): function _hide_edit_on_github (line 69) | def _hide_edit_on_github(fh): function _write_title (line 73) | def _write_title(fh, title, level=1): function _write_includes (line 84) | def _write_includes(fh): function _write_standard_provider_index (line 89) | def _write_standard_provider_index(): function _write_base_provider_docs (line 100) | def _write_base_provider_docs(): function _write_standard_provider_docs (line 115) | def _write_standard_provider_docs(): function _write_localized_provider_index (line 133) | def _write_localized_provider_index(): function _write_localized_provider_docs (line 143) | def _write_localized_provider_docs(): function write_provider_docs (line 163) | def write_provider_docs(): FILE: faker/sphinx/validator.py class SampleCodeValidator (line 9) | class SampleCodeValidator(ast.NodeVisitor): method __init__ (line 89) | def __init__(self, command): method errors (line 104) | def errors(self): method _is_whitelisted (line 107) | def _is_whitelisted(self, node): method _log_error (line 114) | def _log_error(self, msg): method _validate (line 117) | def _validate(self): method _is_node_using_ordereddict (line 120) | def _is_node_using_ordereddict(self, node): method visit (line 133) | def visit(self, node): method visit_Call (line 141) | def visit_Call(self, node): method visit_Attribute (line 153) | def visit_Attribute(self, node): method visit_Name (line 164) | def visit_Name(self, node): FILE: faker/typing.py class CreditCard (line 9) | class CreditCard: method __init__ (line 10) | def __init__( class Country (line 34) | class Country: FILE: faker/utils/checksums.py function _digits_of (line 4) | def _digits_of(number: float) -> List[int]: function luhn_checksum (line 8) | def luhn_checksum(number: float) -> int: function calculate_luhn (line 18) | def calculate_luhn(partial_number: float) -> int: FILE: faker/utils/datasets.py function add_ordereddicts (line 6) | def add_ordereddicts(*odicts: OrderedDictType) -> OrderedDictType: FILE: faker/utils/decorators.py function slugify (line 9) | def slugify(fn: Callable) -> Callable: function slugify_domain (line 17) | def slugify_domain(fn: Callable) -> Callable: function slugify_unicode (line 25) | def slugify_unicode(fn: Callable) -> Callable: function lowercase (line 33) | def lowercase(fn: Callable) -> Callable: FILE: faker/utils/distribution.py function random_sample (line 10) | def random_sample(random: Optional[Random] = None) -> float: function cumsum (line 16) | def cumsum(it: Iterable[float]) -> Generator[float, None, None]: function choices_distribution_unique (line 26) | def choices_distribution_unique( function choices_distribution (line 57) | def choices_distribution( FILE: faker/utils/loading.py function get_path (line 10) | def get_path(module: ModuleType) -> str: function list_module (line 31) | def list_module(module: ModuleType) -> List[str]: function find_available_locales (line 41) | def find_available_locales(providers: List[str]) -> List[str]: function find_available_providers (line 52) | def find_available_providers(modules: List[ModuleType]) -> List[str]: FILE: faker/utils/text.py function slugify (line 11) | def slugify(value: str, allow_dots: bool = False, allow_unicode: bool = ... FILE: generate_stubs.py function get_module_and_member_to_import (line 28) | def get_module_and_member_to_import(cls: Type, locale: Optional[str] = N... class UniqueMemberFunctionsAndVariables (line 56) | class UniqueMemberFunctionsAndVariables: method __init__ (line 57) | def __init__(self, cls: type, funcs: Dict[str, Any], vars: Dict[str, A... function get_member_functions_and_variables (line 71) | def get_member_functions_and_variables(cls: object, include_mangled: boo... function get_signatures_for_func (line 93) | def get_signatures_for_func(func_value, func_name, locale, is_overload: ... function get_import_str (line 213) | def get_import_str(module: str, members: Optional[Set[str]]) -> str: FILE: tests/mymodule/en_US/__init__.py class Provider (line 4) | class Provider(BaseProvider): method foo (line 5) | def foo(self): FILE: tests/providers/__init__.py class TestBaseProvider (line 11) | class TestBaseProvider: method test_locale (line 14) | def test_locale(self, faker, num_samples): method test_language_code (line 24) | def test_language_code(self, faker, num_samples): method test_random_digit (line 30) | def test_random_digit(self, faker, num_samples): method test_random_digit_not_null (line 34) | def test_random_digit_not_null(self, faker, num_samples): method test_random_digit_above_two (line 38) | def test_random_digit_above_two(self, faker, num_samples): method test_random_digit_or_empty (line 42) | def test_random_digit_or_empty(self, faker, num_samples): method test_random_digit_not_null_or_empty (line 48) | def test_random_digit_not_null_or_empty(self, faker, num_samples): method test_random_number (line 54) | def test_random_number(self, faker): method test_numerify (line 95) | def test_numerify(self, faker, num_samples, text, pattern): method test_lexify (line 117) | def test_lexify(self, faker, num_samples, text, letters, pattern): method test_bothify (line 147) | def test_bothify(self, faker, num_samples, text, letters, pattern): method test_hexify (line 183) | def test_hexify(self, faker, num_samples, text, upper, pattern): method test_random_letter (line 188) | def test_random_letter(self, faker, num_samples): method test_random_letters (line 202) | def test_random_letters(self, faker, length): method test_random_lowercase_letter (line 209) | def test_random_lowercase_letter(self, faker, num_samples): method test_random_uppercase_letter (line 214) | def test_random_uppercase_letter(self, faker, num_samples): method test_random_element (line 219) | def test_random_element(self, faker, num_samples): method test_random_sample (line 236) | def test_random_sample(self, faker): method test_randomize_nb_elements (line 262) | def test_randomize_nb_elements(self, faker, num_samples): FILE: tests/providers/conftest.py function _class_locale_faker (line 15) | def _class_locale_faker(request): function faker (line 28) | def faker(_class_locale_faker, faker): function num_samples (line 36) | def num_samples(request): FILE: tests/providers/test_address.py class TestBaseProvider (line 63) | class TestBaseProvider: method test_alpha_2_country_codes (line 66) | def test_alpha_2_country_codes(self, faker, num_samples): method test_alpha_2_country_codes_as_default (line 72) | def test_alpha_2_country_codes_as_default(self, faker, num_samples): method test_alpha_3_country_codes (line 78) | def test_alpha_3_country_codes(self, faker, num_samples): method test_bad_country_code_representation (line 84) | def test_bad_country_code_representation(self, faker, num_samples): method _collect_fakers_for_locales (line 89) | def _collect_fakers_for_locales(self): method _fakers_for_locales (line 103) | def _fakers_for_locales(self): method test_administrative_unit_all_locales (line 108) | def test_administrative_unit_all_locales(self): method test_country_code_all_locales (line 116) | def test_country_code_all_locales(self): method test_current_country_errors (line 120) | def test_current_country_errors(self): class TestAzAz (line 131) | class TestAzAz: method test_street_suffix_long (line 134) | def test_street_suffix_long(self, faker, num_samples): method test_city_name (line 140) | def test_city_name(self, faker, num_samples): method test_street_name (line 146) | def test_street_name(self, faker, num_samples): method test_settlement_name (line 152) | def test_settlement_name(self, faker, num_samples): method test_village_name (line 158) | def test_village_name(self, faker, num_samples): method test_postcode (line 164) | def test_postcode(self, faker, num_samples): class TestCsCz (line 172) | class TestCsCz: method test_street_suffix_short (line 175) | def test_street_suffix_short(self, faker, num_samples): method test_street_suffix_long (line 181) | def test_street_suffix_long(self, faker, num_samples): method test_city_name (line 187) | def test_city_name(self, faker, num_samples): method test_street_name (line 193) | def test_street_name(self, faker, num_samples): method test_state (line 199) | def test_state(self, faker, num_samples): method test_postcode (line 205) | def test_postcode(self, faker, num_samples): method test_city_with_postcode (line 211) | def test_city_with_postcode(self, faker, num_samples): class TestDaDk (line 219) | class TestDaDk: method test_street_suffix (line 222) | def test_street_suffix(self, faker, num_samples): method test_street_name (line 228) | def test_street_name(self, faker, num_samples): method test_dk_street_name (line 233) | def test_dk_street_name(self, faker, num_samples): method test_city_name (line 238) | def test_city_name(self, faker, num_samples): method test_state (line 244) | def test_state(self, faker, num_samples): method test_postcode (line 250) | def test_postcode(self, faker, num_samples): class TestDeAt (line 257) | class TestDeAt: method test_city (line 260) | def test_city(self, faker, num_samples): method test_state (line 266) | def test_state(self, faker, num_samples): method test_street_suffix_short (line 272) | def test_street_suffix_short(self, faker, num_samples): method test_street_suffix_long (line 278) | def test_street_suffix_long(self, faker, num_samples): method test_country (line 284) | def test_country(self, faker, num_samples): method test_postcode (line 290) | def test_postcode(self, faker, num_samples): method test_city_with_postcode (line 296) | def test_city_with_postcode(self, faker, num_samples): class TestDeDe (line 304) | class TestDeDe: method test_city (line 307) | def test_city(self, faker, num_samples): method test_state (line 313) | def test_state(self, faker, num_samples): method test_street_suffix_short (line 319) | def test_street_suffix_short(self, faker, num_samples): method test_street_suffix_long (line 325) | def test_street_suffix_long(self, faker, num_samples): method test_country (line 331) | def test_country(self, faker, num_samples): method test_postcode (line 337) | def test_postcode(self, faker, num_samples): method test_city_with_postcode (line 343) | def test_city_with_postcode(self, faker, num_samples): class TestElGr (line 351) | class TestElGr: method test_line_address (line 354) | def test_line_address(self, faker, num_samples): method test_street_prefix_short (line 359) | def test_street_prefix_short(self, faker, num_samples): method test_street_prefix_long (line 365) | def test_street_prefix_long(self, faker, num_samples): method test_street (line 371) | def test_street(self, faker, num_samples): method test_city (line 377) | def test_city(self, faker, num_samples): method test_region (line 383) | def test_region(self, faker, num_samples): class TestEnAu (line 390) | class TestEnAu: method test_postcode (line 393) | def test_postcode(self, faker, num_samples): method test_state (line 399) | def test_state(self, faker, num_samples): method test_city_prefix (line 405) | def test_city_prefix(self, faker, num_samples): method test_state_abbr (line 411) | def test_state_abbr(self, faker, num_samples): class TestEnBd (line 419) | class TestEnBd: method test_administrative_unit (line 422) | def test_administrative_unit(self, faker, num_samples): method test_area_name (line 428) | def test_area_name(self, faker, num_samples): method test_building_name (line 434) | def test_building_name(self, faker, num_samples): method test_building_number (line 440) | def test_building_number(self, faker, num_samples): method test_city_prefix (line 445) | def test_city_prefix(self, faker, num_samples): method test_city (line 451) | def test_city(self, faker, num_samples): method test_postcode (line 457) | def test_postcode(self, faker, num_samples): method test_secondary_address (line 463) | def test_secondary_address(self, faker, num_samples): method test_town (line 468) | def test_town(self, faker, num_samples): class TestEnCa (line 474) | class TestEnCa: method test_postcode (line 480) | def test_postcode(self, faker, num_samples): method test_postcode_in_province (line 486) | def test_postcode_in_province(self, faker, num_samples): method test_postalcode (line 494) | def test_postalcode(self, faker, num_samples): method test_postal_code_letter (line 500) | def test_postal_code_letter(self, faker, num_samples): method test_province (line 506) | def test_province(self, faker, num_samples): method test_province_abbr (line 512) | def test_province_abbr(self, faker, num_samples): method test_city_prefix (line 518) | def test_city_prefix(self, faker, num_samples): method test_secondary_address (line 524) | def test_secondary_address(self, faker, num_samples): class TestEnGb (line 531) | class TestEnGb: method test_postcode (line 534) | def test_postcode(self, faker, num_samples): method test_county (line 539) | def test_county(self, faker, num_samples): method test_street_suffix_capitalised (line 545) | def test_street_suffix_capitalised(self, faker, num_samples): class TestEnIe (line 552) | class TestEnIe: method test_postcode (line 555) | def test_postcode(self, faker, num_samples): method test_county (line 562) | def test_county(self, faker, num_samples): class TestEnUS (line 569) | class TestEnUS: method test_city_prefix (line 572) | def test_city_prefix(self, faker, num_samples): method test_state (line 578) | def test_state(self, faker, num_samples): method test_state_abbr (line 584) | def test_state_abbr(self, faker, num_samples): method test_state_abbr_states_only (line 591) | def test_state_abbr_states_only(self, faker, num_samples): method test_state_abbr_no_territories (line 597) | def test_state_abbr_no_territories(self, faker, num_samples): method test_state_abbr_no_freely_associated_states (line 606) | def test_state_abbr_no_freely_associated_states(self, faker, num_sampl... method test_postcode (line 612) | def test_postcode(self, faker, num_samples): method test_postcode_in_state (line 618) | def test_postcode_in_state(self, faker, num_samples): method test_zipcode (line 629) | def test_zipcode(self, faker, num_samples): method test_zipcode_in_state (line 635) | def test_zipcode_in_state(self, faker, num_samples): method test_zipcode_plus4 (line 646) | def test_zipcode_plus4(self, faker, num_samples): method test_military_ship (line 654) | def test_military_ship(self, faker, num_samples): method test_military_state (line 660) | def test_military_state(self, faker, num_samples): method test_military_apo (line 666) | def test_military_apo(self, faker, num_samples): method test_military_dpo (line 672) | def test_military_dpo(self, faker, num_samples): method test_postalcode (line 678) | def test_postalcode(self, faker, num_samples): method test_postalcode_in_state (line 684) | def test_postalcode_in_state(self, faker, num_samples): method test_state_abbr_determinism (line 695) | def test_state_abbr_determinism(self, faker): class TestEsCo (line 702) | class TestEsCo: method test_department_code (line 705) | def test_department_code(self, faker, num_samples): method test_department (line 711) | def test_department(self, faker, num_samples): method test_municipality_code (line 717) | def test_municipality_code(self, faker, num_samples): method test_municipality (line 724) | def test_municipality(self, faker, num_samples): method test_street_prefix (line 734) | def test_street_prefix(self, faker, num_samples): method test_street_suffix (line 740) | def test_street_suffix(self, faker, num_samples): method test_street_name (line 745) | def test_street_name(self, faker, num_samples): method test_building_number (line 750) | def test_building_number(self, faker, num_samples): method test_secondary_address (line 756) | def test_secondary_address(self, faker, num_samples): method test_street_address (line 761) | def test_street_address(self, faker, num_samples): method test_postcode (line 766) | def test_postcode(self, faker, num_samples): method test_address (line 772) | def test_address(self, faker, num_samples): class TestEsEs (line 778) | class TestEsEs: method test_state_name (line 781) | def test_state_name(self, faker, num_samples): method test_street_prefix (line 787) | def test_street_prefix(self, faker, num_samples): method test_secondary_address (line 793) | def test_secondary_address(self, faker, num_samples): method test_regions (line 799) | def test_regions(self, faker, num_samples): method test_autonomous_community (line 805) | def test_autonomous_community(self, faker, num_samples): method test_postcode (line 812) | def test_postcode(self, faker, num_samples): class TestEsMx (line 820) | class TestEsMx: method test_city_prefix (line 823) | def test_city_prefix(self, faker, num_samples): method test_city_suffix (line 829) | def test_city_suffix(self, faker, num_samples): method test_city_adjective (line 835) | def test_city_adjective(self, faker, num_samples): method test_street_prefix (line 841) | def test_street_prefix(self, faker, num_samples): method test_secondary_address (line 847) | def test_secondary_address(self, faker, num_samples): method test_state (line 856) | def test_state(self, faker, num_samples): method test_state_abbr (line 863) | def test_state_abbr(self, faker, num_samples): class TestFaIr (line 871) | class TestFaIr: method test_city_prefix (line 874) | def test_city_prefix(self, faker, num_samples): method test_secondary_address (line 880) | def test_secondary_address(self, faker, num_samples): method test_state (line 886) | def test_state(self, faker, num_samples): class TestFrFr (line 893) | class TestFrFr: method test_street_prefix (line 896) | def test_street_prefix(self, faker, num_samples): method test_city_prefix (line 902) | def test_city_prefix(self, faker, num_samples): method test_region (line 908) | def test_region(self, faker, num_samples): method test_department (line 914) | def test_department(self, faker, num_samples): method test_department_name (line 920) | def test_department_name(self, faker, num_samples): method test_department_number (line 927) | def test_department_number(self, faker, num_samples): method test_postcode (line 934) | def test_postcode(self, faker, num_samples): class TestHeIl (line 947) | class TestHeIl: method test_city_name (line 950) | def test_city_name(self, faker, num_samples): method test_street_title (line 956) | def test_street_title(self, faker, num_samples): method test_country (line 962) | def test_country(self, faker, num_samples): class TestHiIn (line 969) | class TestHiIn: method test_city_name (line 972) | def test_city_name(self, faker, num_samples): method test_state (line 978) | def test_state(self, faker, num_samples): class TestTaIn (line 985) | class TestTaIn: method test_city_name (line 988) | def test_city_name(self, faker, num_samples): method test_state (line 994) | def test_state(self, faker, num_samples): class TestFiFi (line 1001) | class TestFiFi: method test_city (line 1004) | def test_city(self, faker, num_samples): method test_street_suffix (line 1010) | def test_street_suffix(self, faker, num_samples): method test_state (line 1016) | def test_state(self, faker, num_samples): class TestHrHr (line 1023) | class TestHrHr: method test_city_name (line 1026) | def test_city_name(self, faker, num_samples): method test_street_name (line 1032) | def test_street_name(self, faker, num_samples): method test_state (line 1038) | def test_state(self, faker, num_samples): class TestHyAm (line 1045) | class TestHyAm: method test_address (line 1048) | def test_address(self, faker, num_samples): method test_building_number (line 1053) | def test_building_number(self, faker, num_samples): method test_city (line 1059) | def test_city(self, faker, num_samples): method test_city_prefix (line 1065) | def test_city_prefix(self, faker, num_samples): method test_country (line 1071) | def test_country(self, faker, num_samples): method test_postcode (line 1077) | def test_postcode(self, faker, num_samples): method test_postcode_in_state (line 1083) | def test_postcode_in_state(self, faker, num_samples): method test_secondary_address (line 1094) | def test_secondary_address(self, faker, num_samples): method test_state (line 1100) | def test_state(self, faker, num_samples): method test_state_abbr (line 1106) | def test_state_abbr(self, faker, num_samples): method test_street (line 1113) | def test_street(self, faker, num_samples): method test_street_address (line 1119) | def test_street_address(self, faker, num_samples): method test_street_name (line 1124) | def test_street_name(self, faker, num_samples): method test_street_prefix (line 1129) | def test_street_prefix(self, faker, num_samples): method test_street_suffix (line 1135) | def test_street_suffix(self, faker, num_samples): method test_village (line 1141) | def test_village(self, faker, num_samples): method test_village_prefix (line 1147) | def test_village_prefix(self, faker, num_samples): class TestItIt (line 1154) | class TestItIt: method test_city (line 1157) | def test_city(self, faker, num_samples): method test_postcode_city_province (line 1163) | def test_postcode_city_province(self, faker, num_samples): method test_city_prefix (line 1173) | def test_city_prefix(self, faker, num_samples): method test_secondary_address (line 1179) | def test_secondary_address(self, faker, num_samples): method test_administrative_unit (line 1186) | def test_administrative_unit(self, faker, num_samples): method test_state_abbr (line 1192) | def test_state_abbr(self, faker, num_samples): class TestJaJp (line 1199) | class TestJaJp: method test_chome (line 1202) | def test_chome(self, faker, num_samples): method test_ban (line 1210) | def test_ban(self, faker, num_samples): method test_gou (line 1218) | def test_gou(self, faker, num_samples): method test_town (line 1226) | def test_town(self, faker, num_samples): method test_prefecture (line 1232) | def test_prefecture(self, faker, num_samples): method test_city (line 1238) | def test_city(self, faker, num_samples): method test_country (line 1244) | def test_country(self, faker, num_samples): method test_building_name (line 1250) | def test_building_name(self, faker, num_samples): method test_address (line 1256) | def test_address(self, faker, num_samples): method test_postcode (line 1261) | def test_postcode(self, faker, num_samples): method test_zipcode (line 1267) | def test_zipcode(self, faker, num_samples): class TestKoKr (line 1274) | class TestKoKr: method test_old_postal_code (line 1277) | def test_old_postal_code(self, faker, num_samples): method test_postal_code (line 1283) | def test_postal_code(self, faker, num_samples): method test_postcode (line 1289) | def test_postcode(self, faker, num_samples): method test_city (line 1295) | def test_city(self, faker, num_samples): method test_borough (line 1300) | def test_borough(self, faker, num_samples): method test_town (line 1306) | def test_town(self, faker, num_samples): method test_town_suffix (line 1311) | def test_town_suffix(self, faker, num_samples): method test_building_name (line 1317) | def test_building_name(self, faker, num_samples): method test_building_number (line 1322) | def test_building_number(self, faker, num_samples): method test_building_number_underground (line 1328) | def test_building_number_underground(self, faker, num_samples): method test_building_number_segregated (line 1335) | def test_building_number_segregated(self, faker, num_samples): method test_building_suffix (line 1342) | def test_building_suffix(self, faker, num_samples): method test_building_dong (line 1348) | def test_building_dong(self, faker, num_samples): method test_road_address (line 1353) | def test_road_address(self, faker, num_samples): class TestNeNp (line 1359) | class TestNeNp: method test_province (line 1362) | def test_province(self, faker, num_samples): method test_district (line 1368) | def test_district(self, faker, num_samples): method test_city (line 1374) | def test_city(self, faker, num_samples): method test_country (line 1380) | def test_country(self, faker, num_samples): class TestNoNo (line 1387) | class TestNoNo: method test_postcode (line 1390) | def test_postcode(self, faker): method test_city_suffix (line 1394) | def test_city_suffix(self, faker, num_samples): method test_street_suffix (line 1400) | def test_street_suffix(self, faker, num_samples): method test_address (line 1406) | def test_address(self, faker, num_samples): class TestZhTw (line 1412) | class TestZhTw: method test_postcode (line 1415) | def test_postcode(self, faker, num_samples): method test_city_name (line 1421) | def test_city_name(self, faker, num_samples): method test_city_suffix (line 1427) | def test_city_suffix(self, faker, num_samples): method test_city (line 1433) | def test_city(self, faker, num_samples): method test_country (line 1442) | def test_country(self, faker, num_samples): method test_street_name (line 1448) | def test_street_name(self, faker, num_samples): method test_address (line 1454) | def test_address(self, faker, num_samples): class TestZhCn (line 1460) | class TestZhCn: method test_postcode (line 1463) | def test_postcode(self, faker, num_samples): method test_city_name (line 1469) | def test_city_name(self, faker, num_samples): method test_city_suffix (line 1475) | def test_city_suffix(self, faker, num_samples): method test_city (line 1481) | def test_city(self, faker, num_samples): method test_province (line 1488) | def test_province(self, faker, num_samples): method test_district (line 1494) | def test_district(self, faker, num_samples): method test_country (line 1500) | def test_country(self, faker, num_samples): method test_street_name (line 1506) | def test_street_name(self, faker, num_samples): method test_address (line 1511) | def test_address(self, faker, num_samples): class TestPtBr (line 1517) | class TestPtBr: method test_country (line 1520) | def test_country(self, faker, num_samples): method test_bairro (line 1526) | def test_bairro(self, faker, num_samples): method test_neighborhood (line 1532) | def test_neighborhood(self, faker, num_samples): method test_estado (line 1538) | def test_estado(self, faker, num_samples): method test_estado_nome (line 1544) | def test_estado_nome(self, faker, num_samples): method test_estado_sigla (line 1551) | def test_estado_sigla(self, faker, num_samples): method test_address (line 1558) | def test_address(self, faker, num_samples): method test_raw_postcode (line 1567) | def test_raw_postcode(self, faker, num_samples): method test_formatted_postcode (line 1573) | def test_formatted_postcode(self, faker, num_samples): class TestPtPt (line 1580) | class TestPtPt: method test_distrito (line 1583) | def test_distrito(self, faker, num_samples): method test_concelho (line 1589) | def test_concelho(self, faker, num_samples): method test_freguesia (line 1595) | def test_freguesia(self, faker, num_samples): method test_place_name (line 1601) | def test_place_name(self, faker, num_samples): method test_formatted_postcode (line 1607) | def test_formatted_postcode(self, faker, num_samples): class TestEnPh (line 1614) | class TestEnPh: method setup_class (line 1618) | def setup_class(cls): method test_metro_manila_postcode (line 1634) | def test_metro_manila_postcode(self, faker, num_samples): method test_luzon_province_postcode (line 1638) | def test_luzon_province_postcode(self, faker, num_samples): method test_visayas_province_postcode (line 1642) | def test_visayas_province_postcode(self, faker, num_samples): method test_mindanao_province_postcode (line 1646) | def test_mindanao_province_postcode(self, faker, num_samples): method test_postcode (line 1650) | def test_postcode(self, faker, num_samples): method test_building_number (line 1654) | def test_building_number(self, faker, num_samples): method test_floor_unit_number (line 1658) | def test_floor_unit_number(self, faker, num_samples): method test_ordinal_floor_number (line 1664) | def test_ordinal_floor_number(self, faker, num_samples): method test_address (line 1669) | def test_address(self, faker, num_samples): class TestFilPh (line 1684) | class TestFilPh(TestEnPh): method setup_class (line 1688) | def setup_class(cls): method test_metro_manila_postcode (line 1704) | def test_metro_manila_postcode(self, faker, num_samples): method test_luzon_province_postcode (line 1708) | def test_luzon_province_postcode(self, faker, num_samples): method test_visayas_province_postcode (line 1712) | def test_visayas_province_postcode(self, faker, num_samples): method test_mindanao_province_postcode (line 1716) | def test_mindanao_province_postcode(self, faker, num_samples): method test_postcode (line 1720) | def test_postcode(self, faker, num_samples): method test_building_number (line 1724) | def test_building_number(self, faker, num_samples): method test_floor_unit_number (line 1728) | def test_floor_unit_number(self, faker, num_samples): method test_ordinal_floor_number (line 1734) | def test_ordinal_floor_number(self, faker, num_samples): method test_address (line 1739) | def test_address(self, faker, num_samples): class TestTlPh (line 1754) | class TestTlPh(TestEnPh): class TestRuRu (line 1760) | class TestRuRu: method test_city_name (line 1763) | def test_city_name(self, faker, num_samples): method test_country (line 1769) | def test_country(self, faker, num_samples): method test_region (line 1775) | def test_region(self, faker, num_samples): method test_postcode (line 1797) | def test_postcode(self, faker, num_samples): method test_city_prefix (line 1803) | def test_city_prefix(self, faker, num_samples): method test_street_suffix (line 1809) | def test_street_suffix(self, faker, num_samples): method test_street_title (line 1815) | def test_street_title(self, faker, num_samples): method test_street_name (line 1820) | def test_street_name(self, faker, num_samples): method test_street_name_lexical (line 1850) | def test_street_name_lexical(self, faker, street_title, street_suffix,... class TestThTh (line 1870) | class TestThTh: method test_country (line 1873) | def test_country(self, faker, num_samples): method test_city_name (line 1879) | def test_city_name(self, faker, num_samples): method test_province (line 1885) | def test_province(self, faker, num_samples): method test_amphoe (line 1891) | def test_amphoe(self, faker, num_samples): method test_tambon (line 1897) | def test_tambon(self, faker, num_samples): method test_postcode (line 1902) | def test_postcode(self, faker, num_samples): class TestEnIn (line 1909) | class TestEnIn: method test_city_name (line 1912) | def test_city_name(self, faker, num_samples): method test_state (line 1920) | def test_state(self, faker, num_samples): method test_union_territories (line 1928) | def test_union_territories(self, faker, num_samples): method test_pincodes_in_state (line 1937) | def test_pincodes_in_state(self, faker, num_samples, pincodes): method test_pincodes_in_military (line 1957) | def test_pincodes_in_military(self, faker, num_samples, pincodes): class TestSkSk (line 1966) | class TestSkSk: method test_street_suffix_short (line 1969) | def test_street_suffix_short(self, faker, num_samples): method test_street_suffix_long (line 1975) | def test_street_suffix_long(self, faker, num_samples): method test_city_name (line 1981) | def test_city_name(self, faker, num_samples): method test_street_name (line 1987) | def test_street_name(self, faker, num_samples): method test_state (line 1993) | def test_state(self, faker, num_samples): method test_postcode (line 1999) | def test_postcode(self, faker, num_samples): method test_city_with_postcode (line 2005) | def test_city_with_postcode(self, faker, num_samples): class TestDeCh (line 2013) | class TestDeCh: method test_canton_name (line 2016) | def test_canton_name(self, faker, num_samples): method test_canton_code (line 2022) | def test_canton_code(self, faker, num_samples): method test_canton (line 2028) | def test_canton(self, faker, num_samples): method test_city (line 2034) | def test_city(self, faker, num_samples): class TestRoRo (line 2041) | class TestRoRo: method test_address (line 2044) | def test_address(self, faker, num_samples): method test_street_address (line 2049) | def test_street_address(self, faker, num_samples): method test_street_name (line 2054) | def test_street_name(self, faker, num_samples): method test_street_prefix (line 2059) | def test_street_prefix(self, faker, num_samples): method test_building_number (line 2065) | def test_building_number(self, faker, num_samples): method test_secondary_address (line 2071) | def test_secondary_address(self, faker, num_samples): method test_city (line 2080) | def test_city(self, faker, num_samples): method test_city_name (line 2086) | def test_city_name(self, faker, num_samples): method test_state (line 2092) | def test_state(self, faker, num_samples): method test_state_abbr (line 2099) | def test_state_abbr(self, faker, num_samples): method test_postcode (line 2107) | def test_postcode(self, faker, num_samples): method test_city_with_postcode (line 2113) | def test_city_with_postcode(self, faker, num_samples): class TestEnMs (line 2121) | class TestEnMs: method test_city_prefix_abbr (line 2124) | def test_city_prefix_abbr(self, faker, num_samples): method test_city_prefix (line 2130) | def test_city_prefix(self, faker, num_samples): method test_city (line 2136) | def test_city(self, faker, num_samples): method test_street_prefix (line 2144) | def test_street_prefix(self, faker, num_samples): method test_street_name (line 2150) | def test_street_name(self, faker, num_samples): method test_building_prefix (line 2155) | def test_building_prefix(self, faker, num_samples): method test_building_number (line 2160) | def test_building_number(self, faker, num_samples): method test_city_state (line 2165) | def test_city_state(self, faker, num_samples): method test_state_administrative_unit (line 2177) | def test_state_administrative_unit(self, faker, num_samples, fn_name): method test_postcode_in_state (line 2183) | def test_postcode_in_state(self, faker, num_samples): method test_postcode (line 2194) | def test_postcode(self, faker, num_samples): class TestEnNz (line 2200) | class TestEnNz: method test_te_reo_part (line 2203) | def test_te_reo_part(self, faker, num_samples): method test_reo_first (line 2209) | def test_reo_first(self, faker, num_samples): method test_reo_ending (line 2215) | def test_reo_ending(self, faker, num_samples): method test_city_prefix (line 2221) | def test_city_prefix(self, faker, num_samples): method test_city_suffix (line 2227) | def test_city_suffix(self, faker, num_samples): method test_rd_number (line 2233) | def test_rd_number(self, faker, num_samples): method test_secondary_address (line 2239) | def test_secondary_address(self, faker, num_samples): class TestFrCh (line 2248) | class TestFrCh: method test_canton_name (line 2251) | def test_canton_name(self, faker, num_samples): method test_canton_code (line 2257) | def test_canton_code(self, faker, num_samples): method test_canton (line 2263) | def test_canton(self, faker, num_samples): class TestHuHu (line 2270) | class TestHuHu: method test_administrative_unit (line 2273) | def test_administrative_unit(self, faker, num_samples): method test_street_address_with_county (line 2279) | def test_street_address_with_county(self, faker, num_samples): method test_city_prefix (line 2286) | def test_city_prefix(self, faker, num_samples): method test_city_part (line 2292) | def test_city_part(self, faker, num_samples): method test_real_city_name (line 2298) | def test_real_city_name(self, faker, num_samples): method test_frequent_street_name (line 2304) | def test_frequent_street_name(self, faker, num_samples): method test_postcode (line 2310) | def test_postcode(self, faker, num_samples): method test_street_name (line 2317) | def test_street_name(self, faker, num_samples): method test_building_number (line 2322) | def test_building_number(self, faker, num_samples): method test_city (line 2329) | def test_city(self, faker, num_samples): class TestIdId (line 2350) | class TestIdId: method test_street (line 2353) | def test_street(self, faker, num_samples): method test_street_prefix_short (line 2359) | def test_street_prefix_short(self, faker, num_samples): method test_street_prefix_long (line 2365) | def test_street_prefix_long(self, faker, num_samples): method test_city_name (line 2371) | def test_city_name(self, faker, num_samples): method test_administrative_unit (line 2377) | def test_administrative_unit(self, faker, num_samples): method test_state_abbr (line 2383) | def test_state_abbr(self, faker, num_samples): method test_country (line 2389) | def test_country(self, faker, num_samples): class TestKaGe (line 2396) | class TestKaGe: method test_street_title (line 2399) | def test_street_title(self, faker, num_samples): method test_city_name (line 2405) | def test_city_name(self, faker, num_samples): class TestSlSi (line 2412) | class TestSlSi: method test_city_name (line 2415) | def test_city_name(self, faker, num_samples): method test_street_name (line 2421) | def test_street_name(self, faker, num_samples): method test_administrative_unit (line 2427) | def test_administrative_unit(self, faker, num_samples): class TestSvSe (line 2434) | class TestSvSe: method test_street_prefix (line 2437) | def test_street_prefix(self, faker, num_samples): method test_city_name (line 2443) | def test_city_name(self, faker, num_samples): method test_administrative_unit (line 2449) | def test_administrative_unit(self, faker, num_samples): class TestUkUa (line 2456) | class TestUkUa: method test_city_prefix (line 2459) | def test_city_prefix(self, faker, num_samples): method test_city_name (line 2465) | def test_city_name(self, faker, num_samples): method test_postcode (line 2471) | def test_postcode(self, faker, num_samples): method test_street_prefix (line 2478) | def test_street_prefix(self, faker, num_samples): method test_street_name (line 2484) | def test_street_name(self, faker, num_samples): method test_street_title (line 2490) | def test_street_title(self, faker, num_samples): method test_region (line 2495) | def test_region(self, faker, num_samples): class TestViVn (line 2502) | class TestViVn: method test_city_prefix (line 2505) | def test_city_prefix(self, faker, num_samples): method test_state (line 2511) | def test_state(self, faker, num_samples): method test_state_abbr (line 2517) | def test_state_abbr(self, faker, num_samples): method test_postcode (line 2523) | def test_postcode(self, faker, num_samples): method test_postcode_in_state (line 2529) | def test_postcode_in_state(self, faker, num_samples): method test_state_abbr_determinism (line 2540) | def test_state_abbr_determinism(self, faker): class TestFrCa (line 2547) | class TestFrCa: method test_province (line 2550) | def test_province(self, faker, num_samples): method test_province_abbr (line 2556) | def test_province_abbr(self, faker, num_samples): method test_city_prefixes (line 2562) | def test_city_prefixes(self, faker, num_samples): method test_city_suffixes (line 2568) | def test_city_suffixes(self, faker, num_samples): method test_street_prefixes (line 2574) | def test_street_prefixes(self, faker, num_samples): method test_administrative_unit (line 2580) | def test_administrative_unit(self, faker, num_samples): class TestPlPl (line 2587) | class TestPlPl: method test_street_prefix_masculine (line 2590) | def test_street_prefix_masculine(self, faker, num_samples): method test_street_prefix_feminine (line 2595) | def test_street_prefix_feminine(self, faker, num_samples): method test_street_prefix_masculine_short (line 2600) | def test_street_prefix_masculine_short(self, faker, num_samples): method test_street_prefix_feminine_short (line 2606) | def test_street_prefix_feminine_short(self, faker, num_samples): method test_street_name_adjective_feminine (line 2612) | def test_street_name_adjective_feminine(self, faker, num_samples): method test_street_name_universal (line 2617) | def test_street_name_universal(self, faker, num_samples): method test_street_prefix (line 2622) | def test_street_prefix(self, faker, num_samples): method test_street_prefix_short (line 2627) | def test_street_prefix_short(self, faker, num_samples): method test_street_name (line 2633) | def test_street_name(self, faker, num_samples): method test_city (line 2638) | def test_city(self, faker, num_samples): method test_administrative_unit (line 2643) | def test_administrative_unit(self, faker, num_samples): method test_postcode (line 2648) | def test_postcode(self, faker, num_samples): method test_zipcode (line 2654) | def test_zipcode(self, faker, num_samples): method test_postalcode (line 2660) | def test_postalcode(self, faker, num_samples): class TestZuZa (line 2667) | class TestZuZa: method test_postcode (line 2670) | def test_postcode(self, faker, num_samples): method test_city_name (line 2676) | def test_city_name(self, faker, num_samples): method test_city_suffix (line 2682) | def test_city_suffix(self, faker, num_samples): method test_city (line 2688) | def test_city(self, faker, num_samples): method test_country (line 2694) | def test_country(self, faker, num_samples): method test_street_name (line 2700) | def test_street_name(self, faker, num_samples): method test_address (line 2706) | def test_address(self, faker, num_samples): method test_province (line 2711) | def test_province(self, faker, num_samples): method test_administrative_unit (line 2717) | def test_administrative_unit(self, faker, num_samples): FILE: tests/providers/test_automotive.py class _SimpleAutomotiveTestMixin (line 17) | class _SimpleAutomotiveTestMixin: method perform_extra_checks (line 20) | def perform_extra_checks(self, license_plate, match): method test_license_plate (line 23) | def test_license_plate(self, faker, num_samples): method test_vin (line 30) | def test_vin(self, faker, num_samples): class TestArBh (line 46) | class TestArBh(_SimpleAutomotiveTestMixin): class TestAzAz (line 52) | class TestAzAz(_SimpleAutomotiveTestMixin): class TestDeAt (line 58) | class TestDeAt(_SimpleAutomotiveTestMixin): method perform_extra_checks (line 63) | def perform_extra_checks(self, license_plate, match): class TestDeCh (line 68) | class TestDeCh(_SimpleAutomotiveTestMixin): class TestDeDe (line 74) | class TestDeDe(_SimpleAutomotiveTestMixin): method perform_extra_checks (line 82) | def perform_extra_checks(self, license_plate, match): class TestElGr (line 86) | class TestElGr(_SimpleAutomotiveTestMixin): class TestEnPh (line 92) | class TestEnPh(_SimpleAutomotiveTestMixin): method test_motorcycle_plate (line 99) | def test_motorcycle_plate(self, faker, num_samples): method test_automobile_plate (line 103) | def test_automobile_plate(self, faker, num_samples): method test_protocol_plate (line 107) | def test_protocol_plate(self, faker, num_samples): class TestEsCo (line 113) | class TestEsCo(_SimpleAutomotiveTestMixin): class TestEsEs (line 119) | class TestEsEs: method test_plate_new_format (line 125) | def test_plate_new_format(self, faker, num_samples): method test_plate_old_format (line 131) | def test_plate_old_format(self, faker, num_samples): method test_plate_old_format_explicit_province_prefix (line 139) | def test_plate_old_format_explicit_province_prefix(self, faker, num_sa... method test_plate_format (line 146) | def test_plate_format(self, faker, num_samples): class TestFiFi (line 153) | class TestFiFi(_SimpleAutomotiveTestMixin): class TestFilPh (line 159) | class TestFilPh(TestEnPh): class TestFrFr (line 165) | class TestFrFr(_SimpleAutomotiveTestMixin): class TestHeIl (line 171) | class TestHeIl(_SimpleAutomotiveTestMixin): class TestHuHu (line 175) | class TestHuHu(_SimpleAutomotiveTestMixin): class TestItIt (line 181) | class TestItIt(_SimpleAutomotiveTestMixin): class TestJaJp (line 187) | class TestJaJp(_SimpleAutomotiveTestMixin): class TestKoKr (line 199) | class TestKoKr(_SimpleAutomotiveTestMixin): class TestNlBe (line 205) | class TestNlBe(_SimpleAutomotiveTestMixin): class TestNlNl (line 211) | class TestNlNl(_SimpleAutomotiveTestMixin): method test_plate_car (line 230) | def test_plate_car(self, faker, num_samples): method test_plate_motorbike (line 236) | def test_plate_motorbike(self, faker, num_samples): class TestNoNo (line 243) | class TestNoNo(_SimpleAutomotiveTestMixin): class TestPlPl (line 249) | class TestPlPl: method test_License_plate (line 250) | def test_License_plate(self, faker, num_samples): class TestPtBr (line 257) | class TestPtBr(_SimpleAutomotiveTestMixin): class TestPtPt (line 263) | class TestPtPt(_SimpleAutomotiveTestMixin): class TestRoRo (line 271) | class TestRoRo(_SimpleAutomotiveTestMixin): method perform_extra_checks (line 276) | def perform_extra_checks(self, license_plate, match): class TestRuRu (line 280) | class TestRuRu(_SimpleAutomotiveTestMixin): method perform_extra_checks (line 295) | def perform_extra_checks(self, license_plate, match): method test_vehicle_category (line 299) | def test_vehicle_category(self, faker, num_samples): class TestSkSk (line 306) | class TestSkSk(_SimpleAutomotiveTestMixin): method perform_extra_checks (line 311) | def perform_extra_checks(self, license_plate, match): class TestSqAl (line 315) | class TestSqAl(_SimpleAutomotiveTestMixin): class TestSvSe (line 321) | class TestSvSe(_SimpleAutomotiveTestMixin): class TestThTh (line 327) | class TestThTh(_SimpleAutomotiveTestMixin): class TestTlPh (line 338) | class TestTlPh(TestEnPh): class TestTrTr (line 344) | class TestTrTr(_SimpleAutomotiveTestMixin): method perform_extra_checks (line 356) | def perform_extra_checks(self, license_plate, match): class TestUkUa (line 362) | class TestUkUa(_SimpleAutomotiveTestMixin): method perform_extra_checks (line 365) | def perform_extra_checks(self, license_plate, match): method test_temporary_plate (line 368) | def test_temporary_plate(self, faker, num_samples): method test_diplomatic_plate (line 376) | def test_diplomatic_plate(self, faker, num_samples): method test_prefix (line 384) | def test_prefix(self, faker): method test_region_code (line 390) | def test_region_code(self, faker): class TestViVn (line 394) | class TestViVn(_SimpleAutomotiveTestMixin): class TestZhCn (line 400) | class TestZhCn(_SimpleAutomotiveTestMixin): class TestZhTw (line 408) | class TestZhTw(_SimpleAutomotiveTestMixin): FILE: tests/providers/test_bank.py function is_valid_iban (line 29) | def is_valid_iban(iban): function is_valid_aba (line 35) | def is_valid_aba(aba): class TestAzAz (line 43) | class TestAzAz: method test_bban (line 46) | def test_bban(self, faker, num_samples): method test_iban (line 50) | def test_iban(self, faker, num_samples): method test_bank (line 57) | def test_bank(self, faker, num_samples): class TestCsCz (line 63) | class TestCsCz: method test_bban (line 66) | def test_bban(self, faker, num_samples): method test_iban (line 70) | def test_iban(self, faker, num_samples): class TestSkSk (line 78) | class TestSkSk: method test_bban (line 81) | def test_bban(self, faker, num_samples): method test_iban (line 85) | def test_iban(self, faker, num_samples): class TestNoNo (line 93) | class TestNoNo: method test_aba (line 96) | def test_aba(self, faker, num_samples): method test_bban (line 102) | def test_bban(self, faker, num_samples): method test_iban (line 106) | def test_iban(self, faker, num_samples): class TestFaIr (line 114) | class TestFaIr: method test_bban (line 117) | def test_bban(self, faker, num_samples): method test_bank (line 121) | def test_bank(self, faker, num_samples): class TestFiFi (line 126) | class TestFiFi: method test_bban (line 129) | def test_bban(self, faker, num_samples): method test_iban (line 133) | def test_iban(self, faker, num_samples): class TestPlPl (line 141) | class TestPlPl: method test_bban (line 144) | def test_bban(self, faker, num_samples): method test_iban (line 148) | def test_iban(self, faker, num_samples): class TestUkUa (line 156) | class TestUkUa: method test_bban (line 159) | def test_bban(self, faker, num_samples): method test_iban (line 163) | def test_iban(self, faker, num_samples): class TestEnGb (line 171) | class TestEnGb: method test_bban (line 174) | def test_bban(self, faker, num_samples): method test_iban (line 178) | def test_iban(self, faker, num_samples): class TestEnIe (line 186) | class TestEnIe: method test_bban (line 189) | def test_bban(self, faker, num_samples): method test_iban (line 193) | def test_iban(self, faker, num_samples): class TestRuRu (line 201) | class TestRuRu: method test_bic (line 204) | def test_bic(self, faker, num_samples): method test_correspondent_account (line 208) | def test_correspondent_account(self, faker, num_samples): method test_checking_account (line 212) | def test_checking_account(self, faker, num_samples): method test_bank (line 216) | def test_bank(self, faker, num_samples): class TestPtPt (line 221) | class TestPtPt: method test_bban (line 224) | def test_bban(self, faker, num_samples): method test_iban (line 228) | def test_iban(self, faker, num_samples): class TestEsEs (line 236) | class TestEsEs: method test_bban (line 239) | def test_bban(self, faker, num_samples): method test_iban (line 243) | def test_iban(self, faker, num_samples): class TestEsMx (line 251) | class TestEsMx: method test_bank (line 254) | def test_bank(self, faker, num_samples): method test_clabe_validation (line 275) | def test_clabe_validation(self, clabe, validity): method test_clabe (line 278) | def test_clabe(self, faker, num_samples): method test_clabe_bank_code (line 284) | def test_clabe_bank_code(self, faker, num_samples): class TestEsAr (line 292) | class TestEsAr: method test_bban (line 295) | def test_bban(self, faker, num_samples): method test_iban (line 299) | def test_iban(self, faker, num_samples): class TestFrFr (line 307) | class TestFrFr: method test_bban (line 310) | def test_bban(self, faker, num_samples): method test_iban (line 314) | def test_iban(self, faker, num_samples): class TestDeDe (line 322) | class TestDeDe: method test_swift_use_dataset (line 325) | def test_swift_use_dataset(self, faker, num_samples): class TestEnPh (line 332) | class TestEnPh: method test_swift (line 335) | def test_swift(self, faker, num_samples): method test_swift_invalid_length (line 341) | def test_swift_invalid_length(self, faker): method test_swift8_use_dataset (line 347) | def test_swift8_use_dataset(self, faker, num_samples): method test_swift11_use_dataset (line 355) | def test_swift11_use_dataset(self, faker, num_samples): method test_swift11_is_primary (line 364) | def test_swift11_is_primary(self, faker, num_samples): class TestFilPh (line 371) | class TestFilPh(TestEnPh): class TestTlPh (line 377) | class TestTlPh(TestEnPh): class TestTrTr (line 383) | class TestTrTr: method test_bban (line 386) | def test_bban(self, faker, num_samples): method test_iban (line 390) | def test_iban(self, faker, num_samples): class TestDeCh (line 398) | class TestDeCh: method test_bban (line 401) | def test_bban(self, faker, num_samples): method test_iban (line 405) | def test_iban(self, faker, num_samples): method test_bank (line 412) | def test_bank(self, faker, num_samples): class TestFrCh (line 418) | class TestFrCh(TestDeCh): class TestItCh (line 424) | class TestItCh(TestDeCh): class TestThTh (line 430) | class TestThTh: method test_bban (line 433) | def test_bban(self, faker, num_samples): method test_iban (line 437) | def test_iban(self, faker, num_samples): class TestElGr (line 445) | class TestElGr: method test_bank (line 448) | def test_bank(self, faker, num_samples): method test_bban (line 453) | def test_bban(self, faker, num_samples): method test_iban (line 457) | def test_iban(self, faker, num_samples): class TestEnIn (line 465) | class TestEnIn: method test_bank (line 468) | def test_bank(self, faker, num_samples): class TestNlBe (line 473) | class TestNlBe: method test_bban (line 474) | def test_bban(self, faker, num_samples): method test_iban (line 482) | def test_iban(self, faker, num_samples): method test_swift8_use_dataset (line 491) | def test_swift8_use_dataset(self, faker, num_samples): method test_swift11_use_dataset (line 499) | def test_swift11_use_dataset(self, faker, num_samples): class TestZhCn (line 509) | class TestZhCn: method test_bank (line 512) | def test_bank(self, faker, num_samples): class TestBaseBankProvider (line 517) | class TestBaseBankProvider: method test_bank_not_implemented_error (line 520) | def test_bank_not_implemented_error(self, faker): FILE: tests/providers/test_barcode.py class TestBarcodeProvider (line 8) | class TestBarcodeProvider: method test_ean (line 15) | def test_ean(self, faker, num_samples): method test_ean_bad_length (line 27) | def test_ean_bad_length(self, faker): method test_ean8 (line 33) | def test_ean8(self, faker, num_samples): method test_ean13 (line 42) | def test_ean13(self, faker, num_samples): method test_ean13_no_leading_zero (line 51) | def test_ean13_no_leading_zero(self, faker, num_samples): method test_ean13_leading_zero (line 61) | def test_ean13_leading_zero(self, faker, num_samples): function provider_class (line 73) | def provider_class(request): function provider (line 85) | def provider(faker, provider_class): class _LocaleCommonMixin (line 89) | class _LocaleCommonMixin: method assert_prefix (line 94) | def assert_prefix(barcode_digits, prefixes): method test_localized_ean (line 102) | def test_localized_ean(self, faker, num_samples, provider): method test_localized_ean8 (line 117) | def test_localized_ean8(self, faker, num_samples, provider): method test_localized_ean13 (line 127) | def test_localized_ean13(self, faker, num_samples, provider): class _LocaleNorthAmericaMixin (line 138) | class _LocaleNorthAmericaMixin(_LocaleCommonMixin): method test_upc_a (line 142) | def test_upc_a(self, faker, num_samples): method test_upc_ae_mode (line 151) | def test_upc_ae_mode(self, faker, num_samples): method test_upc_e_explicit_number_system (line 160) | def test_upc_e_explicit_number_system(self, faker, num_samples): method test_upc_e_safe_mode (line 169) | def test_upc_e_safe_mode(self, faker): method test_upc_a2e_bad_values (line 201) | def test_upc_a2e_bad_values(self, faker, provider): method test_upc_a2e2a (line 210) | def test_upc_a2e2a(self, faker, num_samples, provider): method test_upc_e2a2e (line 228) | def test_upc_e2a2e(self, faker, num_samples, provider): class TestEnUs (line 247) | class TestEnUs(_LocaleNorthAmericaMixin): method get_provider_class (line 253) | def get_provider_class(): class TestEnCa (line 259) | class TestEnCa(_LocaleNorthAmericaMixin): method get_provider_class (line 265) | def get_provider_class(): class TestFrCa (line 271) | class TestFrCa(_LocaleNorthAmericaMixin): method get_provider_class (line 277) | def get_provider_class(): class TestJaJp (line 283) | class TestJaJp(_LocaleCommonMixin): method get_provider_class (line 289) | def get_provider_class(): method test_jan (line 294) | def test_jan(self, faker, num_samples, provider): method test_jan8 (line 309) | def test_jan8(self, faker, num_samples, provider): method test_jan13 (line 319) | def test_jan13(self, faker, num_samples, provider): class TestEsEs (line 330) | class TestEsEs(_LocaleCommonMixin): method get_provider_class (line 336) | def get_provider_class(): method test_localized_ean (line 341) | def test_localized_ean(self, faker, num_samples, provider): FILE: tests/providers/test_color.py class TestColorProvider (line 28) | class TestColorProvider: method test_safe_hex_color (line 33) | def test_safe_hex_color(self, faker, num_samples): method test_hex_color (line 36) | def test_hex_color(self, faker, num_samples): method test_rgb_color (line 39) | def test_rgb_color(self, faker, num_samples): method test_rgb_css_color (line 46) | def test_rgb_css_color(self, faker, num_samples): method test_color (line 56) | def test_color(self, faker, num_samples): method _seed_instances (line 65) | def _seed_instances(self, faker, seed): method test_color_rgb (line 69) | def test_color_rgb(self, faker, num_samples): method test_color_rgb_float (line 75) | def test_color_rgb_float(self, faker, num_samples): method test_color_hsl (line 81) | def test_color_hsl(self, faker, num_samples): method test_color_hsv (line 87) | def test_color_hsv(self, faker, num_samples): class TestRandomColor (line 94) | class TestRandomColor: method setup_method (line 110) | def setup_method(self): method test_color_format_hsv (line 113) | def test_color_format_hsv(self, num_samples): method test_color_format_hsl (line 123) | def test_color_format_hsl(self, num_samples): method test_color_format_rgb (line 133) | def test_color_format_rgb(self, num_samples): method test_color_format_hex (line 143) | def test_color_format_hex(self, num_samples): method test_color_format_unspecified (line 148) | def test_color_format_unspecified(self, num_samples): method test_rgb (line 153) | def test_rgb(self, num_samples): method test_rgb_float (line 161) | def test_rgb_float(self, num_samples): method test_hsl (line 169) | def test_hsl(self, num_samples): method test_hsv (line 179) | def test_hsv(self, num_samples): method test_hue_integer (line 189) | def test_hue_integer(self): method test_hue_float (line 199) | def test_hue_float(self, num_samples): method test_hue_word (line 211) | def test_hue_word(self): method test_hue_tuple_beyond_limits (line 244) | def test_hue_tuple_beyond_limits(self, num_samples): method test_hue_tuple_inverted_values (line 253) | def test_hue_tuple_inverted_values(self, num_samples): method test_hue_invalid (line 262) | def test_hue_invalid(self): method test_luminosity_word (line 276) | def test_luminosity_word(self): method test_luminosity_invalid (line 293) | def test_luminosity_invalid(self, num_samples): method test_bad_color_map (line 300) | def test_bad_color_map(self): class TestAzAz (line 312) | class TestAzAz: method test_color_name (line 315) | def test_color_name(self, faker, num_samples): class TestDeAt (line 322) | class TestDeAt: method test_color_name (line 325) | def test_color_name(self, faker, num_samples): class TestDeCh (line 332) | class TestDeCh: method test_color_name (line 335) | def test_color_name(self, faker, num_samples): class TestDeDe (line 343) | class TestDeDe: method test_color_name (line 346) | def test_color_name(self, faker, num_samples): class TestHyAm (line 353) | class TestHyAm: method test_color_name (line 356) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 362) | def test_safe_color_name(self, faker, num_samples): class TestFaIr (line 369) | class TestFaIr: method test_color_name (line 372) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 378) | def test_safe_color_name(self, faker, num_samples): class TestBgBg (line 385) | class TestBgBg: method test_color_name (line 388) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 394) | def test_safe_color_name(self, faker, num_samples): class TestElGr (line 401) | class TestElGr: method test_color_name (line 404) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 410) | def test_safe_color_name(self, faker, num_samples): class TestEsEs (line 417) | class TestEsEs: method test_color_name (line 420) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 426) | def test_safe_color_name(self, faker, num_samples): class TestSkSk (line 433) | class TestSkSk: method test_safe_color_name (line 436) | def test_safe_color_name(self, faker, num_samples): class TestCsCz (line 443) | class TestCsCz: method test_safe_color_name (line 446) | def test_safe_color_name(self, faker, num_samples): class TestHeIl (line 453) | class TestHeIl: method test_color_name (line 456) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 462) | def test_safe_color_name(self, faker, num_samples): class TestIdId (line 469) | class TestIdId: method test_color_name (line 472) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 478) | def test_safe_color_name(self, faker, num_samples): class TestKaGe (line 485) | class TestKaGe: method test_color_name (line 488) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 494) | def test_safe_color_name(self, faker, num_samples): class TestViVn (line 501) | class TestViVn: method test_color_name (line 504) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 510) | def test_safe_color_name(self, faker, num_samples): class TestUzUz (line 517) | class TestUzUz: method test_color_name (line 520) | def test_color_name(self, faker, num_samples): method test_safe_color_name (line 526) | def test_safe_color_name(self, faker, num_samples): FILE: tests/providers/test_company.py class TestAzAz (line 39) | class TestAzAz: method test_company_suffix (line 42) | def test_company_suffix(self, faker, num_samples): method test_large_companies (line 48) | def test_large_companies(self, faker, num_samples): class TestDeAt (line 55) | class TestDeAt: method test_company_suffix (line 58) | def test_company_suffix(self, faker, num_samples): method test_company (line 64) | def test_company(self, faker, num_samples): class TestDeCh (line 70) | class TestDeCh: method test_company_suffix (line 73) | def test_company_suffix(self, faker, num_samples): method test_company (line 79) | def test_company(self, faker, num_samples): class TestFiFi (line 85) | class TestFiFi: method _has_valid_checksum (line 88) | def _has_valid_checksum(self, company_id): method test_company_business_id (line 97) | def test_company_business_id(self, faker, num_samples): class TestFrFr (line 104) | class TestFrFr: method test_siren (line 107) | def test_siren(self, faker, num_samples): method test_siret (line 113) | def test_siret(self, faker, num_samples): method test_company_vat (line 119) | def test_company_vat(self, faker, num_samples): method test_ape_code (line 138) | def test_ape_code(self, faker, num_samples): method test_rcs_number (line 159) | def test_rcs_number(self, faker, num_samples): class TestHyAm (line 168) | class TestHyAm: method test_bs (line 171) | def test_bs(self, faker, num_samples): method test_catch_phrase (line 176) | def test_catch_phrase(self, faker, num_samples): method test_company (line 181) | def test_company(self, faker, num_samples): method test_company_suffix (line 186) | def test_company_suffix(self, faker, num_samples): class TestJaJp (line 193) | class TestJaJp: method test_company_prefix (line 196) | def test_company_prefix(self, faker, num_samples): method test_company_category (line 202) | def test_company_category(self, faker, num_samples): method test_company (line 208) | def test_company(self, faker, num_samples): class TestPtBr (line 219) | class TestPtBr: method test_company_id_checksum (line 222) | def test_company_id_checksum(self): method test_company_id (line 226) | def test_company_id(self, faker, num_samples): method test_cnpj (line 231) | def test_cnpj(self, faker, num_samples): class TestHuHu (line 237) | class TestHuHu: method test_company_suffix (line 240) | def test_company_suffix(self, faker, num_samples): method test_company (line 246) | def test_company(self, faker, num_samples): class TestPlPl (line 253) | class TestPlPl: method test_regon_checksum (line 256) | def test_regon_checksum(self): method test_regon (line 263) | def test_regon(self, faker, num_samples): method test_local_regon_checksum (line 267) | def test_local_regon_checksum(self): method test_local_regon (line 274) | def test_local_regon(self, faker, num_samples): method test_company_vat_checksum (line 278) | def test_company_vat_checksum(self): method test_company_vat (line 285) | def test_company_vat(self, faker, num_samples): method test_company_prefix (line 289) | def test_company_prefix(self, faker, num_samples): method test_company_suffix (line 295) | def test_company_suffix(self, faker, num_samples): class TestNlNl (line 302) | class TestNlNl: method test_company_prefix (line 305) | def test_company_prefix(self, faker, num_samples): method test_company_suffix (line 311) | def test_company_suffix(self, faker, num_samples): method test_large_companies (line 317) | def test_large_companies(self, faker, num_samples): class TestEnPh (line 324) | class TestEnPh: method setup_class (line 328) | def setup_class(cls): method test_random_company_noun_chain (line 334) | def test_random_company_noun_chain(self, faker, num_samples): method test_random_company_acronym (line 339) | def test_random_company_acronym(self, faker, num_samples): method test_company (line 344) | def test_company(self, faker, num_samples): class TestFilPh (line 354) | class TestFilPh(TestEnPh): method test_PH_random_good_service_adjective_chain (line 357) | def test_PH_random_good_service_adjective_chain(self, faker, num_sampl... class TestTlPh (line 363) | class TestTlPh(TestFilPh): class TestRuRu (line 369) | class TestRuRu: method test_calculate_checksum_nine_digits (line 372) | def test_calculate_checksum_nine_digits(self): method test_businesses_inn (line 380) | def test_businesses_inn(self, faker, num_samples): method test_individuals_inn (line 386) | def test_individuals_inn(self, faker, num_samples): method test_businesses_ogrn (line 393) | def test_businesses_ogrn(self, faker, num_samples): method test_individuals_ogrn (line 403) | def test_individuals_ogrn(self, faker, num_samples): method test_kpp (line 413) | def test_kpp(self, faker, num_samples): method test_company_prefix (line 421) | def test_company_prefix(self, faker, num_samples): method test_company_suffix (line 427) | def test_company_suffix(self, faker, num_samples): method test_large_companies (line 433) | def test_large_companies(self, faker, num_samples): method test_catchphrase (line 439) | def test_catchphrase(self, faker, num_samples): method test_bs (line 445) | def test_bs(self, faker, num_samples): method test_snils (line 452) | def test_snils(self, faker, num_samples): class TestItIt (line 459) | class TestItIt: method test_company_vat (line 464) | def test_company_vat(self, faker, num_samples): method test_company_vat_special_cases (line 479) | def test_company_vat_special_cases(self, faker, value, expected): class TestThTh (line 489) | class TestThTh: method test_company_prefix (line 492) | def test_company_prefix(self, faker, num_samples): method test_company_suffix (line 498) | def test_company_suffix(self, faker, num_samples): method test_company_limited_prefix (line 504) | def test_company_limited_prefix(self, faker, num_samples): method test_company_limited_suffix (line 510) | def test_company_limited_suffix(self, faker, num_samples): method test_nonprofit_prefix (line 516) | def test_nonprofit_prefix(self, faker, num_samples): method test_company (line 522) | def test_company(self, faker, num_samples): class TestTrTr (line 528) | class TestTrTr: method test_company_suffix (line 531) | def test_company_suffix(self, faker, num_samples): method test_large_companies (line 537) | def test_large_companies(self, faker, num_samples): class TestRoRo (line 544) | class TestRoRo: method test_company_suffix (line 547) | def test_company_suffix(self, faker, num_samples): class TestElGr (line 554) | class TestElGr: method test_company_suffix (line 557) | def test_company_suffix(self, faker, num_samples): class TestNlBe (line 564) | class TestNlBe: method test_company_suffix (line 567) | def test_company_suffix(self, faker, num_samples): class TestEsEs (line 574) | class TestEsEs: method test_company_suffix (line 577) | def test_company_suffix(self, faker, num_samples): method test_company (line 583) | def test_company(self, faker, num_samples): class TestViVn (line 589) | class TestViVn: method test_company_suffix (line 592) | def test_company_suffix(self, faker, num_samples): method test_company (line 598) | def test_company(self, faker, num_samples): class TestKoKr (line 604) | class TestKoKr: method test_company_name_word (line 607) | def test_company_name_word(self, faker, num_samples): method test_company_suffix (line 613) | def test_company_suffix(self, faker, num_samples): method test_company (line 619) | def test_company(self, faker, num_samples): FILE: tests/providers/test_credit_card.py class TestCreditCardProvider (line 10) | class TestCreditCardProvider: method test_mastercard (line 21) | def test_mastercard(self, faker, num_samples): method test_visa13 (line 29) | def test_visa13(self, faker, num_samples): method test_visa16 (line 37) | def test_visa16(self, faker, num_samples): method test_visa19 (line 45) | def test_visa19(self, faker, num_samples): method test_discover (line 53) | def test_discover(self, faker, num_samples): method test_diners_club (line 61) | def test_diners_club(self, faker, num_samples): method test_jcb16 (line 69) | def test_jcb16(self, faker, num_samples): method test_jcb15 (line 77) | def test_jcb15(self, faker, num_samples): class TestRuRu (line 86) | class TestRuRu: method test_visa (line 98) | def test_visa(self, faker, num_samples): method test_mastercard (line 103) | def test_mastercard(self, faker, num_samples): method test_mir (line 108) | def test_mir(self, faker, num_samples): method test_maestro (line 113) | def test_maestro(self, faker, num_samples): method test_amex (line 118) | def test_amex(self, faker, num_samples): method test_unionpay (line 123) | def test_unionpay(self, faker, num_samples): method test_credit_card_full (line 128) | def test_credit_card_full(self, faker, num_samples): class TestPtPt (line 135) | class TestPtPt: method test_visa (line 142) | def test_visa(self, faker, num_samples): method test_mastercard (line 147) | def test_mastercard(self, faker, num_samples): method test_maestro (line 152) | def test_maestro(self, faker, num_samples): class TestUkUa (line 158) | class TestUkUa: method test_mastercard (line 166) | def test_mastercard(self, faker, num_samples): method test_visa (line 171) | def test_visa(self, faker, num_samples): method test_maestro (line 176) | def test_maestro(self, faker, num_samples): method test_prostir (line 181) | def test_prostir(self, faker, num_samples): method test_credit_card_full (line 186) | def test_credit_card_full(self, faker, num_samples): class TestZhCn (line 194) | class TestZhCn: method test_mastercard (line 201) | def test_mastercard(self, faker, num_samples): method test_visa (line 206) | def test_visa(self, faker, num_samples): method test_unionpay (line 211) | def test_unionpay(self, faker, num_samples): method test_credit_card_full (line 216) | def test_credit_card_full(self, faker, num_samples): FILE: tests/providers/test_currency.py class TestCurrencyProvider (line 8) | class TestCurrencyProvider: method setup_class (line 14) | def setup_class(cls): method test_currency (line 23) | def test_currency(self, faker, num_samples): method test_currency_code (line 29) | def test_currency_code(self, faker, num_samples): method test_currency_name (line 34) | def test_currency_name(self, faker, num_samples): method test_currency_code_has_symbol (line 39) | def test_currency_code_has_symbol(self, faker, num_samples): method test_currency_symbol_no_code_supplied (line 45) | def test_currency_symbol_no_code_supplied(self, faker, num_samples): method test_currency_symbol_with_valid_code (line 52) | def test_currency_symbol_with_valid_code(self, mock_random_element, fa... method test_currency_symbol_with_invalid_code (line 58) | def test_currency_symbol_with_invalid_code(self, mock_random_element, ... method test_cryptocurrency (line 64) | def test_cryptocurrency(self, faker, num_samples): method test_cryptocurrency_code (line 70) | def test_cryptocurrency_code(self, faker, num_samples): method test_cryptocurrency_name (line 75) | def test_cryptocurrency_name(self, faker, num_samples): method test_pricetag (line 80) | def test_pricetag(self, faker, num_samples): class TestAzAz (line 86) | class TestAzAz: method setup_class (line 92) | def setup_class(cls): method test_currency (line 98) | def test_currency(self, faker, num_samples): method test_pricetag (line 103) | def test_pricetag(self, faker, num_samples): class TestRuRu (line 109) | class TestRuRu: method setup_class (line 115) | def setup_class(cls): method test_currency (line 124) | def test_currency(self, faker, num_samples): method test_currency_name (line 129) | def test_currency_name(self, faker, num_samples): method test_pricetag (line 134) | def test_pricetag(self, faker, num_samples): class TestCsCz (line 141) | class TestCsCz: method setup_class (line 147) | def setup_class(cls): method test_pricetag (line 152) | def test_pricetag(self, faker, num_samples): class TestDeAt (line 158) | class TestDeAt: method setup_class (line 164) | def setup_class(cls): method test_pricetag (line 172) | def test_pricetag(self, faker, num_samples): method test_currency (line 177) | def test_currency(self, faker, num_samples): method test_currency_name (line 182) | def test_currency_name(self, faker, num_samples): method test_currency_code (line 187) | def test_currency_code(self, faker, num_samples): class TestDeCh (line 193) | class TestDeCh: method setup_class (line 199) | def setup_class(cls): method test_pricetag (line 207) | def test_pricetag(self, faker, num_samples): method test_currency (line 212) | def test_currency(self, faker, num_samples): method test_currency_name (line 217) | def test_currency_name(self, faker, num_samples): method test_currency_code (line 222) | def test_currency_code(self, faker, num_samples): class TestDeDe (line 228) | class TestDeDe: method setup_class (line 234) | def setup_class(cls): method test_pricetag (line 242) | def test_pricetag(self, faker, num_samples): method test_currency (line 247) | def test_currency(self, faker, num_samples): method test_currency_name (line 252) | def test_currency_name(self, faker, num_samples): method test_currency_code (line 257) | def test_currency_code(self, faker, num_samples): class TestEnAu (line 263) | class TestEnAu: method setup_class (line 269) | def setup_class(cls): method test_pricetag (line 274) | def test_pricetag(self, faker, num_samples): class TestEnCa (line 280) | class TestEnCa: method setup_class (line 286) | def setup_class(cls): method test_pricetag (line 291) | def test_pricetag(self, faker, num_samples): class TestEsEs (line 297) | class TestEsEs: method setup_class (line 303) | def setup_class(cls): method test_currency (line 310) | def test_currency(self, faker, num_samples): method test_currency_name (line 315) | def test_currency_name(self, faker, num_samples): method test_pricetag (line 320) | def test_pricetag(self, faker, num_samples): class TestFaIr (line 326) | class TestFaIr: method setup_class (line 332) | def setup_class(cls): method test_pricetag (line 337) | def test_pricetag(self, faker, num_samples): class TestFrCa (line 343) | class TestFrCa: method setup_class (line 349) | def setup_class(cls): method test_pricetag (line 354) | def test_pricetag(self, faker, num_samples): class TestFrFr (line 360) | class TestFrFr: method setup_class (line 366) | def setup_class(cls): method test_pricetag (line 371) | def test_pricetag(self, faker, num_samples): class TestItIt (line 377) | class TestItIt: method setup_class (line 383) | def setup_class(cls): method test_pricetag (line 388) | def test_pricetag(self, faker, num_samples): class TestNgNg (line 394) | class TestNgNg: method setup_class (line 400) | def setup_class(cls): method test_pricetag (line 405) | def test_pricetag(self, faker, num_samples): class TestPlPl (line 411) | class TestPlPl: method setup_class (line 417) | def setup_class(cls): method test_pricetag (line 422) | def test_pricetag(self, faker, num_samples): class TestSkSk (line 428) | class TestSkSk: method setup_class (line 434) | def setup_class(cls): method test_pricetag (line 439) | def test_pricetag(self, faker, num_samples): class TestSvSe (line 445) | class TestSvSe: method setup_class (line 451) | def setup_class(cls): method test_currency (line 458) | def test_currency(self, faker, num_samples): method test_currency_name (line 463) | def test_currency_name(self, faker, num_samples): class TestThTh (line 469) | class TestThTh: method setup_class (line 475) | def setup_class(cls): method test_currency (line 482) | def test_currency(self, faker, num_samples): method test_currency_name (line 487) | def test_currency_name(self, faker, num_samples): class TestRoRo (line 493) | class TestRoRo: method setup_class (line 499) | def setup_class(cls): method test_pricetag (line 504) | def test_pricetag(self, faker, num_samples): class TestPtBr (line 510) | class TestPtBr: method setup_class (line 516) | def setup_class(cls): method test_pricetag (line 521) | def test_pricetag(self, faker, num_samples): class TestNlNl (line 527) | class TestNlNl: method setup_class (line 533) | def setup_class(cls): method test_pricetag (line 538) | def test_pricetag(self, faker, num_samples): class TestElGr (line 544) | class TestElGr: method setup_class (line 550) | def setup_class(cls): method test_pricetag (line 555) | def test_pricetag(self, faker, num_samples): class TestTrTr (line 561) | class TestTrTr: method setup_class (line 567) | def setup_class(cls): method test_pricetag (line 572) | def test_pricetag(self, faker, num_samples): class TestViVn (line 578) | class TestViVn: method setup_class (line 584) | def setup_class(cls): method test_currency (line 590) | def test_currency(self, faker, num_samples): method test_pricetag (line 595) | def test_pricetag(self, faker, num_samples): class TestUkUa (line 601) | class TestUkUa(TestCurrencyProvider): method setup_class (line 605) | def setup_class(cls): class TestUzUz (line 615) | class TestUzUz: method setup_class (line 621) | def setup_class(cls): method test_currency (line 627) | def test_currency(self, faker, num_samples): method test_pricetag (line 632) | def test_pricetag(self, faker, num_samples): FILE: tests/providers/test_date_time.py function is64bit (line 53) | def is64bit(): class UTC (line 57) | class UTC(tzinfo): method __repr__ (line 62) | def __repr__(self): method utcoffset (line 65) | def utcoffset(self, dt): method tzname (line 68) | def tzname(self, dt): method dst (line 71) | def dst(self, dt): class TestKoKR (line 78) | class TestKoKR(unittest.TestCase): method setUp (line 79) | def setUp(self): method test_day (line 83) | def test_day(self): method test_month (line 87) | def test_month(self): class TestDateTime (line 92) | class TestDateTime(unittest.TestCase): method setUp (line 93) | def setUp(self): method assertBetween (line 97) | def assertBetween(self, date, start_date, end_date): method test_date (line 101) | def test_date(self): method test_day (line 107) | def test_day(self): method test_month (line 111) | def test_month(self): method test_past_datetime (line 115) | def test_past_datetime(self): method test_past_date (line 119) | def test_past_date(self): method test_future_datetime (line 123) | def test_future_datetime(self): method test_future_date (line 127) | def test_future_date(self): method test_parse_date_time (line 131) | def test_parse_date_time(self): method test_parse_date (line 143) | def test_parse_date(self): method test_timezone_conversion (line 158) | def test_timezone_conversion(self): method test_pytimezone (line 171) | def test_pytimezone(self): method test_pytimezone_usable (line 175) | def test_pytimezone_usable(self): method test_pytimezone_tzdata_missing_error (line 180) | def test_pytimezone_tzdata_missing_error(self): method test_datetimes_with_and_without_tzinfo (line 200) | def test_datetimes_with_and_without_tzinfo(self): method test_iso8601_fractional_seconds_win (line 224) | def test_iso8601_fractional_seconds_win(self): method test_iso8601_fractional_seconds_non_win (line 231) | def test_iso8601_fractional_seconds_non_win(self): method test_date_object (line 234) | def test_date_object(self): method test_time_object (line 237) | def test_time_object(self): method test_timedelta (line 240) | def test_timedelta(self): method test_date_time_between_dates (line 259) | def test_date_time_between_dates(self): method test_date_time_between_dates_with_no_date_overlap (line 270) | def test_date_time_between_dates_with_no_date_overlap(self): method test_date_time_between_dates_with_tzinfo (line 274) | def test_date_time_between_dates_with_tzinfo(self): method test_past_datetime_within_second (line 289) | def test_past_datetime_within_second(self): method test_date_between_dates (line 293) | def test_date_between_dates(self): method test_date_time_between_long_past_dates (line 301) | def test_date_time_between_long_past_dates(self): method _datetime_to_time (line 305) | def _datetime_to_time(self, value): method test_date_time_this_period (line 309) | def test_date_time_this_period(self): method test_date_time_this_period_with_tzinfo (line 366) | def test_date_time_this_period_with_tzinfo(self): method test_date_this_period (line 410) | def test_date_this_period(self): method test_date_time_between (line 440) | def test_date_time_between(self): method test_date_between (line 457) | def test_date_between(self): method test_date_between_months (line 467) | def test_date_between_months(self): method test_parse_timedelta (line 477) | def test_parse_timedelta(self): method test_time_series (line 493) | def test_time_series(self): method test_unix_time (line 527) | def test_unix_time(self): method test_unix_time_win (line 589) | def test_unix_time_win(self): method test_unix_time_non_win (line 598) | def test_unix_time_non_win(self): method test_change_year (line 602) | def test_change_year(self): class TestDeDe (line 617) | class TestDeDe(unittest.TestCase): method setUp (line 618) | def setUp(self): method test_day (line 622) | def test_day(self): method test_month (line 626) | def test_month(self): class TestPlPL (line 631) | class TestPlPL(unittest.TestCase): method setUp (line 632) | def setUp(self): method test_day (line 636) | def test_day(self): method test_month (line 640) | def test_month(self): class TestHyAm (line 645) | class TestHyAm(unittest.TestCase): method setUp (line 648) | def setUp(self): method test_day (line 652) | def test_day(self): method test_month (line 657) | def test_month(self): class TestAr (line 663) | class TestAr(unittest.TestCase): method test_ar_aa (line 664) | def test_ar_aa(self): method test_ar_eg (line 677) | def test_ar_eg(self): class DatesOfBirth (line 693) | class DatesOfBirth(unittest.TestCase): method setUp (line 698) | def setUp(self): method test_date_of_birth (line 702) | def test_date_of_birth(self): method test_date_of_birth_on_leap_day (line 707) | def test_date_of_birth_on_leap_day(self): method test_value_errors (line 715) | def test_value_errors(self): method test_type_errors (line 728) | def test_type_errors(self): method test_bad_age_range (line 735) | def test_bad_age_range(self): method test_acceptable_age_range_five_years (line 739) | def test_acceptable_age_range_five_years(self): method test_acceptable_age_range_eighteen_years (line 752) | def test_acceptable_age_range_eighteen_years(self): method test_identical_age_range (line 765) | def test_identical_age_range(self): method test_distant_age_range (line 778) | def test_distant_age_range(self): class TestFilPh (line 792) | class TestFilPh(unittest.TestCase): method setUp (line 795) | def setUp(self): method setup_faker (line 799) | def setup_faker(self): method setup_constants (line 803) | def setup_constants(self): method test_PH_of_week (line 809) | def test_PH_of_week(self): method test_PH_month_name (line 813) | def test_PH_month_name(self): class TestTlPh (line 818) | class TestTlPh(TestFilPh): method setup_faker (line 819) | def setup_faker(self): class TestTaIN (line 824) | class TestTaIN(unittest.TestCase): method setUp (line 827) | def setUp(self): method test_day (line 831) | def test_day(self): method test_month (line 836) | def test_month(self): class TestRuRu (line 842) | class TestRuRu(unittest.TestCase): method setUp (line 845) | def setUp(self): method test_day (line 849) | def test_day(self): method test_month (line 855) | def test_month(self): method test_timezone (line 861) | def test_timezone(self): class TestAzAz (line 868) | class TestAzAz(unittest.TestCase): method setUp (line 871) | def setUp(self): method test_day (line 875) | def test_day(self): method test_month (line 879) | def test_month(self): class TestCsCz (line 884) | class TestCsCz(unittest.TestCase): method setUp (line 885) | def setUp(self): method test_day (line 889) | def test_day(self): method test_month (line 893) | def test_month(self): class TestDeAt (line 898) | class TestDeAt(unittest.TestCase): method setUp (line 899) | def setUp(self): method test_day (line 903) | def test_day(self): method test_month (line 907) | def test_month(self): class TestEsEs (line 912) | class TestEsEs(unittest.TestCase): method setUp (line 913) | def setUp(self): method test_day (line 917) | def test_day(self): method test_month (line 921) | def test_month(self): class TestItIt (line 926) | class TestItIt(unittest.TestCase): method setUp (line 927) | def setUp(self): method test_day (line 931) | def test_day(self): method test_month (line 935) | def test_month(self): class TestSkSk (line 940) | class TestSkSk(unittest.TestCase): method setUp (line 941) | def setUp(self): method test_day (line 945) | def test_day(self): method test_month (line 949) | def test_month(self): class TestSlSi (line 954) | class TestSlSi(unittest.TestCase): method setUp (line 955) | def setUp(self): method test_day (line 959) | def test_day(self): method test_month (line 963) | def test_month(self): class TestThTh (line 968) | class TestThTh(unittest.TestCase): method setUp (line 971) | def setUp(self): method test_day (line 975) | def test_day(self): method test_month (line 980) | def test_month(self): method test_date (line 984) | def test_date(self): method test_time (line 996) | def test_time(self): method test_century (line 1001) | def test_century(self): method test_date_pattern (line 1009) | def test_date_pattern(self): class TestTrTr (line 1150) | class TestTrTr(unittest.TestCase): method setUp (line 1151) | def setUp(self): method test_day (line 1155) | def test_day(self): method test_month (line 1159) | def test_month(self): class TestPtBr (line 1164) | class TestPtBr(unittest.TestCase): method setUp (line 1165) | def setUp(self): method test_day (line 1169) | def test_day(self): method test_month (line 1173) | def test_month(self): class TestPtPt (line 1178) | class TestPtPt(unittest.TestCase): method setUp (line 1179) | def setUp(self): method test_day (line 1183) | def test_day(self): method test_month (line 1187) | def test_month(self): class TestRoRo (line 1192) | class TestRoRo(unittest.TestCase): method setUp (line 1193) | def setUp(self): method test_day (line 1197) | def test_day(self): method test_month (line 1201) | def test_month(self): class TestBnBd (line 1206) | class TestBnBd(unittest.TestCase): method setUp (line 1207) | def setUp(self): method test_day (line 1211) | def test_day(self): method test_month (line 1215) | def test_month(self): class TestNlNl (line 1220) | class TestNlNl(unittest.TestCase): method setUp (line 1221) | def setUp(self): method test_day (line 1225) | def test_day(self): method test_month (line 1229) | def test_month(self): class TestElGr (line 1234) | class TestElGr(unittest.TestCase): method setUp (line 1235) | def setUp(self): method test_day (line 1239) | def test_day(self): method test_month (line 1243) | def test_month(self): class TestZhCn (line 1248) | class TestZhCn(unittest.TestCase): method setUp (line 1249) | def setUp(self): method test_day (line 1253) | def test_day(self): method test_month (line 1257) | def test_month(self): class TestZhTw (line 1262) | class TestZhTw(unittest.TestCase): method setUp (line 1263) | def setUp(self): method test_day (line 1267) | def test_day(self): method test_month (line 1271) | def test_month(self): method test_year (line 1275) | def test_year(self): method test_minguo_year (line 1281) | def test_minguo_year(self): class TestNoNo (line 1288) | class TestNoNo(unittest.TestCase): method setUp (line 1289) | def setUp(self): method test_day (line 1293) | def test_day(self): method test_month (line 1297) | def test_month(self): class TestFrDz (line 1302) | class TestFrDz(unittest.TestCase): method setUp (line 1303) | def setUp(self): method test_day (line 1307) | def test_day(self): method test_month (line 1311) | def test_month(self): class TestFrFr (line 1316) | class TestFrFr(unittest.TestCase): method setUp (line 1317) | def setUp(self): method test_day (line 1321) | def test_day(self): method test_month (line 1325) | def test_month(self): class TestFrCa (line 1330) | class TestFrCa(unittest.TestCase): method setUp (line 1332) | def setUp(self): method test_day (line 1336) | def test_day(self): method test_month (line 1340) | def test_month(self): class TestGuIN (line 1345) | class TestGuIN(unittest.TestCase): method setUp (line 1348) | def setUp(self): method test_day (line 1352) | def test_day(self): method test_month (line 1356) | def test_month(self): method test_day_in_guj (line 1360) | def test_day_in_guj(self): method test_month_in_guj (line 1364) | def test_month_in_guj(self): class TestJaJp (line 1374) | class TestJaJp(unittest.TestCase): method setUp (line 1375) | def setUp(self): method test_day (line 1379) | def test_day(self): method test_month (line 1383) | def test_month(self): method test_traditional_month (line 1387) | def test_traditional_month(self): class TestKaGe (line 1392) | class TestKaGe(unittest.TestCase): method setUp (line 1395) | def setUp(self): method test_day (line 1399) | def test_day(self): method test_month (line 1404) | def test_month(self): class TestViVn (line 1410) | class TestViVn(unittest.TestCase): method setUp (line 1413) | def setUp(self): method test_day (line 1417) | def test_day(self): method test_month (line 1422) | def test_month(self): class TestUzUz (line 1428) | class TestUzUz(unittest.TestCase): method setUp (line 1431) | def setUp(self): method test_day (line 1435) | def test_day(self): method test_month (line 1440) | def test_month(self): FILE: tests/providers/test_doi.py function test_doi (line 6) | def test_doi(): function test_doi_es_ES (line 16) | def test_doi_es_ES(): FILE: tests/providers/test_dynamic.py class TestDynamicProvider (line 9) | class TestDynamicProvider: method test_without_dynamic (line 10) | def test_without_dynamic(self): method test_with_dynamic (line 18) | def test_with_dynamic(self): method test_dynamic_with_special_provider_name (line 32) | def test_dynamic_with_special_provider_name(self): method test_dynamic_with_empty_elements (line 45) | def test_dynamic_with_empty_elements(self): method test_dynamic_add_element (line 61) | def test_dynamic_add_element(self): method test_weighted_dynamic_with_use_weighting (line 76) | def test_weighted_dynamic_with_use_weighting(self): method test_weighted_dynamic_without_use_weighting (line 91) | def test_weighted_dynamic_without_use_weighting(self): FILE: tests/providers/test_emoji.py class TestGlobal (line 6) | class TestGlobal(unittest.TestCase): method setUp (line 9) | def setUp(self): method test_emoji (line 13) | def test_emoji(self): FILE: tests/providers/test_enum.py class _TestEnumWithNoElements (line 8) | class _TestEnumWithNoElements(Enum): class _TestEnumWithSingleElement (line 12) | class _TestEnumWithSingleElement(Enum): class _TestEnum (line 16) | class _TestEnum(Enum): class TestEnumProvider (line 22) | class TestEnumProvider: method test_enum (line 25) | def test_enum(self, faker, num_samples): method test_enum_single (line 32) | def test_enum_single(self, faker): method test_empty_enum_raises (line 36) | def test_empty_enum_raises(self, faker): method test_none_raises (line 43) | def test_none_raises(self, faker): method test_incorrect_type_raises (line 47) | def test_incorrect_type_raises(self, faker): FILE: tests/providers/test_file.py class TestFile (line 7) | class TestFile(unittest.TestCase): method setUp (line 10) | def setUp(self): method test_file_name (line 14) | def test_file_name(self): method test_file_path (line 29) | def test_file_path(self): method test_unix_device (line 55) | def test_unix_device(self): method test_unix_partition (line 67) | def test_unix_partition(self): FILE: tests/providers/test_geo.py class TestGlobal (line 10) | class TestGlobal(unittest.TestCase): method setUp (line 13) | def setUp(self): method test_local_latlng (line 17) | def test_local_latlng(self): class TestEnUS (line 30) | class TestEnUS(unittest.TestCase): method setUp (line 33) | def setUp(self): method test_latitude (line 37) | def test_latitude(self): method test_longitude (line 41) | def test_longitude(self): method test_latlng (line 45) | def test_latlng(self): method test_coordinate (line 52) | def test_coordinate(self): method test_coordinate_centered (line 56) | def test_coordinate_centered(self): method test_coordinate_rounded (line 60) | def test_coordinate_rounded(self): method test_location_on_land (line 64) | def test_location_on_land(self): method test_location_on_land_coords_only (line 75) | def test_location_on_land_coords_only(self): class TestSkSk (line 83) | class TestSkSk(unittest.TestCase): method setUp (line 84) | def setUp(self): method test_location_on_land (line 88) | def test_location_on_land(self): class TestCsCz (line 100) | class TestCsCz(unittest.TestCase): method setUp (line 101) | def setUp(self): method test_location_on_land (line 105) | def test_location_on_land(self): class TestDeAT (line 117) | class TestDeAT(unittest.TestCase): method setUp (line 120) | def setUp(self): method test_local_latitude (line 124) | def test_local_latitude(self): method test_local_longitude (line 128) | def test_local_longitude(self): class TestPlPl (line 133) | class TestPlPl(unittest.TestCase): method setUp (line 134) | def setUp(self): method test_location_on_land (line 138) | def test_location_on_land(self): class TestPtPT (line 150) | class TestPtPT(unittest.TestCase): method setUp (line 151) | def setUp(self): method test_nationality (line 155) | def test_nationality(self): class TestTrTr (line 161) | class TestTrTr(TestEnUS): method setUp (line 162) | def setUp(self): class TestEnIe (line 167) | class TestEnIe(TestEnUS): method setUp (line 168) | def setUp(self): FILE: tests/providers/test_internet.py class TestInternetProvider (line 28) | class TestInternetProvider: method test_email (line 41) | def test_email(self, faker, num_samples): method test_safe_default_email (line 46) | def test_safe_default_email(self, faker, num_samples): method test_unsafe_email (line 52) | def test_unsafe_email(self, faker, num_samples): method test_email_with_domain (line 58) | def test_email_with_domain(self, faker): method test_safe_email (line 63) | def test_safe_email(self, faker, num_samples): method test_safe_domain_names (line 69) | def test_safe_domain_names(self, faker, num_samples): method test_image_url (line 79) | def test_image_url(self, faker): method test_hostname (line 89) | def test_hostname(self, faker): method test_ipv4 (line 98) | def test_ipv4(self, faker, num_samples): method test_ipv4_caching (line 121) | def test_ipv4_caching(self, faker): method test_ipv4_network_class (line 161) | def test_ipv4_network_class(self, faker, num_samples): method test_ipv4_private (line 166) | def test_ipv4_private(self, faker, num_samples): method test_ipv4_private_class (line 179) | def test_ipv4_private_class(self, faker, num_samples): method test_ipv4_public_caching (line 194) | def test_ipv4_public_caching(self, faker): method test_ipv4_public (line 230) | def test_ipv4_public(self, faker, num_samples): method test_ipv4_public_class (line 247) | def test_ipv4_public_class(self, faker, num_samples): method test_ipv4_distribution_selection (line 262) | def test_ipv4_distribution_selection(self): method test_ipv6 (line 294) | def test_ipv6(self, faker, num_samples): method test_mac_address (line 309) | def test_mac_address(self, faker): method test_port_number (line 318) | def test_port_number(self, faker, num_samples): method test_http_method (line 325) | def test_http_method(self, faker, num_samples): method test_http_status_code (line 344) | def test_http_status_code(self, faker, num_samples): method test_dga (line 354) | def test_dga(self, faker): method test_iana_id (line 360) | def test_iana_id(self, faker, num_samples): method test_ripe_id (line 364) | def test_ripe_id(self, faker, num_samples): method test_nic_handles (line 369) | def test_nic_handles(self, faker, num_samples): class TestInternetProviderUrl (line 385) | class TestInternetProviderUrl: method is_correct_scheme (line 389) | def is_correct_scheme(url, schemes): method test_url_default_schemes (line 392) | def test_url_default_schemes(self, faker): method test_url_custom_schemes (line 397) | def test_url_custom_schemes(self, faker): method test_url_empty_schemes_list_generate_schemeless_urls (line 407) | def test_url_empty_schemes_list_generate_schemeless_urls(self, faker): class TestInternetProviderUri (line 414) | class TestInternetProviderUri: method is_correct_scheme (line 418) | def is_correct_scheme(uri, schemes): method test_uri_default_schemes (line 421) | def test_uri_default_schemes(self, faker): method test_uri_custom_schemes (line 426) | def test_uri_custom_schemes(self, faker): method test_uri_empty_schemes_list_generate_schemeless_urls (line 436) | def test_uri_empty_schemes_list_generate_schemeless_urls(self, faker): method test_uri_extension (line 442) | def test_uri_extension(self, faker): method test_uri_component (line 446) | def test_uri_component(self, faker): method test_uri_deep (line 450) | def test_uri_deep(self, faker): class TestJaJp (line 458) | class TestJaJp: method test_internet (line 461) | def test_internet(self, faker): method test_slug (line 482) | def test_slug(self, faker): class TestZhCn (line 488) | class TestZhCn: method test_email (line 491) | def test_email(self, faker): method test_domain_word (line 495) | def test_domain_word(self, faker): method test_domain_name (line 503) | def test_domain_name(self, faker): method test_domain_name_one_level_after_tld (line 555) | def test_domain_name_one_level_after_tld(self, faker): method test_domain_name_two_levels_after_cn_tld (line 566) | def test_domain_name_two_levels_after_cn_tld(self, mock_tld, mock_doma... method test_domain_name_two_levels_after_non_cn_tld (line 585) | def test_domain_name_two_levels_after_non_cn_tld(self, mock_tld, mock_... method test_domain_name_more_than_two_levels_after_cn_tld (line 596) | def test_domain_name_more_than_two_levels_after_cn_tld(self, mock_tld,... method test_domain_name_more_than_two_levels_after_non_cn_tld (line 627) | def test_domain_name_more_than_two_levels_after_non_cn_tld(self, mock_... method test_domain_name_bad_level (line 653) | def test_domain_name_bad_level(self, faker): method test_slug (line 657) | def test_slug(self, faker): class TestZhTw (line 663) | class TestZhTw: method test_email (line 666) | def test_email(self, faker): method test_slug (line 670) | def test_slug(self, faker): class TestHuHu (line 676) | class TestHuHu: method test_internet (line 679) | def test_internet(self, faker): method test_ascii_free_email_accented_character_replacements (line 693) | def test_ascii_free_email_accented_character_replacements(self, faker): method test_slug_accented_character_replacements (line 698) | def test_slug_accented_character_replacements(self, faker): class TestPlPl (line 702) | class TestPlPl: method test_free_email_domain (line 705) | def test_free_email_domain(self, faker): method test_tld (line 709) | def test_tld(self, faker): method test_slug (line 713) | def test_slug(self, faker): class TestNlNl (line 719) | class TestNlNl: method test_ascii_safe_email (line 726) | def test_ascii_safe_email(self, faker): method test_ascii_free_email (line 735) | def test_ascii_free_email(self, faker): method test_ascii_company_email (line 744) | def test_ascii_company_email(self, faker): method test_slug (line 749) | def test_slug(self, faker): class TestArAa (line 755) | class TestArAa: method test_ascii_safe_email (line 762) | def test_ascii_safe_email(self, faker): method test_ascii_free_email (line 771) | def test_ascii_free_email(self, faker): method test_ascii_company_email (line 780) | def test_ascii_company_email(self, faker): method test_slug (line 785) | def test_slug(self, faker): class TestAzAz (line 791) | class TestAzAz: method test_ascii_free_email (line 798) | def test_ascii_free_email(self, faker): method test_free_email_domain (line 803) | def test_free_email_domain(self, faker): method test_tld (line 807) | def test_tld(self, faker): method test_slug (line 811) | def test_slug(self, faker): class TestPtBr (line 817) | class TestPtBr: method test_free_email_domain (line 820) | def test_free_email_domain(self, faker): method test_tld (line 824) | def test_tld(self, faker): method test_ascii_safe_email_existing (line 833) | def test_ascii_safe_email_existing(self, faker): method test_ascii_email_new_replacements (line 843) | def test_ascii_email_new_replacements(self, faker): method test_slug (line 850) | def test_slug(self, faker): method test_new_domains_are_present (line 855) | def test_new_domains_are_present(self, faker): class TestEnPh (line 865) | class TestEnPh: method test_domain_name (line 870) | def test_domain_name(self, faker, num_samples): method test_slug (line 875) | def test_slug(self, faker): class TestFilPh (line 881) | class TestFilPh(TestEnPh): method test_slug (line 884) | def test_slug(self, faker): class TestTlPh (line 890) | class TestTlPh(TestFilPh): method test_slug (line 893) | def test_slug(self, faker): class TestEnGb (line 899) | class TestEnGb: method test_free_email_domain (line 902) | def test_free_email_domain(self, faker): method test_tld (line 906) | def test_tld(self, faker): method test_slug (line 910) | def test_slug(self, faker): class TestEsEs (line 916) | class TestEsEs: method test_tld (line 919) | def test_tld(self, faker): method test_slug (line 923) | def test_slug(self, faker): class TestRoRo (line 929) | class TestRoRo: method test_free_email_domain (line 932) | def test_free_email_domain(self, faker): method test_tld (line 936) | def test_tld(self, faker): method test_slug (line 940) | def test_slug(self, faker): class TestRuRu (line 946) | class TestRuRu: method test_free_email_domain (line 949) | def test_free_email_domain(self, faker): method test_tld (line 952) | def test_tld(self, faker): method test_ascii_safe_email (line 959) | def test_ascii_safe_email(self, faker): method test_ascii_free_email (line 968) | def test_ascii_free_email(self, faker): method test_ascii_company_email (line 977) | def test_ascii_company_email(self, faker): method test_slug (line 982) | def test_slug(self, faker): class TestThTh (line 988) | class TestThTh: method test_tld (line 991) | def test_tld(self, faker): method test_slug (line 995) | def test_slug(self, faker): FILE: tests/providers/test_isbn.py class TestISBN10 (line 7) | class TestISBN10: method test_check_digit_is_correct (line 8) | def test_check_digit_is_correct(self): method test_format_length (line 16) | def test_format_length(self): class TestISBN13 (line 21) | class TestISBN13: method test_check_digit_is_correct (line 22) | def test_check_digit_is_correct(self): method test_format_length (line 30) | def test_format_length(self): class TestProvider (line 35) | class TestProvider: method test_reg_pub_separation (line 38) | def test_reg_pub_separation(self): method test_rule_not_found (line 70) | def test_rule_not_found(self): FILE: tests/providers/test_job.py class TestJobProvider (line 23) | class TestJobProvider: method test_job (line 26) | def test_job(self, faker, num_samples): class TestAzAz (line 31) | class TestAzAz: method test_job (line 34) | def test_job(self, faker, num_samples): class TestCsCz (line 39) | class TestCsCz: method test_job (line 42) | def test_job(self, faker, num_samples): class TestDeAt (line 49) | class TestDeAt: method test_job (line 52) | def test_job(self, faker, num_samples): class TestDeDe (line 59) | class TestDeDe: method test_job (line 62) | def test_job(self, faker, num_samples): class TestElGr (line 67) | class TestElGr: method test_job (line 70) | def test_job(self, faker, num_samples): class TestEsEs (line 75) | class TestEsEs: method test_job (line 78) | def test_job(self, faker, num_samples): class TestFrFr (line 83) | class TestFrFr: method test_job (line 86) | def test_job(self, faker, num_samples): class TestHuHu (line 91) | class TestHuHu: method test_job (line 94) | def test_job(self, faker, num_samples): class TestHyAm (line 99) | class TestHyAm: method test_job (line 102) | def test_job(self, faker, num_samples): class TestJaJp (line 107) | class TestJaJp: method test_job (line 110) | def test_job(self, faker, num_samples): class TestKaGe (line 115) | class TestKaGe: method test_job (line 118) | def test_job(self, faker, num_samples): class TestKoKr (line 125) | class TestKoKr: method test_job (line 128) | def test_job(self, faker, num_samples): class TestPtBr (line 133) | class TestPtBr: method test_job (line 136) | def test_job(self, faker, num_samples): class TestPtPt (line 141) | class TestPtPt: method test_job (line 144) | def test_job(self, faker, num_samples): class TestRoRo (line 149) | class TestRoRo: method test_job (line 152) | def test_job(self, faker, num_samples): class TestSkSk (line 156) | class TestSkSk: method test_job (line 159) | def test_job(self, faker, num_samples): class TestThTh (line 166) | class TestThTh: method test_job (line 169) | def test_job(self, faker, num_samples): class TestTrTr (line 173) | class TestTrTr: method test_job (line 176) | def test_job(self, faker, num_samples): class TestViVn (line 180) | class TestViVn: method test_job (line 183) | def test_job(self, faker, num_samples): FILE: tests/providers/test_lorem.py class TestLoremProvider (line 21) | class TestLoremProvider: method test_word_with_defaults (line 35) | def test_word_with_defaults(self, faker, num_samples): method test_word_with_custom_list (line 40) | def test_word_with_custom_list(self, faker, num_samples): method test_words_with_zero_nb (line 46) | def test_words_with_zero_nb(self, faker, num_samples): method test_words_with_defaults (line 50) | def test_words_with_defaults(self, faker, num_samples): method test_words_with_custom_word_list (line 58) | def test_words_with_custom_word_list(self, faker, num_samples): method test_words_with_unique_sampling (line 66) | def test_words_with_unique_sampling(self, faker, num_samples): method test_sentence_no_words (line 80) | def test_sentence_no_words(self, faker, num_samples): method test_sentence_with_inexact_word_count (line 84) | def test_sentence_with_inexact_word_count(self, faker, num_samples): method test_sentence_with_exact_word_count (line 91) | def test_sentence_with_exact_word_count(self, faker, num_samples): method test_sentence_with_custom_word_list (line 98) | def test_sentence_with_custom_word_list(self, faker, num_samples): method test_sentences (line 104) | def test_sentences(self, faker, num_samples): method test_sentence_single_word (line 113) | def test_sentence_single_word(self, faker): method test_paragraph_no_sentences (line 117) | def test_paragraph_no_sentences(self, faker, num_samples): method test_paragraph_with_inexact_sentence_count (line 121) | def test_paragraph_with_inexact_sentence_count(self, faker, num_samples): method test_paragraph_with_exact_sentence_count (line 128) | def test_paragraph_with_exact_sentence_count(self, faker, num_samples): method test_paragraph_with_custom_word_list (line 135) | def test_paragraph_with_custom_word_list(self, faker, num_samples): method test_paragraphs (line 141) | def test_paragraphs(self, faker, num_samples): method test_text_with_less_than_four_characters (line 150) | def test_text_with_less_than_four_characters(self, faker, num_samples): method test_text_with_valid_character_count (line 165) | def test_text_with_valid_character_count(self, faker, num_samples, num... method test_text_with_custom_word_list (line 170) | def test_text_with_custom_word_list(self, faker, num_samples): method test_texts (line 176) | def test_texts(self, faker, num_samples): method test_get_default_words_list (line 191) | def test_get_default_words_list(self, faker): method test_get_words_list_part_of_speech (line 200) | def test_get_words_list_part_of_speech(self, faker, part_of_speech): method test_get_words_list_invalid_part_of_speech (line 204) | def test_get_words_list_invalid_part_of_speech(self, faker): method test_get_words_list_part_of_speech_ignored (line 213) | def test_get_words_list_part_of_speech_ignored(self, faker): class TestCsCz (line 218) | class TestCsCz: method test_paragraph (line 223) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 231) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 240) | def test_sentence(self, faker, num_samples): method test_sentences (line 248) | def test_sentences(self, faker, num_samples): method test_text (line 257) | def test_text(self, faker, num_samples): method test_texts (line 265) | def test_texts(self, faker, num_samples): method test_word (line 275) | def test_word(self, faker, num_samples): method test_words (line 280) | def test_words(self, faker, num_samples): class TestAzAz (line 287) | class TestAzAz: method test_paragraph (line 292) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 300) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 309) | def test_sentence(self, faker, num_samples): method test_sentences (line 317) | def test_sentences(self, faker, num_samples): method test_text (line 326) | def test_text(self, faker, num_samples): method test_texts (line 334) | def test_texts(self, faker, num_samples): method test_word (line 344) | def test_word(self, faker, num_samples): method test_words (line 349) | def test_words(self, faker, num_samples): class TestFaIr (line 356) | class TestFaIr: method test_paragraph (line 361) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 369) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 378) | def test_sentence(self, faker, num_samples): method test_sentences (line 386) | def test_sentences(self, faker, num_samples): method test_text (line 395) | def test_text(self, faker, num_samples): method test_texts (line 403) | def test_texts(self, faker, num_samples): method test_word (line 413) | def test_word(self, faker, num_samples): method test_words (line 418) | def test_words(self, faker, num_samples): class TestBnBd (line 425) | class TestBnBd: method test_paragraph (line 430) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 438) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 447) | def test_sentence(self, faker, num_samples): method test_sentences (line 455) | def test_sentences(self, faker, num_samples): class TestDeDe (line 465) | class TestDeDe: method test_paragraph (line 470) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 478) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 487) | def test_sentence(self, faker, num_samples): method test_sentences (line 495) | def test_sentences(self, faker, num_samples): method test_text (line 504) | def test_text(self, faker, num_samples): method test_texts (line 512) | def test_texts(self, faker, num_samples): method test_word (line 522) | def test_word(self, faker, num_samples): method test_words (line 527) | def test_words(self, faker, num_samples): class TestDeAt (line 534) | class TestDeAt: method test_paragraph (line 539) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 547) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 556) | def test_sentence(self, faker, num_samples): method test_sentences (line 564) | def test_sentences(self, faker, num_samples): method test_text (line 573) | def test_text(self, faker, num_samples): method test_texts (line 581) | def test_texts(self, faker, num_samples): method test_word (line 591) | def test_word(self, faker, num_samples): method test_words (line 596) | def test_words(self, faker, num_samples): class TestNlBe (line 603) | class TestNlBe: method test_paragraph (line 611) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 619) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 628) | def test_sentence(self, faker, num_samples): method test_sentences (line 636) | def test_sentences(self, faker, num_samples): method test_text (line 645) | def test_text(self, faker, num_samples): method test_texts (line 653) | def test_texts(self, faker, num_samples): method test_word (line 663) | def test_word(self, faker, num_samples): method test_words (line 668) | def test_words(self, faker, num_samples): class TestUkUa (line 675) | class TestUkUa: method test_paragraph (line 680) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 688) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 697) | def test_sentence(self, faker, num_samples): method test_sentences (line 705) | def test_sentences(self, faker, num_samples): method test_text (line 714) | def test_text(self, faker, num_samples): method test_texts (line 722) | def test_texts(self, faker, num_samples): method test_word (line 732) | def test_word(self, faker, num_samples): method test_words (line 737) | def test_words(self, faker, num_samples): class TestViVn (line 744) | class TestViVn: method test_paragraph (line 749) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 757) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 766) | def test_sentence(self, faker, num_samples): method test_sentences (line 774) | def test_sentences(self, faker, num_samples): method test_text (line 783) | def test_text(self, faker, num_samples): method test_texts (line 791) | def test_texts(self, faker, num_samples): method test_word (line 801) | def test_word(self, faker, num_samples): method test_words (line 806) | def test_words(self, faker, num_samples): class TestItIt (line 813) | class TestItIt: method test_paragraph (line 818) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 826) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 835) | def test_sentence(self, faker, num_samples): method test_sentences (line 843) | def test_sentences(self, faker, num_samples): method test_text (line 852) | def test_text(self, faker, num_samples): method test_texts (line 860) | def test_texts(self, faker, num_samples): method test_word (line 870) | def test_word(self, faker, num_samples): method test_words (line 875) | def test_words(self, faker, num_samples): class TestEsEs (line 882) | class TestEsEs: method test_paragraph (line 887) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 895) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 904) | def test_sentence(self, faker, num_samples): method test_sentences (line 912) | def test_sentences(self, faker, num_samples): method test_text (line 921) | def test_text(self, faker, num_samples): method test_texts (line 929) | def test_texts(self, faker, num_samples): method test_word (line 939) | def test_word(self, faker, num_samples): method test_words (line 944) | def test_words(self, faker, num_samples): class TestEsAr (line 951) | class TestEsAr: method test_paragraph (line 956) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 964) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 973) | def test_sentence(self, faker, num_samples): method test_sentences (line 981) | def test_sentences(self, faker, num_samples): method test_text (line 990) | def test_text(self, faker, num_samples): method test_texts (line 998) | def test_texts(self, faker, num_samples): method test_word (line 1008) | def test_word(self, faker, num_samples): method test_words (line 1013) | def test_words(self, faker, num_samples): class TestEsMx (line 1020) | class TestEsMx: method test_paragraph (line 1025) | def test_paragraph(self, faker, num_samples): method test_paragraphs (line 1033) | def test_paragraphs(self, faker, num_samples): method test_sentence (line 1042) | def test_sentence(self, faker, num_samples): method test_sentences (line 1050) | def test_sentences(self, faker, num_samples): method test_text (line 1059) | def test_text(self, faker, num_samples): method test_texts (line 1067) | def test_texts(self, faker, num_samples): method test_word (line 1077) | def test_word(self, faker, num_samples): method test_words (line 1082) | def test_words(self, faker, num_samples): FILE: tests/providers/test_misc.py function _class_faker_with_foobar (line 33) | def _class_faker_with_foobar(): function faker_with_foobar (line 42) | def faker_with_foobar(request): class _FooBarProvider (line 51) | class _FooBarProvider: method foo_bar (line 52) | def foo_bar(self, param: str = None) -> str: method test_integer (line 55) | def test_integer(self, multi=1) -> int: method test_float (line 58) | def test_float(self, multi=1) -> float: method test_date_time (line 61) | def test_date_time(self) -> datetime.datetime: class TestMiscProvider (line 65) | class TestMiscProvider: method test_uuid4_str (line 70) | def test_uuid4_str(self, faker, num_samples): method test_uuid4_int (line 75) | def test_uuid4_int(self, faker, num_samples): method test_uuid4_uuid_object (line 79) | def test_uuid4_uuid_object(self, faker, num_samples): method test_uuid4_seedability (line 85) | def test_uuid4_seedability(self, faker, num_samples): method test_zip_invalid_file (line 94) | def test_zip_invalid_file(self, faker): method test_zip_one_byte_undersized (line 113) | def test_zip_one_byte_undersized(self, faker, num_samples): method test_zip_exact_minimum_size (line 127) | def test_zip_exact_minimum_size(self, faker, num_samples): method test_zip_over_minimum_size (line 156) | def test_zip_over_minimum_size(self, faker, num_samples): method test_zip_compression_py3 (line 191) | def test_zip_compression_py3(self, faker): method test_tar_invalid_file (line 221) | def test_tar_invalid_file(self, faker): method test_tar_one_byte_undersized (line 240) | def test_tar_one_byte_undersized(self, faker, num_samples): method test_tar_exact_minimum_size (line 254) | def test_tar_exact_minimum_size(self, faker, num_samples): method test_tar_over_minimum_size (line 280) | def test_tar_over_minimum_size(self, faker, num_samples): method test_tar_compression_py3 (line 312) | def test_tar_compression_py3(self, faker): method test_image (line 340) | def test_image(self, faker): method test_image_no_pillow (line 348) | def test_image_no_pillow(self, faker): method test_dsv_with_invalid_values (line 355) | def test_dsv_with_invalid_values(self, faker): method test_dsv_no_header (line 371) | def test_dsv_no_header(self, faker, num_samples): method test_dsv_with_valid_header (line 385) | def test_dsv_with_valid_header(self, faker, num_samples): method test_dsv_with_row_ids (line 400) | def test_dsv_with_row_ids(self, faker, num_samples): method test_dsv_data_columns (line 423) | def test_dsv_data_columns(self, faker): method test_dsv_csvwriter_kwargs (line 440) | def test_dsv_csvwriter_kwargs(self, faker): method test_xml (line 465) | def test_xml(self, faker): method test_xml_no_xmltodict (line 471) | def test_xml_no_xmltodict(self, faker): method test_csv_helper_method (line 478) | def test_csv_helper_method(self, faker): method test_tsv_helper_method (line 491) | def test_tsv_helper_method(self, faker): method test_psv_helper_method (line 504) | def test_psv_helper_method(self, faker): method test_json_with_arguments (line 517) | def test_json_with_arguments(self, faker_with_foobar): method test_json_multiple_rows (line 530) | def test_json_multiple_rows(self, faker_with_foobar): method test_json_passthrough_values (line 539) | def test_json_passthrough_values(self, faker_with_foobar): method test_json_type_integrity_int (line 556) | def test_json_type_integrity_int(self, faker_with_foobar): method test_json_type_integrity_float (line 568) | def test_json_type_integrity_float(self, faker_with_foobar): method test_json_invalid_data_columns (line 580) | def test_json_invalid_data_columns(self, faker_with_foobar): method test_json_list_format_invalid_arguments_type (line 589) | def test_json_list_format_invalid_arguments_type(self, faker_with_foob... method test_json_list_format_nested_list_of_values (line 598) | def test_json_list_format_nested_list_of_values(self, faker_with_foobar): method test_json_list_format_nested_list_of_objects (line 616) | def test_json_list_format_nested_list_of_objects(self, faker_with_foob... method test_json_list_format_nested_objects (line 634) | def test_json_list_format_nested_objects(self, faker_with_foobar): method test_json_dict_format_nested_list_of_values (line 652) | def test_json_dict_format_nested_list_of_values(self, faker_with_foobar): method test_json_dict_format_nested_list_of_objects (line 667) | def test_json_dict_format_nested_list_of_objects(self, faker_with_foob... method test_json_dict_format_nested_objects (line 682) | def test_json_dict_format_nested_objects(self, faker_with_foobar): method test_json_type_integrity_datetime_using_encoder (line 697) | def test_json_type_integrity_datetime_using_encoder(self, faker_with_f... method test_json_type_integrity_datetime_no_encoder (line 715) | def test_json_type_integrity_datetime_no_encoder(self, faker_with_foob... method test_json_bytes (line 720) | def test_json_bytes(self, faker_with_foobar): method test_fixed_width_with_arguments (line 727) | def test_fixed_width_with_arguments(self, faker_with_foobar): method test_fixed_width_invalid_arguments_type (line 742) | def test_fixed_width_invalid_arguments_type(self, faker_with_foobar): method test_md5 (line 751) | def test_md5(self, faker): method test_sha1 (line 755) | def test_sha1(self, faker): method test_sha256 (line 759) | def test_sha256(self, faker): FILE: tests/providers/test_passport.py class TestPassport (line 10) | class TestPassport: method test_passport_number (line 13) | def test_passport_number(self, faker, num_samples): class TestDeAt (line 19) | class TestDeAt: method test_passport_number (line 22) | def test_passport_number(self, faker, num_samples): class TestItIT (line 31) | class TestItIT: method test_passport_number (line 34) | def test_passport_number(self, faker, num_samples): FILE: tests/providers/test_person.py class TestAr (line 61) | class TestAr(unittest.TestCase): method setUp (line 64) | def setUp(self): method test_first_name (line 68) | def test_first_name(self): method test_last_name (line 89) | def test_last_name(self): class TestArDZ (line 117) | class TestArDZ(unittest.TestCase): method setUp (line 119) | def setUp(self): method test_general_first_name (line 124) | def test_general_first_name(self): method test_female_first_name (line 130) | def test_female_first_name(self): method test_male_first_name (line 137) | def test_male_first_name(self): method test_general_last_name (line 144) | def test_general_last_name(self): method test_female_last_name (line 150) | def test_female_last_name(self): method test_male_last_name (line 156) | def test_male_last_name(self): class TestAzAz (line 163) | class TestAzAz(unittest.TestCase): method setUp (line 166) | def setUp(self): method test_first_name (line 170) | def test_first_name(self): method test_last_name (line 191) | def test_last_name(self): class TestCsCZ (line 223) | class TestCsCZ(unittest.TestCase): method setUp (line 224) | def setUp(self): method test_name_male (line 228) | def test_name_male(self): method test_name_female (line 248) | def test_name_female(self): class TestDeAt (line 269) | class TestDeAt(unittest.TestCase): method setUp (line 272) | def setUp(self): method test_academic_prefix (line 276) | def test_academic_prefix(self): method test_academic_suffix (line 281) | def test_academic_suffix(self): method test_first_name (line 286) | def test_first_name(self): method test_first_name_female (line 291) | def test_first_name_female(self): method test_first_name_male (line 296) | def test_first_name_male(self): method test_first_name_nonbinary (line 301) | def test_first_name_nonbinary(self): method test_last_name (line 306) | def test_last_name(self): method test_prefix (line 311) | def test_prefix(self): method test_prefix_female (line 316) | def test_prefix_female(self): method test_prefix_male (line 321) | def test_prefix_male(self): method test_prefix_nonbinary (line 326) | def test_prefix_nonbinary(self): class TestDeLi (line 332) | class TestDeLi(unittest.TestCase): method setUp (line 335) | def setUp(self): method test_first_name (line 339) | def test_first_name(self): method test_first_name_female (line 344) | def test_first_name_female(self): method test_first_name_male (line 349) | def test_first_name_male(self): class TestEn (line 355) | class TestEn(unittest.TestCase): method setUp (line 358) | def setUp(self): method test_suffix (line 362) | def test_suffix(self): class TestEnGB (line 369) | class TestEnGB(unittest.TestCase): method setUp (line 370) | def setUp(self): method test_first_name_female (line 374) | def test_first_name_female(self): method test_first_name_male (line 378) | def test_first_name_male(self): method test_name_female (line 382) | def test_name_female(self): method test_name_male (line 387) | def test_name_male(self): method get_first_name_from_full_name (line 392) | def get_first_name_from_full_name(self, full_name): class TestEnNG (line 399) | class TestEnNG(unittest.TestCase): method setUp (line 402) | def setUp(self): method test_name (line 406) | def test_name(self): method test_first_name (line 416) | def test_first_name(self): method test_last_name (line 431) | def test_last_name(self): class TestEnIE (line 447) | class TestEnIE(unittest.TestCase): method setUp (line 450) | def setUp(self): method test_first_name (line 455) | def test_first_name(self): method test_last_name (line 476) | def test_last_name(self): class TestEnIN (line 502) | class TestEnIN(unittest.TestCase): method setUp (line 505) | def setUp(self): method test_first_name (line 509) | def test_first_name(self): method test_last_name (line 521) | def test_last_name(self): class TestEnPk (line 526) | class TestEnPk(unittest.TestCase): method setUp (line 527) | def setUp(self): method test_first_name (line 531) | def test_first_name(self): method test_last_name (line 536) | def test_last_name(self): method test_full_name (line 542) | def test_full_name(self): method test_name_format (line 549) | def test_name_format(self): class TestEnUS (line 570) | class TestEnUS(unittest.TestCase): method setUp (line 573) | def setUp(self): method test_first_names (line 577) | def test_first_names(self): method test_last_names (line 601) | def test_last_names(self): method test_prefix (line 622) | def test_prefix(self): method test_suffix (line 628) | def test_suffix(self): class TestEs (line 635) | class TestEs(unittest.TestCase): method setUp (line 638) | def setUp(self): method test_language_name (line 642) | def test_language_name(self): class TestEsCO (line 647) | class TestEsCO(unittest.TestCase): method setUp (line 650) | def setUp(self): method test_first_names (line 654) | def test_first_names(self): method test_last_names (line 672) | def test_last_names(self): method test_prefix (line 688) | def test_prefix(self): class TestEsMX (line 700) | class TestEsMX(unittest.TestCase): method setUp (line 703) | def setUp(self): method test_first_names (line 707) | def test_first_names(self): method test_last_names (line 725) | def test_last_names(self): method test_prefixes (line 741) | def test_prefixes(self): class TestEtEE (line 753) | class TestEtEE(unittest.TestCase): method setUp (line 754) | def setUp(self): method test_first_name (line 759) | def test_first_name(self): method test_last_name (line 826) | def test_last_name(self): class TestFiFI (line 848) | class TestFiFI(unittest.TestCase): method setUp (line 849) | def setUp(self): method test_gender_first_names (line 853) | def test_gender_first_names(self): method test_last_names (line 864) | def test_last_names(self): class TestFrBE (line 870) | class TestFrBE(unittest.TestCase): method setUp (line 873) | def setUp(self): method test_first_name (line 878) | def test_first_name(self): method test_last_name (line 899) | def test_last_name(self): class TestFrDZ (line 925) | class TestFrDZ(unittest.TestCase): method setUp (line 927) | def setUp(self): method test_general_first_name (line 932) | def test_general_first_name(self): method test_female_first_name (line 938) | def test_female_first_name(self): method test_male_first_name (line 945) | def test_male_first_name(self): method test_general_last_name (line 952) | def test_general_last_name(self): method test_female_last_name (line 958) | def test_female_last_name(self): method test_male_last_name (line 964) | def test_male_last_name(self): class TestGaIE (line 971) | class TestGaIE(TestEnIE): method setUp (line 974) | def setUp(self): class TestGuIN (line 980) | class TestGuIN(unittest.TestCase): method setUp (line 983) | def setUp(self): method test_first_name (line 989) | def test_first_name(self): method test_first_name_male (line 994) | def test_first_name_male(self): method test_first_name_female (line 999) | def test_first_name_female(self): method test_last_name (line 1004) | def test_last_name(self): method test_name (line 1009) | def test_name(self): method test_prefix (line 1013) | def test_prefix(self): method test_prefix_female (line 1018) | def test_prefix_female(self): method test_prefix_male (line 1023) | def test_prefix_male(self): class TestHaNG (line 1029) | class TestHaNG(unittest.TestCase): method setUp (line 1032) | def setUp(self): method test_name (line 1036) | def test_name(self): method test_first_name (line 1046) | def test_first_name(self): method test_last_name (line 1061) | def test_last_name(self): class TestHeIL (line 1077) | class TestHeIL(unittest.TestCase): method setUp (line 1080) | def setUp(self): method test_language_name (line 1084) | def test_language_name(self): method test_male_first_name (line 1088) | def test_male_first_name(self): method test_female_first_name (line 1092) | def test_female_first_name(self): method test_last_name (line 1096) | def test_last_name(self): class TestHiIN (line 1101) | class TestHiIN(unittest.TestCase): method setUp (line 1104) | def setUp(self): method test_first_name (line 1108) | def test_first_name(self): method test_last_name (line 1120) | def test_last_name(self): method test_name (line 1124) | def test_name(self): class TestHyAM (line 1149) | class TestHyAM(unittest.TestCase): method setUp (line 1152) | def setUp(self): method test_name (line 1156) | def test_name(self): method test_first_name (line 1169) | def test_first_name(self): method test_last_name (line 1187) | def test_last_name(self): class TestIgNG (line 1210) | class TestIgNG(unittest.TestCase): method setUp (line 1213) | def setUp(self): method test_name (line 1217) | def test_name(self): method test_first_name (line 1227) | def test_first_name(self): method test_last_name (line 1242) | def test_last_name(self): class TestIsIS (line 1258) | class TestIsIS(unittest.TestCase): method setUp (line 1261) | def setUp(self): method test_first_name (line 1265) | def test_first_name(self): method test_first_name_male (line 1270) | def test_first_name_male(self): method test_first_name_female (line 1275) | def test_first_name_female(self): method test_last_name (line 1280) | def test_last_name(self): method test_last_name_male (line 1288) | def test_last_name_male(self): method test_last_name_female (line 1295) | def test_last_name_female(self): method test_middle_name (line 1302) | def test_middle_name(self): class TestJaJP (line 1308) | class TestJaJP(unittest.TestCase): method setUp (line 1311) | def setUp(self): method test_person (line 1315) | def test_person(self): class TestLvLV (line 1389) | class TestLvLV(unittest.TestCase): method setUp (line 1390) | def setUp(self): method test_first_name (line 1394) | def test_first_name(self): method test_last_name (line 1415) | def test_last_name(self): class TestNeNP (line 1447) | class TestNeNP(unittest.TestCase): method setUp (line 1448) | def setUp(self): method test_names (line 1452) | def test_names(self): class TestNlBE (line 1464) | class TestNlBE(unittest.TestCase): method setUp (line 1467) | def setUp(self): method test_first_name (line 1472) | def test_first_name(self): method test_last_name (line 1493) | def test_last_name(self): class TestOrIN (line 1519) | class TestOrIN(unittest.TestCase): method setUp (line 1520) | def setUp(self): method test_first_names (line 1524) | def test_first_names(self): method test_middle_names (line 1538) | def test_middle_names(self): method test_last_names (line 1543) | def test_last_names(self): class TestPlPL (line 1549) | class TestPlPL(unittest.TestCase): method setUp (line 1550) | def setUp(self): method test_identity_card_number_checksum (line 1554) | def test_identity_card_number_checksum(self): method test_identity_card_number (line 1561) | def test_identity_card_number(self): method test_pesel_birth_date (line 1566) | def test_pesel_birth_date(self, mock_random_digit): method test_pesel_sex_male (line 1596) | def test_pesel_sex_male(self, mock_random_digit): method test_pesel_sex_female (line 1602) | def test_pesel_sex_female(self, mock_random_digit): method test_pesel_value_error (line 1607) | def test_pesel_value_error(self): method test_pwz_doctor (line 1612) | def test_pwz_doctor(self, mock_random_digit): method test_pwz_doctor_check_digit_zero (line 1618) | def test_pwz_doctor_check_digit_zero(self, mock_random_digit): method test_pwz_nurse (line 1625) | def test_pwz_nurse(self, mock_random_digit, mock_random_int): method validate_nip (line 1632) | def validate_nip(nip_str): method test_nip (line 1645) | def test_nip(self): class TestPtPt (line 1650) | class TestPtPt(unittest.TestCase): method setUp (line 1653) | def setUp(self): method test_male_first_name (line 1657) | def test_male_first_name(self): method test_female_first_name (line 1661) | def test_female_first_name(self): method test_last_name (line 1665) | def test_last_name(self): class TestRuRU (line 1670) | class TestRuRU(unittest.TestCase): method setUp (line 1673) | def setUp(self): method test_translit (line 1677) | def test_translit(self): method test_name_female (line 1696) | def test_name_female(self): method test_name_male (line 1704) | def test_name_male(self): method test_language_name (line 1712) | def test_language_name(self): class TestSvSE (line 1717) | class TestSvSE(unittest.TestCase): method setUp (line 1718) | def setUp(self): method test_gender_first_names (line 1722) | def test_gender_first_names(self): class TestSkSK (line 1732) | class TestSkSK(unittest.TestCase): method setUp (line 1733) | def setUp(self): method test_name_male (line 1737) | def test_name_male(self): method test_name_female (line 1757) | def test_name_female(self): class TestSw (line 1778) | class TestSw(unittest.TestCase): method setUp (line 1779) | def setUp(self): method test_last_name (line 1783) | def test_last_name(self): method test_first_name (line 1809) | def test_first_name(self): method test_full_name (line 1830) | def test_full_name(self): class TestTaIN (line 1857) | class TestTaIN(unittest.TestCase): method setUp (line 1858) | def setUp(self): method test_gender_first_names (line 1862) | def test_gender_first_names(self): class TestThTh (line 1872) | class TestThTh(unittest.TestCase): method setUp (line 1875) | def setUp(self): method test_first_name (line 1879) | def test_first_name(self): method test_last_name (line 1886) | def test_last_name(self): method test_name (line 1899) | def test_name(self): class TestUkUa (line 1906) | class TestUkUa(unittest.TestCase): method setUp (line 1907) | def setUp(self): method test_male_first_names (line 1913) | def test_male_first_names(self): method test_female_first_names (line 1918) | def test_female_first_names(self): method test_male_last_names (line 1923) | def test_male_last_names(self): method test_female_last_names (line 1928) | def test_female_last_names(self): method test_middle_names (line 1933) | def test_middle_names(self): method test_male_middle_names (line 1938) | def test_male_middle_names(self): method test_female_middle_names (line 1943) | def test_female_middle_names(self): method test_language_name (line 1948) | def test_language_name(self): method test_transliteration (line 1953) | def test_transliteration(self): method test_full_name_male (line 1964) | def test_full_name_male(self): method test_full_name_female (line 1972) | def test_full_name_female(self): method test_full_name (line 1980) | def test_full_name(self): method test_short_full_name (line 1988) | def test_short_full_name(self): class TestViVn (line 1994) | class TestViVn(unittest.TestCase): method setUp (line 1997) | def setUp(self): method test_first_names (line 2001) | def test_first_names(self): method test_middle_names (line 2015) | def test_middle_names(self): method test_last_names (line 2020) | def test_last_names(self): class TestYoNG (line 2026) | class TestYoNG(unittest.TestCase): method setUp (line 2027) | def setUp(self): method test_last_name (line 2031) | def test_last_name(self): method test_first_name (line 2057) | def test_first_name(self): method test_full_name (line 2078) | def test_full_name(self): class TestZhCN (line 2105) | class TestZhCN(unittest.TestCase): method setUp (line 2106) | def setUp(self): method test_last_name (line 2110) | def test_last_name(self): method test_first_name (line 2143) | def test_first_name(self): method test_name (line 2170) | def test_name(self): class TestZhTW (line 2187) | class TestZhTW(unittest.TestCase): method setUp (line 2188) | def setUp(self): method test_last_name (line 2192) | def test_last_name(self): method test_first_name (line 2225) | def test_first_name(self): method test_name (line 2252) | def test_name(self): method test_person (line 2269) | def test_person(self): class TestZuZa (line 2295) | class TestZuZa(unittest.TestCase): method setUp (line 2296) | def setUp(self): method test_last_name (line 2300) | def test_last_name(self): method test_first_name (line 2326) | def test_first_name(self): method test_full_name (line 2347) | def test_full_name(self): class TestUzUz (line 2374) | class TestUzUz(unittest.TestCase): method setUp (line 2375) | def setUp(self): method test_male_first_names (line 2380) | def test_male_first_names(self): method test_female_first_names (line 2385) | def test_female_first_names(self): method test_male_last_names (line 2390) | def test_male_last_names(self): method test_female_last_names (line 2395) | def test_female_last_names(self): class TestEnKE (line 2401) | class TestEnKE(unittest.TestCase): method setUp (line 2404) | def setUp(self): method test_first_name (line 2409) | def test_first_name(self): method test_first_name_female (line 2415) | def test_first_name_female(self): method test_first_name_male (line 2422) | def test_first_name_male(self): method test_last_name (line 2429) | def test_last_name(self): method test_prefixes (line 2435) | def test_prefixes(self): method test_name_formats (line 2444) | def test_name_formats(self): FILE: tests/providers/test_phone_number.py class TestPhoneNumber (line 11) | class TestPhoneNumber: method test_country_calling_code (line 14) | def test_country_calling_code(self, faker, num_samples): method test_msisdn (line 19) | def test_msisdn(self, faker, num_samples): class TestArAe (line 27) | class TestArAe: method test_cellphone_number (line 35) | def test_cellphone_number(self, faker, num_samples): method test_telephone_number (line 41) | def test_telephone_number(self, faker, num_samples): method test_toll_number (line 47) | def test_toll_number(self, faker, num_samples): method test_service_phone_number (line 53) | def test_service_phone_number(self, faker, num_samples): method test_phone_number (line 59) | def test_phone_number(self, faker, num_samples): class TestAzAz (line 71) | class TestAzAz: method setup_class (line 75) | def setup_class(cls): method test_phone_number (line 83) | def test_phone_number(self, faker, num_samples): method test_cellphone_number (line 89) | def test_cellphone_number(self, faker, num_samples): method test_landline_number (line 95) | def test_landline_number(self, faker, num_samples): class TestFrCh (line 102) | class TestFrCh: method test_phone_number (line 103) | def test_phone_number(self, faker, num_samples): class TestItCh (line 112) | class TestItCh: method test_phone_number (line 113) | def test_phone_number(self, faker, num_samples): class TestCsCz (line 122) | class TestCsCz: method test_phone_number (line 125) | def test_phone_number(self, faker, num_samples): class TestDeAt (line 132) | class TestDeAt: method test_phone_number (line 138) | def test_phone_number(self, faker, num_samples): method test_cellphone_number (line 143) | def test_cellphone_number(self, faker, num_samples): class TestDeCh (line 153) | class TestDeCh: method test_phone_number (line 158) | def test_phone_number(self, faker, num_samples): method test_cellphone_number (line 164) | def test_cellphone_number(self, faker, num_samples): class TestEnPh (line 171) | class TestEnPh: method setup_class (line 175) | def setup_class(cls): method test_globe_mobile_number (line 189) | def test_globe_mobile_number(self, faker, num_samples): method test_smart_mobile_number (line 195) | def test_smart_mobile_number(self, faker, num_samples): method test_sun_mobile_number (line 201) | def test_sun_mobile_number(self, faker, num_samples): method test_mobile_number (line 207) | def test_mobile_number(self, faker, num_samples): method test_globe_area2_landline_number (line 213) | def test_globe_area2_landline_number(self, faker, num_samples): method test_pldt_area2_landline_number (line 219) | def test_pldt_area2_landline_number(self, faker, num_samples): method test_bayantel_area2_landline_number (line 225) | def test_bayantel_area2_landline_number(self, faker, num_samples): method test_misc_area2_landline_number (line 231) | def test_misc_area2_landline_number(self, faker, num_samples): method test_area2_landline_number (line 237) | def test_area2_landline_number(self, faker, num_samples): method test_non_area2_landline_number (line 250) | def test_non_area2_landline_number(self, faker, num_samples): method test_landline_number (line 256) | def test_landline_number(self, faker, num_samples): class TestEnUs (line 275) | class TestEnUs: method test_basic_phone_number (line 278) | def test_basic_phone_number(self, faker, num_samples): class TestEsCo (line 296) | class TestEsCo: method test_phone_number (line 299) | def test_phone_number(self, faker, num_samples): class TestEsEs (line 313) | class TestEsEs: method test_phone_number (line 316) | def test_phone_number(self, faker, num_samples): class TestFilPh (line 325) | class TestFilPh(TestEnPh): class TestFrDz (line 331) | class TestFrDz: method test_phone_number (line 332) | def test_phone_number(self, faker, num_samples): class TestFrFr (line 340) | class TestFrFr: method test_phone_number (line 341) | def test_phone_number(self, faker, num_samples): class TestHuHu (line 372) | class TestHuHu: method test_phone_number (line 375) | def test_phone_number(self, faker, num_samples): class TestHyAm (line 385) | class TestHyAm: method test_phone_number (line 388) | def test_phone_number(self, faker, num_samples): class TestJaJp (line 398) | class TestJaJp: method test_phone_number (line 401) | def test_phone_number(self, faker, num_samples): class TestKaGe (line 408) | class TestKaGe: method test_phone_number (line 425) | def test_phone_number(self, faker, num_samples): class TestPtBr (line 432) | class TestPtBr: method test_phone_number (line 435) | def test_phone_number(self, faker, num_samples): method test_msisdn (line 443) | def test_msisdn(self, faker, num_samples): method test_cellphone (line 449) | def test_cellphone(self, faker, num_samples): method test_service_phone (line 457) | def test_service_phone(self, faker, num_samples): class TestSkSk (line 464) | class TestSkSk: method test_phone_number (line 467) | def test_phone_number(self, faker, num_samples): class TestTaIn (line 479) | class TestTaIn: method test_phone_number (line 482) | def test_phone_number(self, faker, num_samples): class TestThTh (line 491) | class TestThTh: method test_phone_number (line 494) | def test_phone_number(self, faker, num_samples): class TestTlPh (line 510) | class TestTlPh(TestEnPh): class TestViVn (line 516) | class TestViVn: method test_phone_number (line 519) | def test_phone_number(self, faker, num_samples): class TestUzUz (line 537) | class TestUzUz: method test_phone_number (line 540) | def test_phone_number(self, faker, num_samples): FILE: tests/providers/test_profile.py class TestProfileProvider (line 6) | class TestProfileProvider(unittest.TestCase): method setUp (line 11) | def setUp(self): method test_simple_profile (line 15) | def test_simple_profile(self): method test_profile (line 27) | def test_profile(self): FILE: tests/providers/test_python.py function test_pyobject (line 16) | def test_pyobject( function test_pyobject_with_unknown_object_type (line 39) | def test_pyobject_with_unknown_object_type(object_type): function test_pyfloat_right_and_left_digits_positive (line 54) | def test_pyfloat_right_and_left_digits_positive(mock_random_number_sourc... function test_pyfloat_right_or_left_digit_overflow (line 65) | def test_pyfloat_right_or_left_digit_overflow(): function test_float_min_and_max_value_does_not_crash (line 116) | def test_float_min_and_max_value_does_not_crash( class TestPyint (line 129) | class TestPyint(unittest.TestCase): method setUp (line 130) | def setUp(self): method test_pyint (line 134) | def test_pyint(self): method test_pyint_bounds (line 137) | def test_pyint_bounds(self): method test_pyint_step (line 140) | def test_pyint_step(self): method test_pyint_bound_0 (line 144) | def test_pyint_bound_0(self): method test_pyint_bound_positive (line 147) | def test_pyint_bound_positive(self): method test_pyint_bound_negative (line 150) | def test_pyint_bound_negative(self): method test_pyint_range (line 153) | def test_pyint_range(self): class TestPyfloat (line 157) | class TestPyfloat(unittest.TestCase): method setUp (line 158) | def setUp(self): method test_pyfloat (line 162) | def test_pyfloat(self): method test_left_digits (line 167) | def test_left_digits(self): method test_right_digits (line 175) | def test_right_digits(self): method test_positive (line 183) | def test_positive(self): method test_min_value (line 189) | def test_min_value(self): method test_min_value_and_left_digits (line 196) | def test_min_value_and_left_digits(self): method test_max_value (line 206) | def test_max_value(self): method test_max_value_zero_and_left_digits (line 213) | def test_max_value_zero_and_left_digits(self): method test_max_value_should_be_greater_than_min_value (line 223) | def test_max_value_should_be_greater_than_min_value(self): method test_max_value_and_positive (line 234) | def test_max_value_and_positive(self): method test_max_and_min_value_positive_with_decimals (line 244) | def test_max_and_min_value_positive_with_decimals(self): method test_max_and_min_value_negative (line 255) | def test_max_and_min_value_negative(self): method test_max_and_min_value_negative_with_decimals (line 266) | def test_max_and_min_value_negative_with_decimals(self): method test_positive_and_min_value_incompatible (line 277) | def test_positive_and_min_value_incompatible(self): method test_positive_doesnt_return_zero (line 290) | def test_positive_doesnt_return_zero(self): method test_float_min_and_max_value_does_not_warn (line 302) | def test_float_min_and_max_value_does_not_warn(self): method test_float_min_and_max_value_with_same_whole (line 309) | def test_float_min_and_max_value_with_same_whole(self): method test_pyfloat_positive_with_small_max_value (line 312) | def test_pyfloat_positive_with_small_max_value(self): class TestPyDict (line 322) | class TestPyDict(unittest.TestCase): method setUp (line 323) | def setUp(self): method test_pydict_with_default_nb_elements (line 327) | def test_pydict_with_default_nb_elements(self): method test_pydict_with_valid_number_of_nb_elements (line 332) | def test_pydict_with_valid_number_of_nb_elements(self): method test_pydict_with_invalid_number_of_nb_elements (line 337) | def test_pydict_with_invalid_number_of_nb_elements(self): class TestPydecimal (line 350) | class TestPydecimal(unittest.TestCase): method setUp (line 351) | def setUp(self): method test_pydecimal (line 355) | def test_pydecimal(self): method test_left_digits (line 360) | def test_left_digits(self): method test_left_digits_can_be_zero (line 368) | def test_left_digits_can_be_zero(self): method test_right_digits (line 376) | def test_right_digits(self): method test_positive (line 384) | def test_positive(self): method test_min_value (line 391) | def test_min_value(self): method test_min_value_always_returns_a_decimal (line 398) | def test_min_value_always_returns_a_decimal(self): method test_min_value_and_left_digits (line 405) | def test_min_value_and_left_digits(self): method test_max_value (line 415) | def test_max_value(self): method test_max_value_always_returns_a_decimal (line 422) | def test_max_value_always_returns_a_decimal(self): method test_max_value_zero_and_left_digits (line 429) | def test_max_value_zero_and_left_digits(self): method test_max_value_should_be_greater_than_min_value (line 439) | def test_max_value_should_be_greater_than_min_value(self): method test_max_value_and_positive (line 450) | def test_max_value_and_positive(self): method test_max_and_min_value_negative (line 460) | def test_max_and_min_value_negative(self): method test_positive_and_min_value_incompatible (line 471) | def test_positive_and_min_value_incompatible(self): method test_positive_doesnt_return_zero (line 484) | def test_positive_doesnt_return_zero(self): method test_min_value_zero_doesnt_return_negative (line 492) | def test_min_value_zero_doesnt_return_negative(self): method test_min_value_one_hundred_doesnt_return_negative (line 497) | def test_min_value_one_hundred_doesnt_return_negative(self): method test_min_value_minus_one_doesnt_return_positive (line 502) | def test_min_value_minus_one_doesnt_return_positive(self): method test_min_value_minus_one_hundred_doesnt_return_positive (line 507) | def test_min_value_minus_one_hundred_doesnt_return_positive(self): method test_min_value_10_pow_1000_return_greater_number (line 512) | def test_min_value_10_pow_1000_return_greater_number(self): method test_min_value_and_max_value_have_different_signs_return_evenly_distributed_values (line 517) | def test_min_value_and_max_value_have_different_signs_return_evenly_di... method test_min_value_and_max_value_negative_return_evenly_distributed_values (line 524) | def test_min_value_and_max_value_negative_return_evenly_distributed_va... method test_min_value_and_max_value_positive_return_evenly_distributed_values (line 532) | def test_min_value_and_max_value_positive_return_evenly_distributed_va... method test_min_value_float_returns_correct_digit_number (line 540) | def test_min_value_float_returns_correct_digit_number(self): method test_max_value_float_returns_correct_digit_number (line 545) | def test_max_value_float_returns_correct_digit_number(self): class TestPystr (line 551) | class TestPystr(unittest.TestCase): method setUp (line 552) | def setUp(self): method test_no_parameters (line 556) | def test_no_parameters(self): method test_lower_length_limit (line 561) | def test_lower_length_limit(self): method test_upper_length_limit (line 567) | def test_upper_length_limit(self): method test_invalid_length_limits (line 572) | def test_invalid_length_limits(self): method test_exact_length (line 576) | def test_exact_length(self): method test_prefix (line 581) | def test_prefix(self): method test_suffix (line 587) | def test_suffix(self): method test_prefix_and_suffix (line 593) | def test_prefix_and_suffix(self): class TestPystrFormat (line 601) | class TestPystrFormat(unittest.TestCase): method setUp (line 602) | def setUp(self): method test_formatter_invocation (line 606) | def test_formatter_invocation(self): class TestPython (line 616) | class TestPython(unittest.TestCase): method setUp (line 619) | def setUp(self): method test_pybool_return_type (line 622) | def test_pybool_return_type(self): method __test_pybool_truth_probability (line 626) | def __test_pybool_truth_probability( method test_pybool_truth_probability_zero (line 647) | def test_pybool_truth_probability_zero(self): method test_pybool_truth_probability_twenty_five (line 650) | def test_pybool_truth_probability_twenty_five(self): method test_pybool_truth_probability_fifty (line 653) | def test_pybool_truth_probability_fifty(self): method test_pybool_truth_probability_seventy_five (line 656) | def test_pybool_truth_probability_seventy_five(self): method test_pybool_truth_probability_hundred (line 659) | def test_pybool_truth_probability_hundred(self): method __test_pybool_invalid_truth_probability (line 662) | def __test_pybool_invalid_truth_probability(self, truth_probability: i... method test_pybool_truth_probability_less_than_zero (line 670) | def test_pybool_truth_probability_less_than_zero(self): method test_pybool_truth_probability_more_than_hundred (line 673) | def test_pybool_truth_probability_more_than_hundred(self): method test_pytuple (line 676) | def test_pytuple(self): method test_pytuple_size (line 683) | def test_pytuple_size(self): method test_pylist (line 691) | def test_pylist(self): method test_pylist_types (line 698) | def test_pylist_types(self): FILE: tests/providers/test_sbn.py class TestISBN9 (line 8) | class TestISBN9: method test_check_digit_is_correct (line 9) | def test_check_digit_is_correct(self): method test_format_length (line 17) | def test_format_length(self): class TestProvider (line 24) | class TestProvider: method test_reg_pub_separation (line 27) | def test_reg_pub_separation(self): method test_rule_not_found (line 59) | def test_rule_not_found(self): FILE: tests/providers/test_ssn.py class TestSvSE (line 42) | class TestSvSE(unittest.TestCase): method setUp (line 43) | def setUp(self): method partial_sum (line 47) | def partial_sum(self, number, mult_factor): method ssn_checksum (line 51) | def ssn_checksum(self, ssn): method validate_date_string (line 64) | def validate_date_string(self, date_str): method test_pers_id_short_with_dash (line 80) | def test_pers_id_short_with_dash(self): method test_pers_id_short_no_dash (line 88) | def test_pers_id_short_no_dash(self): method test_pers_id_long_with_dash (line 95) | def test_pers_id_long_with_dash(self): method test_pers_id_long_no_dash (line 102) | def test_pers_id_long_no_dash(self): method test_org_id_short_with_dash (line 109) | def test_org_id_short_with_dash(self): method test_org_id_short_no_dash (line 116) | def test_org_id_short_no_dash(self): method test_org_id_long_with_dash (line 123) | def test_org_id_long_with_dash(self): method test_org_id_long_no_dash (line 130) | def test_org_id_long_no_dash(self): method test_vat_id (line 137) | def test_vat_id(self): method test_org_and_vat_id (line 144) | def test_org_and_vat_id(self): class TestBgBG (line 151) | class TestBgBG(unittest.TestCase): method setUp (line 152) | def setUp(self): method test_vat_id (line 156) | def test_vat_id(self): class TestCsCZ (line 161) | class TestCsCZ(unittest.TestCase): method setUp (line 162) | def setUp(self): method test_vat_id (line 166) | def test_vat_id(self): method test_birth_number (line 170) | def test_birth_number(self): class TestSkSK (line 178) | class TestSkSK(unittest.TestCase): method setUp (line 179) | def setUp(self): method test_vat_id (line 183) | def test_vat_id(self): method test_birth_number (line 187) | def test_birth_number(self): class TestDeAT (line 195) | class TestDeAT(unittest.TestCase): method setUp (line 196) | def setUp(self): method test_vat_id (line 200) | def test_vat_id(self): method test_ssn (line 204) | def test_ssn(self): method test_ssn_checkdigit (line 210) | def test_ssn_checkdigit(self): class TestDeDe (line 221) | class TestDeDe(unittest.TestCase): method setUp (line 222) | def setUp(self): method test_vat_id (line 228) | def test_vat_id(self): method test_rvnr (line 232) | def test_rvnr(self): method test_rvnr_birthdate (line 237) | def test_rvnr_birthdate(self): method test_kvnr (line 244) | def test_kvnr(self): class TestElCY (line 250) | class TestElCY(unittest.TestCase): method setUp (line 251) | def setUp(self): method test_vat_id (line 255) | def test_vat_id(self): class TestElGr (line 260) | class TestElGr(unittest.TestCase): method setUp (line 261) | def setUp(self): method test_vat_id (line 265) | def test_vat_id(self): method test_tin (line 273) | def test_tin(self): method test_ssn (line 280) | def test_ssn(self): method test_police_id (line 287) | def test_police_id(self): class TestEnCA (line 292) | class TestEnCA(unittest.TestCase): method setUp (line 293) | def setUp(self): method test_ssn (line 297) | def test_ssn(self): class TestEnUS (line 309) | class TestEnUS(unittest.TestCase): method setUp (line 310) | def setUp(self): method test_ssn (line 314) | def test_ssn(self): method test_invalid_ssn (line 349) | def test_invalid_ssn(self): method test_prohibited_ssn_value (line 441) | def test_prohibited_ssn_value(self): method test_itin (line 451) | def test_itin(self): method test_ein (line 477) | def test_ein(self): method test_bad_tin_type (line 588) | def test_bad_tin_type(self): method test_wrong_tin_type_case (line 592) | def test_wrong_tin_type_case(self): class TestEsCO (line 597) | class TestEsCO(unittest.TestCase): method setUp (line 598) | def setUp(self): method test_nuip (line 606) | def test_nuip(self): method test_natural_person_nit_with_check_digit (line 611) | def test_natural_person_nit_with_check_digit(self): method test_legal_person_nit (line 618) | def test_legal_person_nit(self): method test_legal_person_nit_with_check_digit (line 622) | def test_legal_person_nit_with_check_digit(self): method test_nit_check_digit (line 629) | def test_nit_check_digit(self): class TestEsES (line 648) | class TestEsES(unittest.TestCase): method setUp (line 649) | def setUp(self): method test_vat_id (line 653) | def test_vat_id(self): method test_nie (line 657) | def test_nie(self): method test_nif (line 661) | def test_nif(self): method test_cif (line 665) | def test_cif(self): method test_nuss (line 669) | def test_nuss(self): class TestEsCA (line 680) | class TestEsCA(TestEsES): method setUp (line 681) | def setUp(self): class TestEsMX (line 686) | class TestEsMX: method setup_method (line 687) | def setup_method(self): method test_ssn (line 691) | def test_ssn(self): method test_curp (line 699) | def test_curp(self): method test_rfc_natural (line 707) | def test_rfc_natural(self): method test_rfc_legal (line 714) | def test_rfc_legal(self): method test_elector_code (line 730) | def test_elector_code(self, gender, pattern): method test_elector_code_unsupported_gender (line 737) | def test_elector_code_unsupported_gender(self): class TestEsCL (line 742) | class TestEsCL(unittest.TestCase): method setUp (line 743) | def setUp(self): method test_rut (line 747) | def test_rut(self): method _extract_digits (line 756) | def _extract_digits(rut) -> Tuple[int, str]: class TestEtEE (line 765) | class TestEtEE(unittest.TestCase): method setUp (line 768) | def setUp(self): method test_ssn_checksum (line 773) | def test_ssn_checksum(self): method test_ssn (line 780) | def test_ssn(self): method test_ssn_2000 (line 793) | def test_ssn_2000(self): method test_ssn_2100 (line 800) | def test_ssn_2100(self): method test_vat_id (line 806) | def test_vat_id(self): class TestFiFI (line 811) | class TestFiFI(unittest.TestCase): method setUp (line 814) | def setUp(self): method test_century_code (line 819) | def test_century_code(self): method test_ssn_sanity (line 831) | def test_ssn_sanity(self): method test_valid_ssn (line 835) | def test_valid_ssn(self): method test_artifical_ssn (line 840) | def test_artifical_ssn(self): method test_vat_id (line 845) | def test_vat_id(self): method test_ssn_without_age_range (line 850) | def test_ssn_without_age_range(self): class TestFrFR (line 863) | class TestFrFR(unittest.TestCase): method setUp (line 864) | def setUp(self): method test_vat_id (line 868) | def test_vat_id(self): method test_ssn (line 872) | def test_ssn(self) -> None: method test_checksum (line 876) | def test_checksum(self) -> None: class TestFrCH (line 880) | class TestFrCH: method test_checksum (line 894) | def test_checksum(self, digits, expected): class TestEnGB (line 909) | class TestEnGB(unittest.TestCase): method setUp (line 910) | def setUp(self): method test_vat_id (line 914) | def test_vat_id(self): class TestHrHR (line 922) | class TestHrHR(unittest.TestCase): method setUp (line 925) | def setUp(self): method test_ssn_checksum (line 929) | def test_ssn_checksum(self): method test_ssn (line 937) | def test_ssn(self): method test_vat_id (line 941) | def test_vat_id(self): class TestHuHU (line 946) | class TestHuHU(unittest.TestCase): method setUp (line 947) | def setUp(self): method test_ssn (line 951) | def test_ssn(self): method test_vat_id (line 974) | def test_vat_id(self): class TestItIT (line 979) | class TestItIT(unittest.TestCase): method setUp (line 980) | def setUp(self): method test_cie (line 984) | def test_cie(self): method test_vat_id (line 991) | def test_vat_id(self): method test_ssn (line 995) | def test_ssn(self): method test_checksum (line 999) | def test_checksum(self) -> None: method test_ssn_with_latin_chars (line 1002) | def test_ssn_with_latin_chars(self): class TestPtBR (line 1010) | class TestPtBR(unittest.TestCase): method setUp (line 1011) | def setUp(self): method test_pt_BR_ssn_checksum (line 1015) | def test_pt_BR_ssn_checksum(self): method test_pt_BR_ssn (line 1019) | def test_pt_BR_ssn(self): method test_pt_BR_cpf (line 1023) | def test_pt_BR_cpf(self): method test_pt_BR_rg (line 1027) | def test_pt_BR_rg(self): class TestNlBE (line 1036) | class TestNlBE(unittest.TestCase): method setUp (line 1037) | def setUp(self): method test_ssn (line 1041) | def test_ssn(self): class TestNlNL (line 1063) | class TestNlNL(unittest.TestCase): method setUp (line 1064) | def setUp(self): method test_vat_id (line 1068) | def test_vat_id(self): class TestNoNO (line 1073) | class TestNoNO(unittest.TestCase): method setUp (line 1074) | def setUp(self): method test_no_NO_ssn_checksum (line 1078) | def test_no_NO_ssn_checksum(self): method test_no_NO_ssn (line 1082) | def test_no_NO_ssn(self): method test_no_NO_ssn_dob_passed (line 1088) | def test_no_NO_ssn_dob_passed(self): method test_no_NO_ssn_invalid_dob_passed (line 1094) | def test_no_NO_ssn_invalid_dob_passed(self): method test_no_NO_ssn_gender_passed (line 1102) | def test_no_NO_ssn_gender_passed(self): method test_no_NO_ssn_invalid_gender_passed (line 1110) | def test_no_NO_ssn_invalid_gender_passed(self): class TestPlPL (line 1115) | class TestPlPL(unittest.TestCase): method setUp (line 1118) | def setUp(self): method test_ssn_checksum (line 1122) | def test_ssn_checksum(self): method test_calculate_month (line 1129) | def test_calculate_month(self): method test_ssn (line 1146) | def test_ssn(self): method test_vat_id (line 1150) | def test_vat_id(self): class TestEnPh (line 1155) | class TestEnPh(unittest.TestCase): method setUp (line 1158) | def setUp(self): method setup_faker (line 1166) | def setup_faker(self): method test_PH_sss (line 1170) | def test_PH_sss(self): method test_PH_gsis (line 1174) | def test_PH_gsis(self): method test_PH_philhealth (line 1178) | def test_PH_philhealth(self): method test_PH_pagibig (line 1182) | def test_PH_pagibig(self): method test_PH_umid (line 1186) | def test_PH_umid(self): class TestFilPh (line 1191) | class TestFilPh(TestEnPh): method setup_faker (line 1192) | def setup_faker(self): class TestThTH (line 1197) | class TestThTH(unittest.TestCase): method setUp (line 1198) | def setUp(self): method test_ssn (line 1202) | def test_ssn(self): method test_vat_id (line 1206) | def test_vat_id(self): class TestTlPh (line 1211) | class TestTlPh(TestEnPh): method setup_faker (line 1212) | def setup_faker(self): class TestTrTr (line 1217) | class TestTrTr(unittest.TestCase): method setUp (line 1220) | def setUp(self): method test_first_part_non_zero (line 1225) | def test_first_part_non_zero(self): method test_eleventh_digit_matches_sum_mod_10 (line 1229) | def test_eleventh_digit_matches_sum_mod_10(self): method test_tenth_digit_correct (line 1236) | def test_tenth_digit_correct(self): class TestEnIn (line 1246) | class TestEnIn(unittest.TestCase): method setUp (line 1247) | def setUp(self): method test_length (line 1253) | def test_length(self): method test_first_digit_non_zero (line 1257) | def test_first_digit_non_zero(self): method test_valid_luhn (line 1261) | def test_valid_luhn(self): class TestZhCN (line 1266) | class TestZhCN(unittest.TestCase): method setUp (line 1267) | def setUp(self): method test_zh_CN_ssn (line 1271) | def test_zh_CN_ssn(self): method test_zh_CN_ssn_invalid_gender_passed (line 1276) | def test_zh_CN_ssn_invalid_gender_passed(self): method test_zh_CN_ssn_gender_passed (line 1284) | def test_zh_CN_ssn_gender_passed(self): method test_zh_CN_ssn_invalid_area_code_passed (line 1292) | def test_zh_CN_ssn_invalid_area_code_passed(self): method test_zh_CN_ssn_area_code_passed (line 1308) | def test_zh_CN_ssn_area_code_passed(self): class TestRoRO (line 1320) | class TestRoRO(unittest.TestCase): method setUp (line 1323) | def setUp(self): method test_ssn_checksum (line 1327) | def test_ssn_checksum(self): method test_ssn (line 1339) | def test_ssn(self): method test_vat_checksum (line 1343) | def test_vat_checksum(self): method test_vat_id (line 1353) | def test_vat_id(self): class TestAzAz (line 1360) | class TestAzAz(unittest.TestCase): method setUp (line 1363) | def setUp(self): method check_length (line 1368) | def check_length(self): class TestLvLV (line 1373) | class TestLvLV(unittest.TestCase): method setUp (line 1376) | def setUp(self): method test_century_code (line 1382) | def test_century_code(self): method test_ssn_sanity (line 1394) | def test_ssn_sanity(self): method check_length (line 1398) | def check_length(self): method test_vat_id (line 1402) | def test_vat_id(self): class TestZhTW (line 1407) | class TestZhTW(unittest.TestCase): method setUp (line 1410) | def setUp(self): method test_length (line 1415) | def test_length(self): method test_gender (line 1419) | def test_gender(self): method test_checksum (line 1424) | def test_checksum(self): class TestUkUA (line 1429) | class TestUkUA(unittest.TestCase): method setUp (line 1430) | def setUp(self): method test_ssn_len (line 1435) | def test_ssn_len(self): method test_start_ssn (line 1438) | def test_start_ssn(self): method test_ssn_gender (line 1441) | def test_ssn_gender(self): method test_incorrect_birthday (line 1447) | def test_incorrect_birthday(self): method test_incorrect_gender (line 1451) | def test_incorrect_gender(self): FILE: tests/providers/test_user_agent.py class TestUserAgentProvider (line 12) | class TestUserAgentProvider: method test_android_platform_token (line 23) | def test_android_platform_token(self, faker, num_samples): method test_ios_platform_token (line 28) | def test_ios_platform_token(self, faker, num_samples): method test_mac_platform_token (line 34) | def test_mac_platform_token(self, faker, num_samples): method test_firefox_deterministic_output (line 39) | def test_firefox_deterministic_output(self, faker: Faker, num_samples:... FILE: tests/pytest/session_overrides/conftest.py function pytest_addoption (line 12) | def pytest_addoption(parser): function pytest_collection_modifyitems (line 21) | def pytest_collection_modifyitems(config, items): FILE: tests/pytest/session_overrides/session_locale/conftest.py function faker_session_locale (line 7) | def faker_session_locale(): FILE: tests/pytest/session_overrides/session_locale/test_autouse_faker_locale.py function faker_locale (line 21) | def faker_locale(): function faker_seed (line 26) | def faker_seed(): function test_no_injection (line 30) | def test_no_injection(_session_faker, faker): function test_inject_faker_seed (line 38) | def test_inject_faker_seed(_session_faker, faker, faker_seed): FILE: tests/pytest/session_overrides/session_locale/test_autouse_faker_seed.py function faker_locale (line 20) | def faker_locale(): function faker_seed (line 25) | def faker_seed(): function test_no_injection (line 29) | def test_no_injection(_session_faker, faker): function test_inject_faker_locale (line 37) | def test_inject_faker_locale(_session_faker, faker, faker_locale): FILE: tests/pytest/session_overrides/session_locale/test_manual_injection.py function faker_locale (line 18) | def faker_locale(): function faker_seed (line 23) | def faker_seed(): function test_no_injection (line 27) | def test_no_injection(_session_faker, faker): function test_inject_faker_locale (line 35) | def test_inject_faker_locale(_session_faker, faker, faker_locale): function test_inject_faker_seed (line 43) | def test_inject_faker_seed(_session_faker, faker, faker_seed): function test_inject_faker_seed_and_locale (line 51) | def test_inject_faker_seed_and_locale(_session_faker, faker, faker_local... FILE: tests/pytest/test_autouse_faker_locale.py function faker_locale (line 21) | def faker_locale(): function faker_seed (line 26) | def faker_seed(): function test_no_injection (line 30) | def test_no_injection(_session_faker, faker): function test_inject_faker_seed (line 38) | def test_inject_faker_seed(_session_faker, faker, faker_seed): FILE: tests/pytest/test_autouse_faker_seed.py function faker_locale (line 21) | def faker_locale(): function faker_seed (line 26) | def faker_seed(): function test_no_injection (line 30) | def test_no_injection(_session_faker, faker): function test_inject_faker_locale (line 38) | def test_inject_faker_locale(_session_faker, faker, faker_locale): FILE: tests/pytest/test_manual_injection.py function faker_locale (line 17) | def faker_locale(): function faker_seed (line 22) | def faker_seed(): function test_no_injection (line 26) | def test_no_injection(_session_faker, faker): function test_inject_faker_locale (line 34) | def test_inject_faker_locale(_session_faker, faker, faker_locale): function test_inject_faker_seed (line 42) | def test_inject_faker_seed(_session_faker, faker, faker_seed): function test_inject_faker_seed_and_locale (line 50) | def test_inject_faker_seed_and_locale(_session_faker, faker, faker_local... FILE: tests/pytest/test_unique_clear.py function test_unique_clears (line 1) | def test_unique_clears(testdir): FILE: tests/sphinx/test_docstring.py class TestProviderMethodDocstring (line 10) | class TestProviderMethodDocstring: method test_what_is_not_method (line 11) | def test_what_is_not_method(self): method test_name_is_not_dotted_path_to_provider_method (line 22) | def test_name_is_not_dotted_path_to_provider_method(self): method test_name_is_dotted_path_to_base_provider_method (line 33) | def test_name_is_dotted_path_to_base_provider_method(self): method test_name_is_dotted_path_to_standard_provider_method (line 46) | def test_name_is_dotted_path_to_standard_provider_method(self): method test_name_is_dotted_path_to_localized_provider_method (line 59) | def test_name_is_dotted_path_to_localized_provider_method(self): method test_log_warning (line 73) | def test_log_warning(self, mock_logger_warning): method test_stringify_results (line 104) | def test_stringify_results(self, faker): method test_parsing_empty_lines (line 154) | def test_parsing_empty_lines(self, mock_log_warning): method test_parsing_single_line_non_sample (line 168) | def test_parsing_single_line_non_sample(self, mock_log_warning): method test_parsing_single_line_valid_sample (line 182) | def test_parsing_single_line_valid_sample(self, mock_log_warning): method test_parsing_multiple_lines (line 195) | def test_parsing_multiple_lines(self, mock_log_warning): method test_end_to_end_sample_generation (line 263) | def test_end_to_end_sample_generation(self, mock_warning, faker): FILE: tests/sphinx/test_validator.py class TestSampleCodeValidator (line 6) | class TestSampleCodeValidator: method test_ast_parser_called_in_eval_mode (line 8) | def test_ast_parser_called_in_eval_mode(self, mock_ast_parse): method test_invalid_syntax (line 14) | def test_invalid_syntax(self): method test_single_instance_of_variable_access (line 18) | def test_single_instance_of_variable_access(self): method test_ordereddict_variable_access_exception (line 31) | def test_ordereddict_variable_access_exception(self): method test_single_instance_of_attribute_access (line 50) | def test_single_instance_of_attribute_access(self): method test_single_instance_of_method_or_function_call (line 57) | def test_single_instance_of_method_or_function_call(self): method test_ordereddict_constructor_exception (line 64) | def test_ordereddict_constructor_exception(self): method test_allowed_literal_types (line 80) | def test_allowed_literal_types(self): method test_prohibited_literal_types (line 98) | def test_prohibited_literal_types(self): method test_prohibited_operations (line 106) | def test_prohibited_operations(self): method test_other_prohibited_expressions (line 147) | def test_other_prohibited_expressions(self): FILE: tests/test_cli_arg_parsing.py class TestCLIArgParsing (line 8) | class TestCLIArgParsing(unittest.TestCase): method test_cli_include_argument_parsing (line 9) | def test_cli_include_argument_parsing(self): method test_cli_multiple_includes (line 24) | def test_cli_multiple_includes(self): FILE: tests/test_decode.py function test_transliterate (line 19) | def test_transliterate(text, result): function test_7bit_purity (line 24) | def test_7bit_purity(code): function test_7bit_text_purity (line 29) | def test_7bit_text_purity(): function test_out_of_bounds (line 34) | def test_out_of_bounds(): FILE: tests/test_factory.py class FactoryTestCase (line 16) | class FactoryTestCase(unittest.TestCase): method setUp (line 17) | def setUp(self): method test_documentor (line 20) | def test_documentor(self): method test_command (line 29) | def test_command(self): method test_command_custom_provider (line 41) | def test_command_custom_provider(self): method test_cli_seed (line 53) | def test_cli_seed(self): method test_cli_seed_with_repeat (line 74) | def test_cli_seed_with_repeat(self): method test_cli_verbosity (line 95) | def test_cli_verbosity(self): method test_unknown_provider (line 113) | def test_unknown_provider(self): method test_unknown_locale (line 122) | def test_unknown_locale(self): method test_lang_unlocalized_provider (line 131) | def test_lang_unlocalized_provider(self): method test_lang_localized_provider (line 138) | def test_lang_localized_provider(self, with_default=True): method test_lang_localized_provider_without_default (line 182) | def test_lang_localized_provider_without_default(self): method test_slugify (line 185) | def test_slugify(self): method test_binary (line 225) | def test_binary(self): method test_password (line 245) | def test_password(self): method test_prefix_suffix_always_string (line 264) | def test_prefix_suffix_always_string(self): method test_random_pystr_characters (line 272) | def test_random_pystr_characters(self): method test_random_pyfloat (line 288) | def test_random_pyfloat(self): method test_pyfloat_in_range (line 300) | def test_pyfloat_in_range(self): method test_negative_pyfloat (line 320) | def test_negative_pyfloat(self): method test_arbitrary_digits_pydecimal (line 327) | def test_arbitrary_digits_pydecimal(self): method test_pyfloat_empty_range_error (line 335) | def test_pyfloat_empty_range_error(self): method test_pyfloat_same_min_max (line 341) | def test_pyfloat_same_min_max(self): method test_includes_does_not_mutate_default_providers (line 347) | def test_includes_does_not_mutate_default_providers(self): method test_instance_seed_chain (line 359) | def test_instance_seed_chain(self): FILE: tests/test_generator.py class BarProvider (line 8) | class BarProvider: method foo_formatter (line 9) | def foo_formatter(self): class FooProvider (line 13) | class FooProvider: method foo_formatter (line 14) | def foo_formatter(self): method foo_formatter_with_arguments (line 17) | def foo_formatter_with_arguments(self, param="", append=""): function generator (line 22) | def generator(): class TestGenerator (line 28) | class TestGenerator: method test_get_formatter_returns_correct_formatter (line 31) | def test_get_formatter_returns_correct_formatter(self, generator): method test_get_formatter_with_unknown_formatter (line 36) | def test_get_formatter_with_unknown_formatter(self, generator): method test_format_calls_formatter_on_provider (line 46) | def test_format_calls_formatter_on_provider(self, generator): method test_format_passes_arguments_to_formatter (line 49) | def test_format_passes_arguments_to_formatter(self, generator): method test_add_provider_overrides_old_provider (line 53) | def test_add_provider_overrides_old_provider(self, generator): method test_parse_without_formatter_tokens (line 58) | def test_parse_without_formatter_tokens(self, generator): method test_parse_with_valid_formatter_tokens (line 61) | def test_parse_with_valid_formatter_tokens(self, generator): method test_arguments_group_with_values (line 65) | def test_arguments_group_with_values(self, generator): method test_arguments_group_with_dictionaries (line 73) | def test_arguments_group_with_dictionaries(self, generator): method test_arguments_group_with_invalid_name (line 79) | def test_arguments_group_with_invalid_name(self, generator): method test_arguments_group_with_invalid_argument_type (line 83) | def test_arguments_group_with_invalid_argument_type(self, generator): method test_parse_with_valid_formatter_arguments (line 88) | def test_parse_with_valid_formatter_arguments(self, generator): method test_parse_with_unknown_arguments_group (line 94) | def test_parse_with_unknown_arguments_group(self, generator): method test_parse_with_unknown_formatter_token (line 99) | def test_parse_with_unknown_formatter_token(self, generator): method test_magic_call_calls_format (line 104) | def test_magic_call_calls_format(self, generator): method test_magic_call_calls_format_with_arguments (line 107) | def test_magic_call_calls_format_with_arguments(self, generator): method test_get_random (line 111) | def test_get_random(self, mock_system_random, generator): method test_random_seed_doesnt_seed_system_random (line 117) | def test_random_seed_doesnt_seed_system_random(self, mock_system_rando... FILE: tests/test_optional.py class TestOptionalClass (line 6) | class TestOptionalClass: method test_optional (line 7) | def test_optional(self) -> None: method test_optional_probability (line 12) | def test_optional_probability(self) -> None: method test_optional_arguments (line 18) | def test_optional_arguments(self) -> None: method test_optional_valid_range (line 24) | def test_optional_valid_range(self) -> None: method test_functions_only (line 37) | def test_functions_only(self): FILE: tests/test_providers_formats.py function test_no_invalid_formats (line 15) | def test_no_invalid_formats(locale): FILE: tests/test_proxy.py class TestFakerProxyClass (line 15) | class TestFakerProxyClass: method test_unspecified_locale (line 18) | def test_unspecified_locale(self): method test_locale_as_string (line 24) | def test_locale_as_string(self): method test_locale_as_list (line 31) | def test_locale_as_list(self): method test_locale_as_list_invalid_value_type (line 44) | def test_locale_as_list_invalid_value_type(self): method test_locale_as_ordereddict (line 50) | def test_locale_as_ordereddict(self): method test_invalid_locale (line 81) | def test_invalid_locale(self): method test_items (line 100) | def test_items(self): method test_dunder_getitem (line 108) | def test_dunder_getitem(self): method test_seed_classmethod (line 118) | def test_seed_classmethod(self): method test_seed_class_locales (line 131) | def test_seed_class_locales(self): method test_seed_instance (line 146) | def test_seed_instance(self): method test_seed_locale (line 162) | def test_seed_locale(self): method test_single_locale_proxy_behavior (line 187) | def test_single_locale_proxy_behavior(self): method test_multiple_locale_proxy_behavior (line 210) | def test_multiple_locale_proxy_behavior(self): method test_multiple_locale_caching_behavior (line 227) | def test_multiple_locale_caching_behavior(self): method test_multiple_locale_factory_selection_no_weights (line 252) | def test_multiple_locale_factory_selection_no_weights(self, mock_facto... method test_multiple_locale_factory_selection_with_weights (line 291) | def test_multiple_locale_factory_selection_with_weights(self, mock_fac... method test_multiple_locale_factory_selection_single_provider (line 315) | def test_multiple_locale_factory_selection_single_provider(self, mock_... method test_multiple_locale_factory_selection_shared_providers (line 338) | def test_multiple_locale_factory_selection_shared_providers(self, mock... method test_multiple_locale_factory_selection_unsupported_method (line 356) | def test_multiple_locale_factory_selection_unsupported_method(self): method test_weighting_disabled_single_choice (line 363) | def test_weighting_disabled_single_choice(self, mock_choices_fn, mock_... method test_weighting_disabled_with_locales (line 371) | def test_weighting_disabled_with_locales(self, mock_choices_fn, mock_c... method test_weighting_disabled_multiple_locales (line 387) | def test_weighting_disabled_multiple_locales(self, mock_choices_fn, mo... method test_weighting_disabled_multiple_choices (line 403) | def test_weighting_disabled_multiple_choices(self, mock_choices_fn, mo... method test_weighting_enabled_multiple_choices (line 413) | def test_weighting_enabled_multiple_choices(self, mock_choices_fn, moc... method test_dir_include_all_providers_attribute_in_list (line 421) | def test_dir_include_all_providers_attribute_in_list(self): method test_copy (line 440) | def test_copy(self): method test_pickle (line 446) | def test_pickle(self): FILE: tests/test_unique.py class TestUniquenessClass (line 7) | class TestUniquenessClass: method test_uniqueness (line 8) | def test_uniqueness(self): method test_sanity_escape (line 20) | def test_sanity_escape(self): method test_uniqueness_clear (line 30) | def test_uniqueness_clear(self): method test_exclusive_arguments (line 42) | def test_exclusive_arguments(self): method test_functions_only (line 55) | def test_functions_only(self): method test_complex_return_types_is_supported (line 64) | def test_complex_return_types_is_supported(self): method test_unique_locale_access (line 79) | def test_unique_locale_access(self): FILE: tests/test_unique_exclude.py class TestSelectiveUniqueness (line 7) | class TestSelectiveUniqueness: method setup_method (line 8) | def setup_method(self): method test_exclude_types_excludes_bools (line 12) | def test_exclude_types_excludes_bools(self): method test_exclude_types_still_enforces_other_types (line 24) | def test_exclude_types_still_enforces_other_types(self): method test_exclude_types_with_limited_values (line 32) | def test_exclude_types_with_limited_values(self): method test_without_exclusion_bools_exhaust (line 40) | def test_without_exclusion_bools_exhaust(self): method test_exclude_types_chainable (line 53) | def test_exclude_types_chainable(self): method test_exclude_multiple_types (line 63) | def test_exclude_multiple_types(self): method test_exclude_types_shares_seen_dict (line 75) | def test_exclude_types_shares_seen_dict(self): method test_exclude_types_preserves_across_locales (line 89) | def test_exclude_types_preserves_across_locales(self): FILE: tests/utils/test_text_utils_slugify.py function test_slugify_converts_to_lowercase_and_hyphens (line 4) | def test_slugify_converts_to_lowercase_and_hyphens(): function test_slugify_with_special_characters (line 14) | def test_slugify_with_special_characters(): function test_slugify_empty_string (line 24) | def test_slugify_empty_string(): function test_slugify_with_multiple_spaces_and_hyphens (line 34) | def test_slugify_with_multiple_spaces_and_hyphens(): FILE: tests/utils/test_utils.py class UtilsTestCase (line 20) | class UtilsTestCase(unittest.TestCase): method test_choice_distribution (line 21) | def test_choice_distribution(self): method test_choices_distribution_unique (line 48) | def test_choices_distribution_unique(self): method test_get_path (line 57) | def test_get_path(self): method test_find_available_locales (line 61) | def test_find_available_locales(self): method test_find_available_providers (line 65) | def test_find_available_providers(self): method test_luhn_checksum (line 104) | def test_luhn_checksum(self): method test_valid_luhn (line 112) | def test_valid_luhn(self): method test_invalid_luhn (line 119) | def test_invalid_luhn(self): method test_add_ordereddicts (line 126) | def test_add_ordereddicts(self):