Metadata-Version: 2.4
Name: openkitx403-client
Version: 0.1.0
Summary: Python client SDK for OpenKitx403 wallet authentication
License: MIT
Keywords: solana,wallet,authentication,client,web3
Author: OpenKitx403
Author-email: your.email@example.com
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: solana (>=0.30.2,<0.31.0)
Project-URL: Documentation, https://github.com/youropenkitx403/openkitx403#readme
Project-URL: Homepage, https://github.com/youropenkitx403/openkitx403
Project-URL: Repository, https://github.com/youropenkitx403/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.

