Skip to content

konstantintogoi/aiovkcom

Repository files navigation

https://readthedocs.org/projects/aiovkcom/badge/?version=latest

aiovkcom

async python vk.com API wrapper for REST API methods, see documentation.

Example

To use vk.com API you need an access_token.

import aiovkcom

async with aiovkcom.API(v='5.241', access_token='your access token') as vk:
    contacts = await vk.account.getContactList()
    friends = await vk.friends.get()
    events = await vk.wall.get()

Installation

$ pip install aiovkcom

Supported Python Versions

Python 3.7, 3.8, 3.9 are supported.

License

aiovkcom is released under the BSD 2-Clause License.