The filebrowser-client
is an async client CLI and library for the Filebrowser API.
The easiest way to install the filebrowser-client
is to use pip
:
pip3 install filebrowser-client
- Download a remote file or a directory
- Upload a file or a directory to a remote location
- Delete a file or a directory from a remote location
The filebrowser-client
provides a cli client and a library to interact with the Filebrowser
API.
Run filebrowser-client --help
to see the global options and the available commands.
filebrowser-client --help
Usage: filebrowser-client [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
download Download a file or a directory from a remote location
upload Upload a file or a directory to a remote location
delete Delete a file or a directory from a remote location
import asyncio
from filebrowser_client import FilebrowserClient
client = FilebrowserClient("http://localhost:8080", "admin", "admin")
asyncio.run(client.connect())
asyncio.run(client.download("/path/to/file", "/path/to/destination"))
This project is licensed under the MIT License
The filebrowser-client
is developed using poetry
and pre-commit
.
poetry install
pre-commit install
poetry build