合并代码

This commit is contained in:
jlj 2025-05-19 18:36:58 +08:00
commit 534c9f6677
2 changed files with 100 additions and 55 deletions

153
.gitignore vendored
View File

@ -1,55 +1,98 @@
# Python # Python
*.py[cod] __pycache__/
__pycache__/ *.py[cod]
*.so *$py.class
.Python
env/ # C extensions
build/ *.so
develop-eggs/
dist/ # Distribution / packaging
downloads/ .Python
eggs/ build/
.eggs/ develop-eggs/
lib/ dist/
lib64/ downloads/
parts/ eggs/
sdist/ .eggs/
var/ lib/
*.egg-info/ lib64/
.installed.cfg parts/
*.egg sdist/
var/
# Django wheels/
*.log share/python-wheels/
*.pot *.egg-info/
*.pyc .installed.cfg
local_settings.py *.egg
db.sqlite3 MANIFEST
db.sqlite3-journal
media/ # PyInstaller
static/ *.manifest
*.spec
# IDE
.idea/ # Installer logs
.vscode/ pip-log.txt
*.swp pip-delete-this-directory.txt
*.swo
*~ # Unit test / coverage reports
htmlcov/
# 虚拟环境 .tox/
venv/ .nox/
ENV/ .coverage
.env .coverage.*
.cache
# 系统文件 nosetests.xml
.DS_Store coverage.xml
Thumbs.db *.cover
*.py,cover
# 其他 .hypothesis/
*.bak .pytest_cache/
*.tmp cover/
*.temp
.coverage # Translations
htmlcov/ *.mo
.pytest_cache/ *.pot
.mypy_cache/
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
media/
static/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# 虚拟环境
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# 系统文件
.DS_Store
Thumbs.db
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# Celery stuff
celerybeat-schedule
celerybeat.pid
# mypy
.mypy_cache/
.dmypy.json
dmypy.json

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# daren