175 lines
2.1 KiB
Plaintext
175 lines
2.1 KiB
Plaintext
# 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__/
|
|
|
|
nin_python_parser
|
|
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
log/
|
|
|
|
# MinIO data and cache
|
|
minio_data/
|
|
.minio.sys/
|
|
*.meta
|
|
part.*
|
|
|
|
# Docker
|
|
.dockerignore
|
|
docker-compose.override.yml
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.backup
|
|
*.orig
|
|
|
|
# Data files (Excel, CSV, etc.)
|
|
*.xlsx
|
|
*.xls
|
|
*.xlsm
|
|
*.csv
|
|
*.json
|
|
data/
|
|
uploads/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
Pipfile.lock
|
|
|
|
# poetry
|
|
poetry.lock
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
# mkdocs documentation
|
|
/site
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre type checker
|
|
.pyre/
|
|
|
|
# pytype static type analyzer
|
|
.pytype/
|
|
|
|
# Cython debug symbols
|
|
cython_debug/
|
|
|
|
# Local development
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# FastAPI
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Streamlit
|
|
.streamlit/secrets.toml
|
|
|
|
# Node.js (if any frontend components)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
__pycache__/
|