Salut, j'essaye de créer un script qui change automatiquement mon avatar toute les environs 5 secondes. Le code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from urllib.request import Request, urlopen from urllib.parse import urlencode from time import sleep urls = ( 'http://img1.mxstatic.com/wallpapers/900976145c9120f7abcba4864a11f484_large.jpeg', 'http://image.noelshack.com/fichiers/2015/51/1450354396-gob-noel.png', 'http://www.comsup.ma/mag/wp-content/uploads/2015/09/hacker-hacking-dark-hoodie.jpg', ) zds_url = 'https://zestedesavoir.com/membres/parametres/profil/' user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)' headers = {'User-Agent' : user_agent} while 1: for url in urls: values = {'avatar_url':url} data = urlencode(values).encode() request = Request(zds_url, data, headers) handle = urlopen(request) print("Nouvel avatar : " + url) sleep(10) |
Mais j'obtiens : urllib.error.HTTPError: HTTP Error 403: FORBIDDEN
Il y a-t-il un autre moyen de faire ? Merci
+0
-0