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
85 changes: 80 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,83 @@
# ===================
# Data files
# ===================
data/spot/
data/futures/
data/option/
*.zip
!/updates/*.zip
.DS_Store
*.csv
*.CHECKSUM

# Keep symbol_dates.json (useful cache)
!data/symbol_dates.json

# ===================
# Python
# ===================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
ENV/
env/
.venv/

# ===================
# IDE & Editors
# ===================
.idea/
*/.DS_Store
*/.idea/
*/__pycache__/
.vscode/
*.swp
*.swo
*~
.project
.pydevproject
.settings/

# ===================
# OS files
# ===================
.DS_Store
Thumbs.db
desktop.ini

# ===================
# Logs & Cache
# ===================
logs/
*.log
.pytest_cache/
.mypy_cache/
.coverage
htmlcov/

# ===================
# Temporary files
# ===================
*.tmp
*.temp
*.bak

# ===================
# Legacy
# ===================
python/data/
Loading