Python wrapper for the Vine API
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
import vinepy
vine = vinepy.API(username='email@host.com', password='leinternetz')
user = vine.user
followers = user.followers()
timeline = user.timeline()
## Tests
cd vinepy
nose2
cd vinepy
nose2 --with-coverage --coverage-report html
open htmlcov/index.html