first code
This commit is contained in:
commit
b18805aa26
11 changed files with 612 additions and 0 deletions
33
.gitignore
vendored
Normal file
33
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
*.pyc
|
||||
|
||||
# 虚拟环境
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
.venv/
|
||||
.ENV/
|
||||
|
||||
# 日志和临时文件
|
||||
*.log
|
||||
*.tmp
|
||||
*.swp
|
||||
|
||||
# VSCode
|
||||
.vscode/
|
||||
|
||||
# 系统文件
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# 配置和密钥(如有)
|
||||
*.env
|
||||
config.py
|
||||
|
||||
# pip 缓存
|
||||
pip-wheel-metadata/
|
||||
*.egg-info/
|
||||
Loading…
Add table
Add a link
Reference in a new issue