├── .gitignore ├── README.md ├── auto_upload.py ├── config.env.sample ├── description_template.jinja2 ├── images └── upload_screenshots.py ├── requirements.txt ├── rtorrent_on_complete_reupload.sh.sample ├── search_for_dupes.py └── site_templates ├── aither.json ├── asiancinema.json ├── beyond-hd.json ├── blutopia.json ├── default_template.json ├── desitorrents.json ├── ntelogo.json ├── racing4everyone.json ├── telly.json └── uncutflixhd.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/README.md -------------------------------------------------------------------------------- /auto_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/auto_upload.py -------------------------------------------------------------------------------- /config.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/config.env.sample -------------------------------------------------------------------------------- /description_template.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/description_template.jinja2 -------------------------------------------------------------------------------- /images/upload_screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/images/upload_screenshots.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /rtorrent_on_complete_reupload.sh.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/rtorrent_on_complete_reupload.sh.sample -------------------------------------------------------------------------------- /search_for_dupes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/search_for_dupes.py -------------------------------------------------------------------------------- /site_templates/aither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/aither.json -------------------------------------------------------------------------------- /site_templates/asiancinema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/asiancinema.json -------------------------------------------------------------------------------- /site_templates/beyond-hd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/beyond-hd.json -------------------------------------------------------------------------------- /site_templates/blutopia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/blutopia.json -------------------------------------------------------------------------------- /site_templates/default_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/default_template.json -------------------------------------------------------------------------------- /site_templates/desitorrents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/desitorrents.json -------------------------------------------------------------------------------- /site_templates/ntelogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/ntelogo.json -------------------------------------------------------------------------------- /site_templates/racing4everyone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/racing4everyone.json -------------------------------------------------------------------------------- /site_templates/telly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/telly.json -------------------------------------------------------------------------------- /site_templates/uncutflixhd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryelogheat/xpbot/HEAD/site_templates/uncutflixhd.json --------------------------------------------------------------------------------