Last updated:
0 purchases
pyvka 0.1
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 = '[email protected]'
>>> pwd = 'b19b00b5'
>>> app_id = 123456789
>>> scopes = ['wall', 'friends']
>>> vk = VKAuth(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
Changes
0.1 (2012-09-21)
Initial release.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.