how do I log in with a python script?

comments (single view)

this will make a post:

import requests

authJson = {"Authorization": "my token"}

post = requests.post("https://api.wasteof.money/posts", headers = authJson, json = {"post": "api test"})
View all comments