Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
237 changes: 142 additions & 95 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
# Byte-compiled / optimized / DLL files
# Virtual environment
venv/
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
*.pyc
*.pyo
*.pyd
.Python
build/
develop-eggs/
Expand All @@ -20,117 +17,167 @@ parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache
# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Coverage directory used by tools like istanbul
coverage/

# Scrapy stuff:
.scrapy
# nyc test coverage
.nyc_output

# Sphinx documentation
docs/_build/
# Grunt intermediate storage
.grunt

# PyBuilder
target/
# Bower dependency directory
bower_components

# Jupyter Notebook
.ipynb_checkpoints
# node_modules
node_modules/

# IPython
profile_default/
ipython_config.py
# Optional npm cache directory
.npm

# pyenv
.python-version
# Optional eslint cache
.eslintcache

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Optional REPL history
.node_repl_history

# Celery stuff
celerybeat-schedule
celerybeat.pid
# Output of 'npm pack'
*.tgz

# SageMath parsed files
*.sage.py
# Yarn Integrity file
.yarn-integrity

# Environments
# dotenv environment variables file
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
.env.test

# Spyder project settings
.spyderproject
.spyproject
# parcel-bundler cache
.cache
.parcel-cache

# Rope project settings
.ropeproject
# Next.js build output
.next

# mkdocs documentation
/site
# Nuxt.js build / generate output
.nuxt
dist

# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Gatsby files
.cache/
public

# Pyre type checker
.pyre/
# Storybook build outputs
.out
.storybook-out

# hook script generated for pyinstaller
ver_hook.py
# cached data
*.cache.json
# Temporary folders
tmp/
temp/

# Editor directories and files
.vscode/
!.vscode/extensions.json
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# JavSP specific
*.mp4
*.avi
*.mkv
*.wmv
*.flv
*.mov
*.jpg
*.jpeg
*.png
*.gif
*.bmp
*.webp
*.nfo
*.txt
!requirements.txt
!README.txt
!*.md

# Config backups
config*.bak
config*副本*

# Test files
test_*.py
*_test.py
simple_crawler_test.py
debug_*.py
问题*.txt

# Backup directories
backup/
old/

# Build and distribution files
build/
dist/
*.pkg
*.dmg
*.app
*.exe
*.msi

# Large binary files
*.dylib
*.so
*.dll
*.bin

# macOS specific
.DS_Store
.AppleDouble
.LSOverride

# Obsolescence
obs/

# Log files
*.log
FileMove.log
JavSP.log!requirements-mac.txt
Loading