Skip to content
vic

davoclavo/vinepy

[Deprecated] Python wrapper for the Vine API

davoclavo/vinepy.json
{
"createdAt": "2013-07-29T19:25:41Z",
"defaultBranch": "master",
"description": "[Deprecated] Python wrapper for the Vine API",
"fullName": "davoclavo/vinepy",
"homepage": "",
"language": "Python",
"name": "vinepy",
"pushedAt": "2016-05-02T00:41:59Z",
"stargazersCount": 35,
"topics": [],
"updatedAt": "2022-04-12T07:24:49Z",
"url": "https://github.com/davoclavo/vinepy"
}

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

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