Socket
Socket
Sign inDemoInstall

vk7

Package Overview
Dependencies
1
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vk7

Framework for extract data from vk.com (russian social network).


Maintainers
1

Readme

================================================================ Framework for extract data from vk.com (russian social network).

This is a framework for extract data from vk.com (russian social network). The goal is to give helpful interface for work with api and extracting data.

Quickstart

Install

.. code:: bash

pip install vk7

Usage

.. code:: python

>>> from vk7 import Vk
>>>
>>> vk = VK('username', 'password', 'client_id')
>>> vk.users.get(user_ids='1,2')
{'response': [{'id': 1, 'first_name': 'Павел', 'last_name': 'Дуров'}, {'id': 2, 'first_name': 'Александра', 'last_name': 'Владимирова'}]}

>>>
>>> items = vk.groups.getMembers(group_id=1, fields='bdate,sex')
>>> item = next(items)
>>> item
{'id': 5, 'first_name': 'Илья', 'last_name': 'Перекопский', 'sex': 2, 'bdate': '18.11'}

See https://vk.com/dev/methods for detailed API guide.

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc