-
Автор темы
- #1
простенький апи auther.quarc.me (ноад) на питоне, может кому то пригодится
не расчитывайте на каую либо безопастность
не расчитывайте на каую либо безопастность
src:
import requests, subprocess, json
def get_hwid():
return str(subprocess.check_output('wmic csproduct get uuid')).split('\\r\\n')[1].strip('\\r').strip() # ачё)
class api:
def __init__(self, public, private):
self.pub = public
self.priv = private
def auth(self, key, hwid = get_hwid()):
response = requests.post('https://auther.quarc.me/v1', {'type': 'auth', 'public_token': self.pub, 'license': key, 'hwid': hwid}).text
return json.loads(response)
def log(self, key, msg, tag):
response = requests.post('https://auther.quarc.me/v1', {'type': 'log', 'private_token': self.priv, 'license': key, 'message': msg, 'tag': tag}).text
return json.loads(response)