Skip to content
Snippets Groups Projects
Commit 2467b974 authored by Stéphane Schoorens's avatar Stéphane Schoorens
Browse files

add example in README refs #29848

parent b75d042f
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,19 @@
python3 implementation of a pod client
pod is a video cms for educational https://github.com/EsupPortail/Esup-Pod
# Client API
all rest resources will be create on PodClient object and usable like that:
```
#!/usr/bin/env python3
pod_client = PodClient(HOST, API_KEY)
# fetch all videos
pod_client.videos.get()
# fetch video id 1
pod_client.videos.get(resource_id=1)
```
# build
`make build`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment