├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── config_example.json ├── download.py ├── download_parallel.py └── figure ├── 0.png ├── 1.png ├── 2.png ├── favicon.ico └── title.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/config.json -------------------------------------------------------------------------------- /config_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/config_example.json -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/download.py -------------------------------------------------------------------------------- /download_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/download_parallel.py -------------------------------------------------------------------------------- /figure/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/figure/0.png -------------------------------------------------------------------------------- /figure/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/figure/1.png -------------------------------------------------------------------------------- /figure/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/figure/2.png -------------------------------------------------------------------------------- /figure/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/figure/favicon.ico -------------------------------------------------------------------------------- /figure/title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZhu-42/PedagogySquare_Downloader/HEAD/figure/title.jpg --------------------------------------------------------------------------------