├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── yiff_scraper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham418/yiff_scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham418/yiff_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham418/yiff_scraper/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.21.0 2 | beautifulsoup4==4.7.1 3 | -------------------------------------------------------------------------------- /yiff_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham418/yiff_scraper/HEAD/yiff_scraper.py --------------------------------------------------------------------------------