├── .gitignore ├── .travis.yml ├── Dockerfile ├── README.md ├── ali213.png ├── ali213.py ├── experimental ├── getigg.js └── warezgames.py ├── smallgames.png ├── smallgames.py └── tests ├── ali213.sh └── smallgames.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ 3 | lib/ 4 | testing/ 5 | *cookie.json 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/README.md -------------------------------------------------------------------------------- /ali213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/ali213.png -------------------------------------------------------------------------------- /ali213.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/ali213.py -------------------------------------------------------------------------------- /experimental/getigg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/experimental/getigg.js -------------------------------------------------------------------------------- /experimental/warezgames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/experimental/warezgames.py -------------------------------------------------------------------------------- /smallgames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/smallgames.png -------------------------------------------------------------------------------- /smallgames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/smallgames.py -------------------------------------------------------------------------------- /tests/ali213.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannsen/qbittorrent_search_plugins/HEAD/tests/ali213.sh -------------------------------------------------------------------------------- /tests/smallgames.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | cd /app 6 | 7 | python smallgames.py | grep -i ECO 8 | --------------------------------------------------------------------------------