fabiocaccamo/python-codicefiscale

View on GitHub

Showing 22 of 22 total issues

File codicefiscale.py has 431 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from __future__ import annotations
 
import re
import string
from datetime import datetime, timedelta
Severity: Minor
Found in src/codicefiscale/codicefiscale.py - About 6 hrs to fix

    Function _get_birthplace_fallback has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

    def _get_birthplace_fallback(
    birthplaces_options: list[dict[str, Any]],
    birthdate_date: datetime,
    ) -> dict[str, dict[str, Any]] | None:
    # avoid wrong birthplace code error when birthdate falls in
    Severity: Minor
    Found in src/codicefiscale/codicefiscale.py - About 3 hrs to fix

    Cyclomatic complexity is too high in function _get_birthplace_fallback. (10)
    Open

    def _get_birthplace_fallback(
    birthplaces_options: list[dict[str, Any]],
    birthdate_date: datetime,
    ) -> dict[str, dict[str, Any]] | None:
    # avoid wrong birthplace code error when birthdate falls in
    Severity: Minor
    Found in src/codicefiscale/codicefiscale.py by radon

    Cyclomatic complexity is too high in function _get_birthplace. (8)
    Open

    def _get_birthplace(
    birthplace: str,
    birthdate: datetime | str | None = None,
    ) -> dict[str, dict[str, Any]] | None:
    birthplace_slug = slugify(birthplace)
    Severity: Minor
    Found in src/codicefiscale/codicefiscale.py by radon

    Cyclomatic complexity is too high in function _decode_from_args. (7)
    Open

    def _decode_from_args(args: argparse.Namespace) -> None:
    try:
    cf_data = codicefiscale.decode(args.code)
    except Exception as error:
    sys.stderr.write(f"{error}\n")
    Severity: Minor
    Found in src/codicefiscale/cli.py by radon

    Cyclomatic complexity is too high in function run_with_args. (6)
    Open

    def run_with_args(args: argparse.Namespace) -> None:
    if args.subcommand is None and args.version:
    sys.stdout.write(f"{__version__}\n")
    elif args.subcommand == "decode":
    _decode_from_args(args)
    Severity: Minor
    Found in src/codicefiscale/cli.py by radon

    Cyclomatic complexity is too high in function encode_birthdate. (6)
    Open

    def encode_birthdate(
    birthdate: datetime | str | None,
    gender: Literal["m", "M", "f", "F"],
    ) -> str:
    """
    Severity: Minor
    Found in src/codicefiscale/codicefiscale.py by radon

    Cyclomatic complexity is too high in function decode. (6)
    Open

    def decode(code: str) -> dict[str, Any]:
    """
    Decodes the italian fiscal code.
     
    :param code: The code
    Severity: Minor
    Found in src/codicefiscale/codicefiscale.py by radon

    Function _update_countries_data has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def _update_countries_data() -> None:
    # https://www.anagrafenazionale.interno.it/area-tecnica/tabelle-di-decodifica/
    data_url = (
    "https://www.anagrafenazionale.interno.it"
    "/wp-content/uploads/2022/10/tabella_2_statiesteri.xlsx"
    Severity: Minor
    Found in scripts/updatedata.py - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

    if date_created and date_deleted:
    date_delta = date_deleted - date_created
    if date_delta <= timedelta(days=1):
    return birthplace_option.copy()
    return birthplace_option_next.copy()
    Severity: Major
    Found in src/codicefiscale/codicefiscale.py - About 45 mins to fix

      Function encode has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def encode(
      Severity: Minor
      Found in src/codicefiscale/codicefiscale.py - About 35 mins to fix

        Function _get_birthplace has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def _get_birthplace(
        birthplace: str,
        birthdate: datetime | str | None = None,
        ) -> dict[str, dict[str, Any]] | None:
        birthplace_slug = slugify(birthplace)
        Severity: Minor
        Found in src/codicefiscale/codicefiscale.py - About 35 mins to fix

        Function _update_municipalities_data has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        def _update_municipalities_data() -> None:
        # https://www.anagrafenazionale.interno.it/area-tecnica/tabelle-di-decodifica/
        data_url = (
        "https://www.anagrafenazionale.interno.it"
        "/wp-content/uploads/ANPR_archivio_comuni.csv"
        Severity: Minor
        Found in scripts/updatedata.py - About 25 mins to fix

        Function get_indexed_data has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        def get_indexed_data() -> dict[
        str, dict[str, list[dict[str, bool | datetime | str | list[str]]]]
        ]:
        municipalities = get_municipalities_data()
        countries = get_countries_data()
        Severity: Minor
        Found in src/codicefiscale/data.py - About 25 mins to fix

        Function run_with_args has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        def run_with_args(args: argparse.Namespace) -> None:
        if args.subcommand is None and args.version:
        sys.stdout.write(f"{__version__}\n")
        elif args.subcommand == "decode":
        _decode_from_args(args)
        Severity: Minor
        Found in src/codicefiscale/cli.py - About 25 mins to fix

        Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
        Open

        assert name != "", f"Invalid name: {name!r}"
        Severity: Info
        Found in scripts/updatedata.py by bandit

        Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
        Open

        assert name != "", f"Invalid name: {name}"
         
         
        Severity: Info
        Found in scripts/updatedata.py by bandit

        Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
        Open

        assert len(province) == 2, f"Invalid province: {province!r}"
         
         
        Severity: Info
        Found in scripts/updatedata.py by bandit

        Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
        Open

        assert len(status) == 1 and status in ["A", "C"], f"Invalid status: {status!r}"
        Severity: Info
        Found in scripts/updatedata.py by bandit

        Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
        Open

        assert len(code) == 4, f"Invalid code: {code!r}"
         
         
        Severity: Info
        Found in scripts/updatedata.py by bandit
        Severity
        Category
        Status
        Source
        Language