Metadata-Version: 2.4
Name: eu-licence-validator
Version: 0.1.27
Summary: European licence plate validation. Single Go core compiled to WebAssembly, bundled for Python.
Author: TrueJacobG
License: MIT
Project-URL: Homepage, https://github.com/TrueJacobG/eu-licence-validator
Project-URL: Repository, https://github.com/TrueJacobG/eu-licence-validator
Project-URL: Issues, https://github.com/TrueJacobG/eu-licence-validator/issues
Keywords: licence,license,plate,european,eu,validation,wasm
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: wasmtime>=14.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"

# eu-licence-validator (Python)

European licence plate validation for Python, powered by a shared Go/WebAssembly core.

## Install

```bash
pip install eu-licence-validator
```

## Usage

```python
from eu_licence_validator import is_valid

is_valid("WPI 1234X", "PL")   # True
is_valid("AA-123-SS", "FR")   # False
```
