Skip to content

Latest commit

 

History

History
72 lines (50 loc) · 1.57 KB

README.md

File metadata and controls

72 lines (50 loc) · 1.57 KB

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