REST API
Methods: https://dev.vk.com/en/method.
Executing requests
import aiovkcom
async with aiovkcom.API(v='5.241', access_token='abcde') as vk:
news = await vk.newsfeed.get()
is equivalent to GET request:
Methods: https://dev.vk.com/en/method.
import aiovkcom
async with aiovkcom.API(v='5.241', access_token='abcde') as vk:
news = await vk.newsfeed.get()
is equivalent to GET request: