vk.com API python wrapper
Project description
This is a vk.com (aka vkontakte.ru, largest Russian social network) python API wrapper. The goal is to support all API methods (current and future) that can be accessed from server.
Installation
$ pip install vk
Usage
>>> import vk
Login via 1 of 3 ways:
>>> vk_api = vk.API('my_app_id', 'user_email', 'user_password') # or
>>> vk_api = vk.API(access_token='access_token') # or
>>> vk_api = vk.API('my_app_id', app_secret='my_app_secret') # deprecated by vk.com
Make requests:
>>> vk_api.getServerTime()
1395870238
>>> profiles = vk_api.getProfiles(uids=1)
>>> profiles[0]['last_name']
Дуров
>>> # alternative syntax
>>> profiles = vk_api('getProfiles', uids=1)
>>> profiles[0]['last_name']
Дуров
All API methods that can be called from server should be supported.
See https://vk.com/developers.php?id=-1_11226273 for detailed API help.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vk-1.4.3.tar.gz
(4.3 kB
view details)
File details
Details for the file vk-1.4.3.tar.gz.
File metadata
- Download URL: vk-1.4.3.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f079264d437a4f7b5a6d67ff508d0340ff9bb5c2d610dfda0c4a1b6541de37d2
|
|
| MD5 |
2cfe276a4349314da00580de7bfc680e
|
|
| BLAKE2b-256 |
e19e2adcc5b1edfd105b38dc2c51ec4d92531d002bc261d3cab2fe4e1a7932fe
|