https://github.com/begyy/yandexmaps
https://github.com/begyy/yandexmaps
api python yandexmaps
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/begyy/yandexmaps
- Owner: begyy
- License: mit
- Created: 2019-06-03T19:37:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-03T20:24:26.000Z (about 6 years ago)
- Last Synced: 2024-12-03T08:12:46.802Z (over 1 year ago)
- Topics: api, python, yandexmaps
- Language: Python
- Size: 7.81 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Yandexmaps
[](https://pepy.tech/project/yandexmaps)

````
pip install requests
pip install yandexmaps
````
# Example
```
from yandex_maps import Yandexmaps
yandex = Yandexmaps()
yandex.address('Узбекистан, Ташкент, сквер Амира Темура')
>>> ('69.279737', '41.311273')
yandex.locations(longitude='69.279737', latitude='41.311273')
>>> Oʻzbekiston, Toshkent, Amir Temur xiyoboni
```
```
from yandex_maps import Yandexmaps
Yandexmaps(language='ru_RU',api_key='token').locations(longitude='69.279737', latitude='41.311273')
>>> Узбекистан, Ташкент, сквер Амира Темура
```