Metadata-Version: 2.4
Name: pd-code-strong-sanity
Version: 0.0.1
Summary: Check if a pd_code represents a valid knot (with mandatory guarantee of an existing planar layout scheme)
License: MIT
License-File: LICENSE
Author: GGN_2015
Author-email: neko@jlulug.org
Requires-Python: >=3.10
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.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: pd_code_to_diagram
Description-Content-Type: text/markdown

# pd_code_strong_sanity
Check if a pd_code represents a valid knot (with mandatory guarantee of an existing planar layout scheme)

## Install

```bash
pip install pd-code-strong-sanity
```

## Usage

```python
import pd_code_strong_sanity

pd_code = [
    [1, 2, 1, 2]
]
print(pd_code_strong_sanity.sanity(pd_code)) # False
```

