├── .gitignore ├── CHANGELOG ├── README.rst ├── config.py.example ├── dropbox ├── __init__.py ├── exceptions.py ├── metadataclient.py └── util.py ├── dropship ├── examples └── sintel_trailer-1080p.mp4.json ├── hash_blocks └── sqlite_dump /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | config.py 4 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/CHANGELOG -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/README.rst -------------------------------------------------------------------------------- /config.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/config.py.example -------------------------------------------------------------------------------- /dropbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dropbox/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/dropbox/exceptions.py -------------------------------------------------------------------------------- /dropbox/metadataclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/dropbox/metadataclient.py -------------------------------------------------------------------------------- /dropbox/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/dropbox/util.py -------------------------------------------------------------------------------- /dropship: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/dropship -------------------------------------------------------------------------------- /examples/sintel_trailer-1080p.mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/examples/sintel_trailer-1080p.mp4.json -------------------------------------------------------------------------------- /hash_blocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/hash_blocks -------------------------------------------------------------------------------- /sqlite_dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driverdan/dropship/HEAD/sqlite_dump --------------------------------------------------------------------------------