├── .gitignore ├── LICENSE ├── README.md ├── account_info.py ├── downloader ├── dl.py ├── get_dl_url.py └── get_file_id.py ├── example.env ├── requirements.txt ├── run.py └── uploader ├── get_ul_url.py └── upload_file.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/README.md -------------------------------------------------------------------------------- /account_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/account_info.py -------------------------------------------------------------------------------- /downloader/dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/downloader/dl.py -------------------------------------------------------------------------------- /downloader/get_dl_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/downloader/get_dl_url.py -------------------------------------------------------------------------------- /downloader/get_file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/downloader/get_file_id.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/example.env -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/run.py -------------------------------------------------------------------------------- /uploader/get_ul_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/uploader/get_ul_url.py -------------------------------------------------------------------------------- /uploader/upload_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebNation/streamtape-scraper/HEAD/uploader/upload_file.py --------------------------------------------------------------------------------