Is there a search API for Yandex, preferably in python?

Is there an official API or semi-professional API to perform searches on Yandex.com?

+6
source share
3 answers

There is an official API - this one , with documentation in Russian (although Google Translate is likely to be enough for most needs). The API is based on XML (HTTP POST requests with XML content, the schema available here ), so it is not agnostic.

+7
source

You can also use this python client: https://github.com/dbf256/py-ya-xml .

+4
source

API documentation in English: http://api.yandex.com/xml/doc/dg/concepts/about.xml

You must first get the API key from here

Note: you have a daily limit of 10 searches !

+2
source

Source: https://habr.com/ru/post/888184/


All Articles