-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efe75be
commit 46ecb37
Showing
3 changed files
with
47 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#VERSION: 1.0 | ||
# AUTHORS: Alexander Georgievskiy (galeksandrp@gmail.com) | ||
# CONTRIBUTORS: | ||
|
||
import sys | ||
import os | ||
from pathlib import Path | ||
|
||
os.environ['CONFIG_FILE'] = 'prowlarr.json' | ||
|
||
try: | ||
import jackett | ||
except ImportError: | ||
sys.path.insert(0, str(Path(__file__).parent.absolute())) | ||
import jackett | ||
|
||
del os.environ['CONFIG_FILE'] | ||
|
||
|
||
class prowlarr(jackett.jackett): | ||
name = 'Prowlarr' | ||
|
||
|
||
if __name__ == "__main__": | ||
jackett_se = prowlarr() | ||
jackett_se.search("ubuntu server", 'software') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
eztv: 1.14 | ||
jackett: 4.0 | ||
jackett: 4.1 | ||
limetorrents: 4.7 | ||
piratebay: 3.2 | ||
solidtorrents: 2.1 | ||
|