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 vkontakte2
Usage
>>> import vkontakte
>>> vk = vkontakte.API('my_api_id', 'my_api_secret')
>>> print vk.getServerTime()
1282689362
>>> vk = vkontakte.API(token='my_access_token')
>>> print vk.getServerTime()
1282689362
>>> profiles = vk.getProfiles(uids='1,2', fields='education')
>>> pavel = profiles[0]
>>> print pavel['last_name'], pavel['university_name']
Дуров СПбГУ
>>> # alternative syntax
>>> profiles = vk.get('getProfiles', uids='1,2', fields='education')
>>> pavel = profiles[0]
>>> print pavel['last_name'], pavel['university_name']
Дуров СПбГУ
>>> # custom timeout example (default timeout = 1s)
>>> vk = vkontakte.API('my_api_id', 'my_api_secret', timeout=5)
>>> print vk.getServerTime()
1282689362
>>> # syntax sugar for 'secure.*' methods
>>> print vk.secure.getSMSHistory()
None
All API methods that can be called from server should be supported.
See http://bit.ly/9Nzc8h for detailed API help.
OAuth2 access_token is supported (docs are here http://vkontakte.ru/developers.php?oid=-1&p=Авторизация)
Changes
dev (TBA)
bugfix for breaking vkontakte API updates.
simplejson is now required under python 2.6 (it was previously required only under python 2.5).
1.3.2 (2012-05-19)
more COMPLEX_METHODS are suported.
1.3.1 (2012-04-09)
don’t raise an exception on json with control characters from vkontakte;
properly encode request parameters after dumping them to json format.
1.3 (2012-03-27)
dict, list and tuple arguments are now properly serialized;
more info is preserved in VKError.
1.2.1 (2012-02-15)
properly encode unicode for API calls;
tox test running.
1.2 (2012-01-20)
‘get’ API calls are fixed;
tests are added.
1.1.0 (2012-01-11)
more magic methods are supported;
proper timestamp calculation.
1.0.0 (2011-12-29)
OAuth2 support;
api.ads support;
0.9.5 (2010-10-30)
syntax sugar for ‘secure’ methods;
make vkontakte.signature public;
unicode param names are fixed;
0.9.3 (2010-09-02)
timeout support
0.9.1 (2010-08-25)
Initial release.
Release files for vkontakte2 1.3.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| vkontakte2-1.3.4.tar.gz | 10.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| vkontakte2-1.3.4.macosx-10.6-intel.exe | Details |
Total release size: 86.3 kB
Release files / vkontakte2-1.3.4.tar.gz
| Download URL | vkontakte2-1.3.4.tar.gz |
|---|---|
| Size | 10.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a16b023fbe6c72e8b04bf7eb40d2565efc271f879eb85ab62ecc32251189fec0
|
|
BLAKE2b-256 checksum How to use checksums |
e8e6e6f7788cfd6529017b07ffb7c7a8346463c06e5afdf23c270fe4ecb6fc1d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / vkontakte2-1.3.4.macosx-10.6-intel.exe
| Download URL | vkontakte2-1.3.4.macosx-10.6-intel.exe |
|---|---|
| Size | 75.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
bd7430a7cecb8144a8210d9c1f7930e539b040a384182dfc52df9ec887d6543c
|
|
BLAKE2b-256 checksum How to use checksums |
131293b1e93523e134d12751bb7546d3660febd2f8d1529e5b4296e30c6519fb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |