Metadata-Version: 2.4
Name: pypida
Version: 0.1.8.5
Summary: PIDA: Serverless E2EE Messaging & File Sharing over Cloudflare and Backblaze
Author-email: Sigmapages <thilan89757@gmail.com>
License: LGPL-3.0-only
Project-URL: Homepage, https://github.com/sigmapages/pida
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: cryptography

# 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)
