├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── engines ├── __init__.py ├── js.py ├── patterns │ ├── __init__.py │ ├── function.py │ └── utils.py ├── stub.js └── text.py ├── links.txt ├── loaders.py ├── requirements.txt ├── resources └── test-links.txt ├── test.py └── zippyshare.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/README.md -------------------------------------------------------------------------------- /engines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/engines/js.py -------------------------------------------------------------------------------- /engines/patterns/__init__.py: -------------------------------------------------------------------------------- 1 | from .function import * 2 | 3 | -------------------------------------------------------------------------------- /engines/patterns/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/engines/patterns/function.py -------------------------------------------------------------------------------- /engines/patterns/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/engines/patterns/utils.py -------------------------------------------------------------------------------- /engines/stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/engines/stub.js -------------------------------------------------------------------------------- /engines/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/engines/text.py -------------------------------------------------------------------------------- /links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/links.txt -------------------------------------------------------------------------------- /loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/loaders.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/test-links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/resources/test-links.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/test.py -------------------------------------------------------------------------------- /zippyshare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartmanishere/zippyshare-scraper/HEAD/zippyshare.py --------------------------------------------------------------------------------