• Stars
    star
    396
  • Rank 108,172 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created over 10 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

vk.com API python wrapper

vk | python vk.com API wrapper

Maintanance PyPI GitHub CI Codecov Docs

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

pip install vk

Usage

>>> 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 for detailed API guide.

More info

Read full documentation on Read the Docs