Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/konstantintogoi/aiovkcom
Python vk.com API wrapper
https://github.com/konstantintogoi/aiovkcom
api asyncio asyncio-api-wrapper rest vk vkcom vkontakte
Last synced: about 1 month ago
JSON representation
Python vk.com API wrapper
- Host: GitHub
- URL: https://github.com/konstantintogoi/aiovkcom
- Owner: konstantintogoi
- License: bsd-2-clause
- Created: 2019-07-09T13:38:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-13T17:21:27.000Z (about 1 month ago)
- Last Synced: 2024-10-13T17:45:42.488Z (about 1 month ago)
- Topics: api, asyncio, asyncio-api-wrapper, rest, vk, vkcom, vkontakte
- Language: Python
- Homepage:
- Size: 848 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://img.shields.io/badge/license-BSD-blue.svg
:target: https://github.com/konstantintogoi/aiovkcom/blob/master/LICENSE.. image:: https://img.shields.io/pypi/v/aiovkcom.svg
:target: https://pypi.python.org/pypi/aiovkcom.. image:: https://img.shields.io/pypi/pyversions/aiovkcom.svg
:target: https://pypi.python.org/pypi/aiovkcom.. image:: https://readthedocs.org/projects/aiovkcom/badge/?version=latest
:target: https://aiovkcom.readthedocs.io/en/latest.. image:: https://github.com/konstantintogoi/aiovkcom/actions/workflows/pages/pages-build-deployment/badge.svg
:target: https://konstantintogoi.github.io/aiovkcom.. index-start-marker1
aiovkcom
========async python `vk.com API `_ wrapper
for `REST API `_ methods, see
`documentation `_.Example
-------To use `vk.com API `_ you need
an :code:`access_token`... code-block:: python
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
------------.. code-block:: shell
$ pip install aiovkcom
Supported Python Versions
-------------------------Python 3.7, 3.8, 3.9 are supported.
.. index-end-marker1
License
-------aiovkcom is released under the BSD 2-Clause License.