vinepy

Python wrapper for the Vine Private API


Keywords
vine, library, api, wrapper
License
MIT
Install
pip install vinepy==0.6.3

Documentation

vinepy

Python wrapper for the Vine API

Installation

From pip

pip install vinepy

From source

git clone https://github.com/davoclavo/vinepy.git
cd vinepy
pip install -r dev-requirements.txt
python setup.py install

Requirements

Usage

Development

Examples

import vinepy

vine = vinepy.API(username='email@host.com', password='leinternetz')
user = vine.user
followers = user.followers()
timeline = user.timeline()

 Tests

Quick run tests

cd vinepy
nose2

Coverage

cd vinepy
nose2 --with-coverage --coverage-report html
open htmlcov/index.html

Acknowledgements