Metadata-Version: 2.4
Name: pypida
Version: 0.1.2
Summary: PIDA Protocol - Private Inbox Data API for Python
Home-page: https://github.com/yourusername/pypida
Author: Sigmapages
Author-email: Sigmapages <thilan89757@gmail.com>
Project-URL: Homepage, https://github.com/sigmapages/pida
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
Requires-Dist: requests
Requires-Dist: cryptography
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# PyPIDA v0.1.2

Secure E2EE messaging protocol with Deterministic Identity. Optimized for Mobile.

## Quick Start
```python
from pypida.core import PIDA

# 1. Initialize (Auto-load or Create)
URL = "[https://your-relay.workers.dev](https://your-relay.workers.dev)"
client = PIDA.load_local(URL) or PIDA.create(URL)

print(f"Identity: {client.id}")

# 2. Encrypt for a peer
encrypted_msg = client.encrypt("Hello PIDA!", peer_public_key_pem)
