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 protected]', 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