Skip to main content

vk.com Python REST API wrapper

Project description

vk.com Python REST API wrapper

About

This is a vk.com (Russian social network) python API wrapper. The goal is to support all API methods: https://vk.com/dev/methods.

Getting Started

Install package using pip

pip install aiovkcom

To use VK API you need a registered app and login account in the social network.

  1. Sign up in vk.com
  2. Create standalone application.
  3. Save App ID.
  4. Use App ID, list of required permissions and user credentials to get access token.
  5. Use the access token to make method requests.

After signing up go to https://vk.com/dev/standalone and create application.

app_id = 'your App ID'

ImplicitSession

You can authenticate with VK API OAuth2 by passing user credentials and permissions to ImplicitSession.

from aiovkcom import ImplicitSession
from aiovkcom.permissions import bit_scope, PERMISSIONS

phone = '+1999123456'
password = 'user password'

session = await ImplicitSession(
    app_id=app_id,
    login=phone,  # set phone number or e-mail as login
    passwd=password,
    scope=bit_scope(PERMISSIONS),  # get all possible permissions
    v='5.101',  # set version for all requests
)

List of all permissions is available here: https://vk.com/dev/permissions.

Now you can execute API requests (see Executing API requests). After authentication you will get access token session.access_token. Save it to make requests later:

access_token = session.access_token

TokenSession

If you already have an access token you can instantiate TokenSession

from aiovkcom import TokenSession

session = TokenSession(access_token, v='5.101')

and execute requests.

Executing API requests

List of all methods is available here: https://vk.com/dev/methods.

from aiovkcom import API

api = API(session)

# current user's friends
friends = await api.friends.get()

# current user's groups
groups = await api.groups.get()

List of objects is available here: https://vk.com/dev/objects

License

aiovkcom is released under an BSD 2-Clause License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiovkcom-0.0.1.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

aiovkcom-0.0.1-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file aiovkcom-0.0.1.tar.gz.

File metadata

  • Download URL: aiovkcom-0.0.1.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.2

File hashes

Hashes for aiovkcom-0.0.1.tar.gz
Algorithm Hash digest
SHA256 76aef5d816996215d5d8530ddd738c047677d23b01b1f7e59338601dabb870ea
MD5 95e4551f28beb6b73dd2b91fecef5e0e
BLAKE2b-256 74e1608d3d4426e3c9538ec4ac80cd05567a2794652dd96f59d78c0dc21d2b06

See more details on using hashes here.

File details

Details for the file aiovkcom-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: aiovkcom-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 7.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.2

File hashes

Hashes for aiovkcom-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a5853d1a7fe6f496244e0a9d27e82556c6790de8d0fdd1ed98d35ab6d9e62ba5
MD5 c1439b0a831b5b205edeb28d0957d375
BLAKE2b-256 84ad3d9b3120c4a70aa216d8d25feb3546b676264d29d5d842de2ee4d9eeb27d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page