Metadata-Version: 2.1
Name: sqlite-comprehend
Version: 0.1a0
Summary: Tools for running data in a SQLite database through AWS Comprehend
Home-page: https://github.com/simonw/sqlite-comprehend
Author: Simon Willison
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/simonw/sqlite-comprehend/issues
Project-URL: CI, https://github.com/simonw/sqlite-comprehend/actions
Project-URL: Changelog, https://github.com/simonw/sqlite-comprehend/releases
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: boto3
Requires-Dist: sqlite-utils
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# sqlite-comprehend

[![PyPI](https://img.shields.io/pypi/v/sqlite-comprehend.svg)](https://pypi.org/project/sqlite-comprehend/)
[![Changelog](https://img.shields.io/github/v/release/simonw/sqlite-comprehend?include_prereleases&label=changelog)](https://github.com/simonw/sqlite-comprehend/releases)
[![Tests](https://github.com/simonw/sqlite-comprehend/workflows/Test/badge.svg)](https://github.com/simonw/sqlite-comprehend/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/sqlite-comprehend/blob/master/LICENSE)

Tools for running data in a SQLite database through AWS Comprehend

## Installation

Install this tool using `pip`:

    pip install sqlite-comprehend

## Usage

For help, run:

    sqlite-comprehend --help

You can also use:

    python -m sqlite_comprehend --help

## Development

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

    cd sqlite-comprehend
    python -m venv venv
    source venv/bin/activate

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
