Metadata-Version: 2.4
Name: dsr-verify
Version: 1.0.0
Summary: Verification library for DSR/1.0 production incident receipts
License: MIT
Project-URL: Homepage, https://standard.deja.dev/v1
Project-URL: Repository, https://github.com/BeWallow/dsr-verify
Project-URL: Documentation, https://standard.deja.dev/v1
Keywords: dsr,deja,receipt,soc2,audit,verify
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# dsr-verify (Python)

Python implementation of the DSR/1.0 receipt verifier. See the [repository root README](https://github.com/BeWallow/dsr-verify) for install instructions and usage.

```bash
pip install dsr-verify
```

```python
from dsr_verify import verify_receipt

result = verify_receipt(receipt_dict)
print(result["valid"])
```
