Skip to content

prostomarkeloff/vkwave-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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()

About

Accessing VK API for humans.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages