async python vk.com API wrapper for REST API methods, see documentation.
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()
$ pip install aiovkcom
Python 3.7, 3.8, 3.9 are supported.
aiovkcom is released under the BSD 2-Clause License.