├── .deepsource.toml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── images ├── ScraperaFull.png └── serpapi.png ├── requirements.txt ├── scrapera ├── USER-AGENTS.txt ├── __init__.py ├── audio │ ├── __init__.py │ ├── tests │ │ └── test_audio.py │ └── youtube_playlist_scraper.py ├── image │ ├── __init__.py │ ├── duckduckgo.py │ ├── giphy.py │ ├── tests │ │ ├── duckduckgo_test.py │ │ ├── giphy_test.py │ │ └── tumblr_test.py │ └── tumblr.py ├── miscellaneous │ ├── __init__.py │ ├── tests │ │ └── yahoo_test.py │ └── yahoo_stocks.py ├── text │ ├── __init__.py │ ├── amazon.py │ ├── imdb.py │ ├── medium.py │ ├── reddit.py │ ├── scroll_news.py │ ├── tests │ │ ├── amazon_test.py │ │ ├── imdb_test.py │ │ ├── medium_test.py │ │ ├── reddit_test.py │ │ ├── scrollnews_test.py │ │ ├── voanews_test.py │ │ └── walmart_test.py │ ├── voice_of_america.py │ └── walmart.py └── video │ ├── __init__.py │ ├── tests │ ├── vimeo_test.py │ └── youtube_test.py │ ├── vimeo.py │ └── youtube.py └── setup.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/README.md -------------------------------------------------------------------------------- /images/ScraperaFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/images/ScraperaFull.png -------------------------------------------------------------------------------- /images/serpapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/images/serpapi.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapera/USER-AGENTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/USER-AGENTS.txt -------------------------------------------------------------------------------- /scrapera/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapera/audio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapera/audio/tests/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/audio/tests/test_audio.py -------------------------------------------------------------------------------- /scrapera/audio/youtube_playlist_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/audio/youtube_playlist_scraper.py -------------------------------------------------------------------------------- /scrapera/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapera/image/duckduckgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/image/duckduckgo.py -------------------------------------------------------------------------------- /scrapera/image/giphy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/image/giphy.py -------------------------------------------------------------------------------- /scrapera/image/tests/duckduckgo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/image/tests/duckduckgo_test.py -------------------------------------------------------------------------------- /scrapera/image/tests/giphy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/image/tests/giphy_test.py -------------------------------------------------------------------------------- /scrapera/image/tests/tumblr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/image/tests/tumblr_test.py -------------------------------------------------------------------------------- /scrapera/image/tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/image/tumblr.py -------------------------------------------------------------------------------- /scrapera/miscellaneous/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapera/miscellaneous/tests/yahoo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/miscellaneous/tests/yahoo_test.py -------------------------------------------------------------------------------- /scrapera/miscellaneous/yahoo_stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/miscellaneous/yahoo_stocks.py -------------------------------------------------------------------------------- /scrapera/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapera/text/amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/amazon.py -------------------------------------------------------------------------------- /scrapera/text/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/imdb.py -------------------------------------------------------------------------------- /scrapera/text/medium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/medium.py -------------------------------------------------------------------------------- /scrapera/text/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/reddit.py -------------------------------------------------------------------------------- /scrapera/text/scroll_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/scroll_news.py -------------------------------------------------------------------------------- /scrapera/text/tests/amazon_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/tests/amazon_test.py -------------------------------------------------------------------------------- /scrapera/text/tests/imdb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/tests/imdb_test.py -------------------------------------------------------------------------------- /scrapera/text/tests/medium_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/tests/medium_test.py -------------------------------------------------------------------------------- /scrapera/text/tests/reddit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/tests/reddit_test.py -------------------------------------------------------------------------------- /scrapera/text/tests/scrollnews_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/tests/scrollnews_test.py -------------------------------------------------------------------------------- /scrapera/text/tests/voanews_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/tests/voanews_test.py -------------------------------------------------------------------------------- /scrapera/text/tests/walmart_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/tests/walmart_test.py -------------------------------------------------------------------------------- /scrapera/text/voice_of_america.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/voice_of_america.py -------------------------------------------------------------------------------- /scrapera/text/walmart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/text/walmart.py -------------------------------------------------------------------------------- /scrapera/video/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapera/video/tests/vimeo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/video/tests/vimeo_test.py -------------------------------------------------------------------------------- /scrapera/video/tests/youtube_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/video/tests/youtube_test.py -------------------------------------------------------------------------------- /scrapera/video/vimeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/video/vimeo.py -------------------------------------------------------------------------------- /scrapera/video/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/scrapera/video/youtube.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarshanDeshpande/Scrapera/HEAD/setup.py --------------------------------------------------------------------------------