datasette-no-truncate

Tiny Datasette plugin to disable text truncation in table displays


License
Apache-2.0
Install
pip install datasette-no-truncate==0.1

Documentation

datasette-no-truncate

PyPI Changelog Tests License

Tiny Datasette plugin to disable text truncation in table displays

Installation

Install this plugin in the same environment as Datasette.

datasette install datasette-no-truncate

Usage

Once installed, text values should no longer be truncated when a table is displayed.

Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:

cd datasette-no-truncate
python3 -m venv venv
source venv/bin/activate

Now install the dependencies and test dependencies:

pip install -e '.[test]'

To run the tests:

pytest