Home

Awesome

VKWave-API

Accessing VK API for humans.

Install

pip install vkwave-api

Example

from vkwave_api import API, run

async def main():
    api = API("MY TOKEN")
    vk = api.get_api()
    me = await vk.users.get()
    print(me)

run(main())

Or synchronous example

from vkwave_api import SyncAPI

def main():
    api = SyncAPI("MYTOKEN")
    me = api.api_request("users.get")
    print(me)

main()