├── .gitignore ├── README.md ├── channel_data_extractor.py ├── channel_names.txt ├── main.py ├── main_parallel.py ├── requirements.txt └── scraper ├── __init__.py ├── __init__.pyc ├── __pycache__ ├── __init__.cpython-35.pyc ├── __init__.cpython-36.pyc ├── channel_data_extractor.cpython-35.pyc ├── comments_downloader.cpython-35.pyc ├── comments_downloader.cpython-36.pyc ├── description_downloader.cpython-35.pyc ├── description_downloader.cpython-36.pyc └── scraper.cpython-35.pyc ├── comments_downloader.py ├── description_downloader.py └── description_downloader.pyc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/README.md -------------------------------------------------------------------------------- /channel_data_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/channel_data_extractor.py -------------------------------------------------------------------------------- /channel_names.txt: -------------------------------------------------------------------------------- 1 | UCSJXwgF3SePNfyojYG3yt6Q -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/main.py -------------------------------------------------------------------------------- /main_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/main_parallel.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scraper/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__init__.pyc -------------------------------------------------------------------------------- /scraper/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /scraper/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /scraper/__pycache__/channel_data_extractor.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__pycache__/channel_data_extractor.cpython-35.pyc -------------------------------------------------------------------------------- /scraper/__pycache__/comments_downloader.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__pycache__/comments_downloader.cpython-35.pyc -------------------------------------------------------------------------------- /scraper/__pycache__/comments_downloader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__pycache__/comments_downloader.cpython-36.pyc -------------------------------------------------------------------------------- /scraper/__pycache__/description_downloader.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__pycache__/description_downloader.cpython-35.pyc -------------------------------------------------------------------------------- /scraper/__pycache__/description_downloader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__pycache__/description_downloader.cpython-36.pyc -------------------------------------------------------------------------------- /scraper/__pycache__/scraper.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/__pycache__/scraper.cpython-35.pyc -------------------------------------------------------------------------------- /scraper/comments_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/comments_downloader.py -------------------------------------------------------------------------------- /scraper/description_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/description_downloader.py -------------------------------------------------------------------------------- /scraper/description_downloader.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hridaydutta123/the-youtube-scraper/HEAD/scraper/description_downloader.pyc --------------------------------------------------------------------------------