Hello, I am creating a bot that daily updates a repository on dontpad.com
I used requests
but when trying to insert the text, the code simply clears the page and inserts nothing! Just turn it off!
import requests
url = 'http://dontpad.com/gdss'
texto = 'Oi, eu sou um bot de teste'
r = requests.post(url, data=texto)
print(r.text)