pyvka

Python package for authorize and getaccess_token for vkontakte api.


Keywords
vkontakte, vk, api, access_token, oauth, oauth2
License
ISC
Install
pip install pyvka==0.1

Documentation

pyvka

Python package for authorize and get access_token for vkontakte api.

Installation

You can install from PyPI:

$ pip install pyvka==0.1

Example Of Usage

You should be create standalone-application, and copy this app ID.

Now, you can use it:

>>> from pyvka import VKAuth
>>> login = 'your@email.or.phone.number.here'
>>> pwd = 'b19b00b5'
>>> app_id = 123456789
>>> scopes = ['wall', 'friends']
>>> vk = VKAuth()
>>> vk.auth(login, pwd, app_id, scopes)
>>> access_token = vk.access_token
>>> user_id = vk.user_id

After receiving access_token you can be using vkontakte package

Bitdeli badge