├── .gitignore ├── LICENSE ├── README.md ├── example ├── headers.zip ├── lots.txt └── result.txt ├── podtool ├── builddb.py ├── check.py └── precache.py ├── setup.py └── supotato ├── __init__.py └── supotato.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/README.md -------------------------------------------------------------------------------- /example/headers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/example/headers.zip -------------------------------------------------------------------------------- /example/lots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/example/lots.txt -------------------------------------------------------------------------------- /example/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/example/result.txt -------------------------------------------------------------------------------- /podtool/builddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/podtool/builddb.py -------------------------------------------------------------------------------- /podtool/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/podtool/check.py -------------------------------------------------------------------------------- /podtool/precache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/podtool/precache.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/setup.py -------------------------------------------------------------------------------- /supotato/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supotato/supotato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everettjf/supotato/HEAD/supotato/supotato.py --------------------------------------------------------------------------------