https://github.com/voronind/vk
vk.com API python wrapper
https://github.com/voronind/vk
python vk vk-api
Last synced: 10 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 (about 11 years ago)
- Default Branch: master
- Last Pushed: 2023-01-31T17:32:17.000Z (about 2 years ago)
- Last Synced: 2025-04-03T12:10:00.217Z (19 days ago)
- Topics: python, vk, vk-api
- Language: Python
- Size: 173 KB
- Stars: 398
- Watchers: 17
- Forks: 87
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vk | python vk.com API wrapper
[](https://github.com/voronind/vk/commits/master)
[](https://pypi.org/project/vk/)
[](https://github.com/voronind/vk/actions)
[](https://codecov.io/gh/voronind/vk)
[](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)