From d14ae17ad897403f2604106931fc6d0779ffa435 Mon Sep 17 00:00:00 2001 From: Muaz Ahmad Date: Mon, 7 Nov 2022 03:14:05 +0500 Subject: [PATCH] Removed login code, can't be arsed --- api.py | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/api.py b/api.py index 188bba1..9b58724 100644 --- a/api.py +++ b/api.py @@ -1,28 +1,12 @@ import requests -import os, getpass, re, pickle, getpass +import os, getpass, re, pickle, getpass, json class Session(): def __init__(self): self.client = requests.Session() - - def set_csrf(self): - self.client.headers['x-csrftoken'] = re.search('csrf-token\" content=\"(.*)\">', self.client.get('https://warframe.market').text).group(1) def api_request(self, url='/', method='get', **kwargs): - return getattr(self.client, method)('https://api.warframe.market/v1' + url, **kwargs) + return json.loads(getattr(self.client, method)('https://api.warframe.market/v1' + url, **kwargs).text) + - def login(self, force = False): - self.set_csrf() - if os.path.exists('JWT.pkl') and not force: - with open('JWT.pkl', 'rb') as f: - self.client.cookies.update(pickle.load(f)) - else: - self.api_request(url='/auth/signin', method='post', json={ - "auth_type": "cookie", - "email": input('Email: '), - "password": getpass.getpass("Password: ") - }) - if self.client.cookies.get('JWT'): - with open('JWT.pkl', 'wb') as f: - pickle.dump(self.client.cookies. f)