Metadata-Version: 2.1
Name: sqlpyd
Version: 0.1.4
Summary: Validate raw content with pydantic for consumption by sqlite-utils.
Home-page: https://lawsql.com
License: MIT
Author: Marcelino G. Veloso III
Author-email: mars@veloso.one
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pydantic
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Legal Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Text Processing :: General
Classifier: Typing :: Typed
Requires-Dist: pydantic (>=1.10.4,<2.0.0)
Requires-Dist: python-dotenv (>=0.21.0,<0.22.0)
Requires-Dist: sqlite-utils (>=3.30,<4.0)
Project-URL: Documentation, https://github.com/justmars/sqlpyd
Project-URL: Repository, https://github.com/justmars/sqlpyd
Description-Content-Type: text/markdown

# sqlpyd

![Github CI](https://github.com/justmars/sqlpyd/actions/workflows/main.yml/badge.svg)

Validate raw content with pydantic for consumption by sqlite-utils.; utilized in the [LawSQL dataset](https://lawsql.com).

## Documentation

See [documentation](https://justmars.github.io/sqlpyd).

## Development

Checkout code, create a new virtual environment:

```sh
poetry add sqlpyd # python -m pip install sqlpyd
poetry update # install dependencies
poetry shell
```

Run tests:

```sh
pytest
```

