matteo-the-prestige/onomancer.py

20 lines
628 B
Python
Raw Normal View History

2020-12-20 00:08:09 +00:00
#interfaces with onomancer
import requests, json, urllib
2020-12-20 01:26:05 +00:00
import database as db
2020-12-20 00:08:09 +00:00
onomancer_url = "https://onomancer.sibr.dev/api/"
name_stats_hook = "generateStats2?name="
2020-12-20 00:08:09 +00:00
def get_stats(username):
2020-12-20 01:26:05 +00:00
#check database for cached name first
scream = db.get_soulscream(username)
if scream is not None:
return scream
2020-12-20 01:26:05 +00:00
#yell at onomancer if not in cache or too old
response = requests.get(onomancer_url + name_stats_hook + urllib.parse.quote_plus(username))
2020-12-20 00:08:09 +00:00
if response.status_code == 200:
db.cache_soulscream(username, response.json()["soulscream"])
return response.json()["soulscream"]