first commit

This commit is contained in:
rjb
2025-12-21 00:20:27 +08:00
commit 6fb3c6c23d
42 changed files with 2265 additions and 0 deletions

19
.flake8 Normal file
View File

@@ -0,0 +1,19 @@
[flake8]
# flake8配置文件
max-line-length = 100
exclude =
.git,
__pycache__,
.venv,
venv,
migrations,
build,
dist,
*.egg-info
ignore =
E203, # whitespace before ':'
E501, # line too long (handled by black)
W503, # line break before binary operator
per-file-ignores =
__init__.py:F401 # 允许未使用的导入