This commit is contained in:
2025-09-01 20:54:31 +03:00
parent b98be22359
commit 79ab91c700
10 changed files with 351 additions and 53 deletions

20
.gitignore vendored
View File

@@ -1,5 +1,21 @@
# Python
__pycache__
__pycache__/
python_parser/__pycache__/
python_parser/core/__pycache__/
python_parser/adapters/__pycache__/
python_parser/tests/__pycache__/
python_parser/tests/test_core/__pycache__/
python_parser/tests/test_adapters/__pycache__/
python_parser/tests/test_app/__pycache__/
python_parser/app/__pycache__/
python_parser/app/schemas/__pycache__/
python_parser/app/schemas/test_schemas/__pycache__/
python_parser/app/schemas/test_schemas/test_core/__pycache__/
python_parser/app/schemas/test_schemas/test_adapters/__pycache__/
python_parser/app/schemas/test_schemas/test_app/__pycache__/
*.py[cod]
*$py.class
*.so
@@ -152,4 +168,6 @@ htmlcov/
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn-error.log*
__pycache__/