Metadata-Version: 2.1
Name: healthcards
Version: 0.1.2
Summary: Python parser for https://spec.smarthealth.cards
Home-page: https://github.com/rechner/py-health-cards
Author: Rechner Fox
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jwcrypto (>=0.9.1)

# py-health-cards

A python library for decoding the [SMART health card standard](https://smarthealth.cards/), used for documenting
COVID-19 vaccination history or test results as a QR code as a JWT in a verifiable manner, and is being issued by
several localities (e.g. California, Quebec).


## Example

```python
from healthcards import parser
jws_str = parser.decode_qr_to_jws("shc:/...")
jws = parser.JWS(jws_str)
jws.verified
jws.as_dict()
```


