konstantintogoi / aiovkcom

Python vk.com API wrapper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Python vk.com API wrapper

License:BSD 2-Clause "Simplified" License


Languages

Language:Python 100.0%