adamobeng / wddbfs

webdavfs provider which can read the contents of sqlite databases
MIT License
165 stars 3 forks source link

Add missing dependencies #3

Closed simonw closed 8 months ago

simonw commented 8 months ago

Refs:

simonw commented 8 months ago

Manually tested it like this:

cd /tmp
mkdir vv
cd vv
python -m venv venv
source venv/bin/activate
pip install https://github.com/adamobeng/wddbfs/archive/38fd8c0f5bb3fb79fca734be8f4a6adb44213a29.zip
wddbfs --help

This output the --help text, demonstrating that the installation succeeded:

usage: wddbfs [-h] [-c CONFIG] [--host HOST] [--port PORT]
              [--log-level LOG_LEVEL] [--formats FORMATS] [--timeout TIMEOUT]
              [--anonymous] [--username USERNAME] [--password PASSWORD]
              [--db-path DB_PATH [DB_PATH ...]] [--allow-abspath]

options:
  -h, --help            show this help message and exit
  -c CONFIG, --config CONFIG
                        config file path
  --host HOST
  --port PORT
  --log-level LOG_LEVEL
  --formats FORMATS
  --timeout TIMEOUT
  --anonymous           allow access without authentication
  --username USERNAME
  --password PASSWORD
  --db-path DB_PATH [DB_PATH ...]
                        paths to sqlite database files
  --allow-abspath       make it possible to access any database on the host
                        filesystem by specifying its absolute path relative to
                        the WebDAV root (e.g.
                        /mount/webdav/absolute/path/on/host/fs/to/db.sqlite)
adamobeng commented 8 months ago

lgtm, with thanks