├── .gitignore ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml └── scrape.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepfates/bsky-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepfates/bsky-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepfates/bsky-scraper/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepfates/bsky-scraper/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepfates/bsky-scraper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepfates/bsky-scraper/HEAD/scrape.py --------------------------------------------------------------------------------