Je souhaite automatiser la recherche d'images inversées. Yandex en particulier est idéal pour éliminer les poissons-chats, encore mieux que Google Images. Alors, considérons ce code Python : import requests import webbrowser try: filePath = « C:\\path\\whateverThisIs.png » searchUrl= »https://yandex.ru/images/ » multipart = {‘encoded_image’: (filePath, open(filePath, ‘rb’)), ‘image_content’: »} response = requests.post(searchUrl, files=multipart, allow_redirects=False) #fetchUrl = response.headers[‘Location’] print(response) print(dir(response)) print(response.content) input()