huvrdata / huvr-client

HUVR client
BSD 2-Clause "Simplified" License
5 stars 1 forks source link

add inspection media upload / download #20

Closed david-wolgemuth closed 11 months ago

david-wolgemuth commented 11 months ago
from huvr_client import get_huvr_client
from huvr_client.media import download_inspection_media, upload_inspection_media

client = get_huvr_client(...)
upload_inspection_media(client, filepath="image.png", project_id=24)

...

download_inspection_media(client, media_id=1234, directory=".")