Metadata-Version: 2.1
Name: mini-vk
Version: 0.1.3
Summary: Small wrapper over the VK API
Home-page: https://github.com/SemenovAV/mini_vk
Author: SemenovAV
Author-email: 7.on.off@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

# Mini_VK

A  module Python, small wrapper over the VK API

## Installation

To install the latest release on PyPI, simply run:

`pip install mini-vk`

Or to install the latest development version, run:

`pip install git+https://github.com/SemenovAV/mini_vk`

## Quick Tutorial

`api.get_api` takes in a string containing access token vk 

```python
from mini_vk.api import get_api

api = get_api(access_token)
response = api.users.get(user_id=1).text  

```
response: 
```json
{"response":[{"id":1,"first_name":"Павел","last_name":"Дуров","is_closed":false,"can_access_closed":true}]}
``` 


