Metadata-Version: 1.0
Name: vkontakte
Version: 0.9.1
Summary: vk.com (aka vkontakte.ru) API wrapper
Home-page: http://bitbucket.org/kmike/vkontakte/
Author: Mikhail Korobov
Author-email: kmike84@gmail.com
License: MIT license
Download-URL: http://bitbucket.org/kmike/vkontakte/get/tip.zip
Description: =========
        vkontakte
        =========
        
        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 vkontakte
        
        Usage
        =====
        
        ::
        
            >>> import vkontakte
            >>> vk = vkontakte.API('my_api_id', 'my_api_secret')
            >>> print vk.getServerTime()
            1282689362
        
            >>> profiles = vk.getProfiles(uids='1,2', fields='education')
            >>> pavel = profiles[0]
            >>> print pavel['last_name'], pavel['university_name']
            Дуров СПбГУ
        
        All API methods should be supported.
        
        See http://bit.ly/9Nzc8h for detailed API help.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
