Metadata-Version: 2.4
Name: openkitx403-client
Version: 0.1.2
Summary: Python client SDK for OpenKitx403 wallet authentication
License: MIT
Author: OpenKitx403 Contributors
Author-email: team@openkitx403.dev
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: base58 (>=2.1.1,<3.0.0)
Requires-Dist: pynacl (>=1.5.0,<2.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: solders (>=0.18.1,<0.19.0)
Project-URL: Documentation, https://openkitx403.github.io/openkitx403-docs
Project-URL: Homepage, https://www.openkitx403.dev
Project-URL: Repository, https://github.com/openkitx403/openkitx403
Description-Content-Type: text/markdown

# openkitx403-client (Python)

Python client SDK for OpenKitx403 wallet authentication.

## Installation

\`\`\`bash
pip install openkitx403-client
\`\`\`

## Usage

\`\`\`python
from solana.keypair import Keypair
from openkitx403_client import OpenKit403Client

keypair = Keypair.generate()
client = OpenKit403Client(keypair)

response = client.authenticate('https://api.example.com/protected')
print(response.json())
\`\`\`

See USAGE_EXAMPLES.md for complete examples.

