aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/api.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-05-06 06:02:02 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-05-06 06:02:02 +0300
commit0651896fa9dd3afc42f0080c58e7aa97308e9c96 (patch)
tree20d4f10975b2403a638a2008cb4168ac4bc46454 /api.py
downloadvk-scripts-0651896fa9dd3afc42f0080c58e7aa97308e9c96.tar.gz
vk-scripts-0651896fa9dd3afc42f0080c58e7aa97308e9c96.zip
initial commit
Diffstat (limited to 'api.py')
-rw-r--r--api.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/api.py b/api.py
new file mode 100644
index 0000000..d584c2b
--- /dev/null
+++ b/api.py
@@ -0,0 +1,20 @@
+# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is licensed under the terms of the MIT License.
+# See LICENSE.txt for details.
+
+import json, sys, urllib.request
+
+def call_method(method_name, **kwargs):
+ get_args = '&'.join(map(lambda k: '{}={}'.format(k, kwargs[k]), kwargs))
+ url = 'https://api.vk.com/method/{}?{}'.format(method_name, get_args)
+ response = json.loads(urllib.request.urlopen(url).read().decode())
+ if 'response' not in response:
+ print(response, file=sys.stderr)
+ sys.exit(-1)
+ return response['response']
+
+def users_get(**kwargs):
+ return call_method('users.get', **kwargs)
+
+def friends_get(**kwargs):
+ return call_method('friends.get', **kwargs)