Metadata-Version: 2.1
Name: vk
Version: 3.0
Summary: Python vk.com API wrapper
Author-email: Dmitry Voronin <dimka665@gmail.com>
Maintainer-email: Yaroslav Kikel <yaroslav.kikel.06@inbox.ru>
License: MIT
Project-URL: Documentation, https://vk.readthedocs.io
Project-URL: Homepage, https://github.com/voronind/vk
Project-URL: Source, https://github.com/voronind/vk
Project-URL: Tracker, https://github.com/voronind/vk/issues
Keywords: vk.com,api,vk,wrappper
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: docs
License-File: LICENSE

# vk | python vk.com API wrapper

[![Maintanance](https://img.shields.io/maintenance/yes/2022?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/workflow/status/voronind/vk/Check/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. <br>
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)
