Automated sync tool for Dota 2 Tier 1 matches from Liquipedia to Google Calendar Features: - Sync matches from Liquipedia to Google Calendar - Auto-update match results when completed - Detect and update time changes - Clean event format: Team1 vs Team2 [Tournament] Main files: - sync_dota2_matches.py: Main sync script - run_sync.sh: Convenience runner - requirements.txt: Python dependencies - README.md: Setup and usage guide # Conflicts: # .gitignore # README.md
65 lines
633 B
Plaintext
65 lines
633 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environments
|
|
.venv
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Credentials and sensitive data
|
|
credentials.json
|
|
token.json
|
|
client_secret*.json
|
|
|
|
# Test and temporary files
|
|
*.log
|
|
*.tmp
|
|
test_*.html
|
|
liquipedia_page.html
|
|
|
|
# Cache
|
|
.cache/
|
|
*.cache
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*_backup.py
|
|
|
|
# Calendar ID specific files (if needed to keep private)
|
|
# calendar_config.json |