Metadata-Version: 2.1
Name: openiap-edge
Version: 0.0.18
Summary: Simple openiap api wrapper using proto
Home-page: https://github.com/openiap/pyapi
Author: OpenIAP ApS / Allan Zimmerman
Author-email: OpenIAP ApS / Allan Zimmerman <info@openiap.io>
Project-URL: Homepage, https://github.com/openiap/rustapi/tree/main/python
Project-URL: Bug Tracker, https://discourse.openiap.io/c/issues-and-feature-requests
Project-URL: Funding, https://github.com/sponsors/skadefro
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Sure, go a head, read me...
setup default credentials
```bash
export apiurl=grpc://grpc.app.openiap.io:443
# username/password
export OPENIAP_USERNAME=username
export OPENIAP_PASSWORD=password
# or better, use a jwt token ( open https://app.openiap.io/jwtlong and copy the jwt value)
export OPENIAP_JWT=eyJhbGciOiJI....
```

test python
```bash
rm -rf build dist lib openiap/lib && mkdir lib && cp ../target/lib/* ./openiap/lib && python setup.py sdist # python -m build --wheel
pip uninstall openiap -y && pip install dist/openiap_edge-0.0.18.tar.gz && python test.py
```
