pig.py/.gitignore
Russell Ballestrini 6dab26d6fa Initial neopig: async media crawler with MD5 deduplication
- Multi-target concurrent crawling support
- Content-addressable vault storage (MD5 hash)
- SQLite database with page context for searchability
- Live SERP with real-time polling feed (/live)
- URI naming convention (media_uri, page_uri)
- GIF and image object-fit: contain for proper display
2025-12-21 17:26:42 -05:00

22 lines
186 B
Text

# Python
__pycache__/
*.py[cod]
*.so
.venv/
venv/
*.egg-info/
# Database and vault (generated data)
*.db
vault/
test_vault/
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db