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.2.tar.gz
(4.4 kB
view details)
File details
Details for the file vk-1.4.2.tar.gz.
File metadata
- Download URL: vk-1.4.2.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e6f6e88fcd18212ab32b1bf0fc3594e9d991831abce8691248117663e1ece04
|
|
| MD5 |
f14600998561287feeac68dacca0621a
|
|
| BLAKE2b-256 |
50c7beefc722025b3728fb3cd0fc5a24980ad70889a00521de6383cad42fed80
|