Hızlı yanıt: kod örneği
ru.stackoverflow.com Поиск-по-картинке-yandex-images-python
https://yandex.ru/images/search?source=collections&rpt=imageview&url=urltofile&
Это работает. Дальше просто распарситьЭтот код выдаёт ссылки на "Похожие картинки"
import requestsfrom bs4 import BeautifulSoupurl = r'https://yandex.ru/images/search?source=collections&rpt=imageview&url=https://canon-fan.com/sites/default/files/imagecache/small_image/moon.jpg'soup = BeautifulSoup(requests.get(url).text, 'lxml')similar = soup.find_all('li', class_='cbir-similar__thumb')for i in similar: print(f"https://yandex.ru{i.find('a').get('href')}\n")