POST method on DONTPAD.COM

0

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)
    
asked by anonymous 18.09.2018 / 16:54

0 answers