Skip to content

svartalf/python-aio2gis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-aio2gis

A Python library for accessing the 2gis API (http://api.2gis.ru) powered with asyncio.

Usage

Example

import asyncio
from aio2gis.client import API

@asyncio.coroutine
def get_projects_list():
    api = API('api-key')
    response = yield from api.project_list()
    print(response)

loop = asyncio.get_event_loop()
loop.run_until_complete(get_projects_list())

Contributing

If you want to contribute, follow the pep8 guideline.

About

asyncio-powered 2gis library for Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages