Added support for Sukebei at Nyaa.si

This commit is contained in:
JuanjoSalvador
2017-12-02 16:47:29 +01:00
parent 8f1e9947c9
commit 0611fdb0fb
5 changed files with 139 additions and 13 deletions

View File

@@ -3,27 +3,34 @@ from NyaaPy.utils import Utils as utils
class Pantsu:
# Torrents - GET
def search(keyword, **kwargs):
request = requests.get("{}/search{}".format("https://nyaa.pantsu.cat/api", utils.query_builder(keyword, kwargs)))
BASE_URL = "https://nyaa.pantsu.cat/api"
# Torrents - GET
def search(keyword, **kwargs):
request = requests.get("{}/search{}".format(Pantsu.BASE_URL, utils.query_builder(keyword, kwargs)))
return request.json()
def view(item_id):
request = requests.get("/view/{}".format("https://nyaa.pantsu.cat/api", item_id))
request = requests.get("{}/view/{}".format(Pantsu.BASE_URL, item_id))
return request.json()
# Torrents - POST
def upload():
return "Work in progress!"
def update():
return "Work in progress!"
# Users
def login(username, password):
login = requests.post("{}/login/".format(BASE_URL), data={'username': username, 'password': password})
login = requests.post("{}/login/".format(Pantsu.BASE_URL), data={'username': username, 'password': password})
return login.json()
def profile(user_id):
profile = requests.post("{}/profile/".format(BASE_URL), data={'id': user_id})
profile = requests.post("{}/profile/".format(Pantsu.BASE_URL), data={'id': user_id})
return profile.json()