A client CLI utility for Datasette instances
  • Python 99.7%
  • Just 0.3%
Find a file
2022-11-22 01:57:06 +00:00
.github/workflows Initial library structure 2022-11-22 01:57:06 +00:00
dclient Initial library structure 2022-11-22 01:57:06 +00:00
tests Initial library structure 2022-11-22 01:57:06 +00:00
.gitignore Initial library structure 2022-11-22 01:57:06 +00:00
LICENSE Initial library structure 2022-11-22 01:57:06 +00:00
README.md Initial library structure 2022-11-22 01:57:06 +00:00
setup.py Initial library structure 2022-11-22 01:57:06 +00:00

dclient

PyPI Changelog Tests License

A client CLI utility for Datasette instances

Installation

Install this tool using pip:

pip install dclient

Usage

For help, run:

dclient --help

You can also use:

python -m dclient --help

Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

cd dclient
python -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest