diff options
Diffstat (limited to 'tpblite/tpblite.py')
-rw-r--r-- | tpblite/tpblite.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tpblite/tpblite.py b/tpblite/tpblite.py index c987e49..c99bfd2 100644 --- a/tpblite/tpblite.py +++ b/tpblite/tpblite.py @@ -1,8 +1,15 @@ from .models.torrents import Torrents, Torrent from .models.utils import Query - - +class TPB(object): + + def __init__(self, base_url='https://tpb.party'): + self.base_url = base_url + + def search(self, query, base_url, page=0, order=99, category=0): + webpage = Query(query, base_url, page=0, order=99, category=0) + return Torrents(webpage) + def run(): q = Query('avengers endgame 1080p') print(q.url) |