An API wrapper around pyvimeo for common interactions with the Vimeo SDK with sane fields
defaults. Vimeo loves to return overly verbose responses.
Install Python Vimeo Utils:
python3 -m pip install python-vimeo-utils
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')
To get a list of all commands with descriptions simply run make
.
make env
make pip_install
make pip_install_editable
make pytest
make coverage
make open_coverage
If you experience any issues, please create an issue on GitHub.