Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voronind/vk
vk.com API python wrapper
https://github.com/voronind/vk
python vk vk-api
Last synced: 5 days ago
JSON representation
vk.com API python wrapper
- Host: GitHub
- URL: https://github.com/voronind/vk
- Owner: voronind
- License: mit
- Created: 2014-03-27T02:01:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-01-31T17:32:17.000Z (about 2 years ago)
- Last Synced: 2025-01-19T23:10:34.868Z (12 days ago)
- Topics: python, vk, vk-api
- Language: Python
- Size: 173 KB
- Stars: 398
- Watchers: 18
- Forks: 87
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vk | python vk.com API wrapper
[![Maintanance](https://img.shields.io/maintenance/yes/2023?style=flat-square)](https://github.com/voronind/vk/commits/master)
[![PyPI](https://img.shields.io/pypi/pyversions/vk?style=flat-square)](https://pypi.org/project/vk/)
[![GitHub CI](https://img.shields.io/github/actions/workflow/status/voronind/vk/check.yml?branch=master&style=flat-square)](https://github.com/voronind/vk/actions)
[![Codecov](https://img.shields.io/codecov/c/github/voronind/vk?style=flat-square)](https://codecov.io/gh/voronind/vk)
[![Docs](https://img.shields.io/readthedocs/vk?style=flat-square)](https://vk.readthedocs.io/en/latest/)This is a vk.com (the largest Russian social network) python API wrapper.
The goal is to support all API methods (current and future) that can be accessed from server.## Quickstart
### Install
```bash
pip install vk
```### Usage
```python
>>> import vk
>>> api = vk.API(access_token='...')
>>> api.users.get(user_ids=1)
[{'id': 1, 'first_name': 'Pavel', 'last_name': 'Durov', ... }]
```See official VK [documentation](https://dev.vk.com/method) for detailed API guide.
## More info
Read full documentation on [Read the Docs](https://vk.readthedocs.org)