Simple library for getting address or coordinates via Yandex geocoder
Project description
Yandex Geocoder
Get address coordinates via Yandex geocoder
Installation
Install it via pip
tool:
pip install yandex-geocoder
or Poetry:
poetry add yandex-geocoder
Usage example
Yandex Geocoder requires an API developer key, you can get it here to use this library.
from decimal import Decimal
from yandex_geocoder import Client
client = Client("your-api-key")
coordinates = client.coordinates("Москва Льва Толстого 16")
assert coordinates == (Decimal("37.587093"), Decimal("55.733969"))
address = client.address(Decimal("37.587093"), Decimal("55.733969"))
assert address == "Россия, Москва, улица Льва Толстого, 16"
Development and contribution
First of all you should install Poetry.
- install project dependencies
make install
- run linters
make lint
- run tests
make test
- feel free to contribute!
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
yandex_geocoder-3.0.1.tar.gz
(4.0 kB
view hashes)
Built Distribution
Close
Hashes for yandex_geocoder-3.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f30c6e078ba07e3f7af1ac5e9a938e5681d90dd8cca735f843fd8e99d3ec6c2a |
|
MD5 | 3ed7eb74e17cb947811f17dced0d3223 |
|
BLAKE2b-256 | 1cb03ed31feebcc695fa0b98f7febbe209db3bd30b731b4dfba2a7996882893e |