├── .gitignore ├── LICENSE ├── README.md ├── arguments.py ├── config.py ├── downloader.py ├── pyspodl └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocalhost/pyspodl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocalhost/pyspodl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocalhost/pyspodl/HEAD/README.md -------------------------------------------------------------------------------- /arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocalhost/pyspodl/HEAD/arguments.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocalhost/pyspodl/HEAD/config.py -------------------------------------------------------------------------------- /downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocalhost/pyspodl/HEAD/downloader.py -------------------------------------------------------------------------------- /pyspodl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocalhost/pyspodl/HEAD/pyspodl -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocalhost/pyspodl/HEAD/utils.py --------------------------------------------------------------------------------