abh - HTMLify profile

abh's Profile Picture

abh

501 Files

101803 Views

Latest files of /abh/fau

ticket.py abh/fau/ticket.py
345 Views
4 Comments
from requests import get, post

def get_token():
r = get("https://helpdesk.agrauniv.online/Home/NewTicket")
html = r.text
html = html[html.find("__")+49:html.find("__")+204]
token = html
return token