Unofficial Yandex Search API client for Python
Project description
Yandex Search API Client
A Python client for interacting with Yandex's Search API, providing easy access to Yandex search results programmatically.
Features
- Perform searches using Yandex's Search API
- Retrieve search results in XML format
- Extract URLs from search results
- Automatic IAM token management
- Configurable search parameters (region, search type, number of results)
- Asynchronous operation with timeout handling
Installation
pip install yandex-search-api
Usage
Basic Example
import logging
from yandex_search_api import YandexSearchAPIClient
from yandex_search_api.client import SearchType
def main():
# Initialize client with your credentials
client = YandexSearchAPIClient(
folder_id="your_folder_id",
oauth_token="your_oauth_token"
)
# How to get folder_id: https://yandex.cloud/en-ru/docs/resource-manager/operations/folder/get-id
# How to get oauth_token: https://yandex.cloud/en-ru/docs/iam/concepts/authorization/oauth-token
links = client.get_links(
query_text="Python library for yandex search",
search_type=SearchType.RUSSIAN,
n_links=5
)
print("Search results:", links)
if __name__ == '__main__':
main()
Advanced Usage
# Perform a search and get raw XML results
operation_id = client.search(
query_text="Advanced search example",
search_type=SearchType.INTERNATIONAL,
region=Region.UKRAINE,
n_links=20
)
# Wait for results and get XML
xml_results = client.get_search_results(operation_id)
# Or use the convenience method that waits automatically
xml_results = client.search_and_wait(
query_text="Another example",
max_wait=120, # seconds
interval=5 # seconds between checks
)
Configuration
Required Credentials
- Folder ID: Your Yandex Cloud folder ID https://yandex.cloud/en-ru/docs/resource-manager/operations/folder/get-id
- OAuth Token: Your Yandex OAuth token https://yandex.cloud/en-ru/docs/iam/concepts/authorization/oauth-token
Search Parameters
-
search_type:SearchType.RUSSIAN(default)SearchType.TURKISHSearchType.INTERNATIONAL
-
region:Region.RUSSIA(default)Region.UKRAINERegion.BELARUSRegion.KAZAKHSTAN
-
n_links: Number of results to return (default: 10) -
page: Page number (default: 0) -
max_wait: Maximum time to wait for results in seconds (default: 300) -
interval: Time between operation status checks in seconds (default: 1)
Logging
The library uses Python's logging module with logger name YandexSearchApi. Configure logging as needed:
import logging
logging.getLogger('YandexSearchApi').setLevel(logging.DEBUG)
License
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yandex_search_api-0.1.8.tar.gz.
File metadata
- Download URL: yandex_search_api-0.1.8.tar.gz
- Upload date:
- Size: 47.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92dc771207925886bdccdb738ef4868f60d8a2b24e7b492aebe4da979475c15e
|
|
| MD5 |
8b932a570e6425e97897d291a1960144
|
|
| BLAKE2b-256 |
077b7cc5aedf2ad86f38692406e83e60fa49376f801a58f6db47f241d78210c3
|
File details
Details for the file yandex_search_api-0.1.8-py3-none-any.whl.
File metadata
- Download URL: yandex_search_api-0.1.8-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f05eca72218ecaa306ad0b758c71cc5b85f8fdd6ca0ed67c523f18a74339057
|
|
| MD5 |
a6b7b0b149f3d4b90081a6b0c7c496b4
|
|
| BLAKE2b-256 |
44324d9b225750053b659c9a1c08bbfed798afa362103a90eb4cfd26cc474f23
|