add command line example

This commit is contained in:
j 2021-11-15 10:11:55 +00:00
parent e3adbbbbd0
commit d2e548fb92

View file

@ -5,13 +5,19 @@ You can use it to upload one or more files to your pandora instance.
No conversion is done on the client side. No conversion is done on the client side.
To upload/sync large repositories use pandora_client To upload/sync large repositories use pandora_client
You can also use pandora-upload as a python script: Upload a file from the command line:
``` sh
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:
``` python ``` python
import pandora_client import pandora_client
item_id = pandora_client.upload( item_id = pandora_client.upload(
'http://pandora/api/', 'http://pandora/api/',
['/home/example/Videos/video.mp4', ['/home/example/Videos/video.mp4'],
{ {
'title': 'This is an example', 'title': 'This is an example',
'date': '2021-11-15' 'date': '2021-11-15'