Go to file
j 6bfa02bd67 fix import, closes #1 2023-06-07 22:49:35 +00:00
pandora_upload pandora-upload 2021-11-15 09:42:49 +00:00
.editorconfig pandora-upload 2021-11-15 09:42:49 +00:00
.gitignore pandora-upload 2021-11-15 09:42:49 +00:00
README.md fix import, closes #1 2023-06-07 22:49:35 +00:00
setup.py pandora-upload 2021-11-15 09:42:49 +00:00

README.md

pandora-upload

pandora_upload is a commandline client for pan.do/ra. You can use it to upload one or more files to your pandora instance. No conversion is done on the client side. To upload/sync large repositories use pandora_client

Upload a file from the command line:

pandora-upload -h http://pandora/api/ -m "title=This is an example" -m "date=2021-11-15" /home/example/Videos/video.mp4

or you can use pandora-upload in a python script:

import pandora_upload
item_id = pandora_upload.upload(
    'http://pandora/api/',
    ['/home/example/Videos/video.mp4'],
    {
        'title': 'This is an example',
        'date': '2021-11-15'
    }
)