Implementazione open-source del protocollo di Strong Customer Authentication di Poste Italiane, (https://posteid.poste.it), lato client.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

160 lines
3.0 KiB

2 years ago
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. share/python-wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .nox/
  38. .coverage
  39. .coverage.*
  40. .cache
  41. nosetests.xml
  42. coverage.xml
  43. *.cover
  44. *.py,cover
  45. .hypothesis/
  46. .pytest_cache/
  47. cover/
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. local_settings.py
  54. db.sqlite3
  55. db.sqlite3-journal
  56. # Flask stuff:
  57. instance/
  58. .webassets-cache
  59. # Scrapy stuff:
  60. .scrapy
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. .pybuilder/
  65. target/
  66. # Jupyter Notebook
  67. .ipynb_checkpoints
  68. # IPython
  69. profile_default/
  70. ipython_config.py
  71. # pyenv
  72. # For a library or package, you might want to ignore these files since the code is
  73. # intended to run in multiple environments; otherwise, check them in:
  74. # .python-version
  75. # pipenv
  76. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  77. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  78. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  79. # install all needed dependencies.
  80. #Pipfile.lock
  81. # poetry
  82. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  83. # This is especially recommended for binary packages to ensure reproducibility, and is more
  84. # commonly ignored for libraries.
  85. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  86. #poetry.lock
  87. # pdm
  88. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  89. #pdm.lock
  90. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  91. # in version control.
  92. # https://pdm.fming.dev/#use-with-ide
  93. .pdm.toml
  94. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  95. __pypackages__/
  96. # Celery stuff
  97. celerybeat-schedule
  98. celerybeat.pid
  99. # SageMath parsed files
  100. *.sage.py
  101. # Environments
  102. .env
  103. .venv
  104. env/
  105. venv/
  106. ENV/
  107. env.bak/
  108. venv.bak/
  109. # Spyder project settings
  110. .spyderproject
  111. .spyproject
  112. # Rope project settings
  113. .ropeproject
  114. # mkdocs documentation
  115. /site
  116. # mypy
  117. .mypy_cache/
  118. .dmypy.json
  119. dmypy.json
  120. # Pyre type checker
  121. .pyre/
  122. # pytype static type analyzer
  123. .pytype/
  124. # Cython debug symbols
  125. cython_debug/
  126. # PyCharm
  127. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  128. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  129. # and can be added to the global gitignore or merged into this file. For a more nuclear
  130. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  131. #.idea/