Metadata-Version: 2.0
Name: vklancer
Version: 1.4.0
Summary: Simple usage vk.com API.
Home-page: https://github.com/pyvim/vklancer
Author: Vitalii Maslov
Author-email: me@pyvim.com
License: MIT
Download-URL: https://github.com/pyvim/vklancer/tarball/master
Keywords: vk.com,API,vklancer
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Dist: requests

VKLancer
========

Simple usage `API vk.com <https://vk.com/dev>`__.

Usage
-----

.. code:: python

    from vklancer import api

    vk = api.API('your access token')
    response = vk.users.get(user_ids=1)

    print(response)

    {'response': [{'last_name': 'Дуров', 'id': 1, 'first_name': 'Павел'}]}

Installation
------------

``pip install vklancer``

Source
------

`GitHub <https://github.com/pyvim/vklancer>`__


