python-vimeo-utils

Wrapper functions around pyvimeo for common interactions with the Vimeo SDK.


License
MIT
Install
pip install python-vimeo-utils==0.1.0

Documentation

Python Vimeo Utils

Coverage

Overview

An API wrapper around pyvimeo for common interactions with the Vimeo SDK with sane fields defaults. Vimeo loves to return overly verbose responses.

Installation

Install Python Vimeo Utils:

python3 -m pip install python-vimeo-utils

Usage

import vimeo
from vimeo_utils import VimeoAPIClient

vclient = vimeo.VimeoClient(
    token="VIMEO_ACCESS_TOKEN",
    key="VIMEO_CLIENT_ID",
    secret="VIMEO_CLIENT_SECRET",
)

vapi_client = VimeoAPIClient(vclient)

vapi_client.get_video('/videos/1234567890')

Development

To get a list of all commands with descriptions simply run make.

make env
make pip_install
make pip_install_editable

Testing

make pytest
make coverage
make open_coverage

Issues

If you experience any issues, please create an issue on GitHub.