zainahmed-sdk
Official Python SDK for Zain Ahmed's Cloud Architecture & Platform API.
Installation
pip install zainahmed-sdk
Quickstart
Synchronous Usage
from zainahmed import ZainClient
client = ZainClient()
# Get verified engineer profile and credentials
profile = client.get_profile()
print(f"Name: {profile['name']}, Title: {profile['title']}")
# List case studies
projects = client.list_projects(category="kubernetes")
print(f"Projects found: {len(projects.get('projects', []))}")
# Natural Language Query (NLWeb)
answer = client.ask("What are Zain's core areas of cloud architecture?")
print(f"Answer: {answer['answer']}")
Asynchronous Usage
import asyncio
from zainahmed import AsyncZainClient
async def main():
async with AsyncZainClient() as client:
profile = await client.get_profile()
print(f"Connected to {profile['name']}")
asyncio.run(main())
License
MIT © Zain Ahmed
Release files for zainahmed-sdk 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| zainahmed_sdk-1.0.0.tar.gz | 3.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| zainahmed_sdk-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 8.2 kB
Release files / zainahmed_sdk-1.0.0.tar.gz
| Download URL | zainahmed_sdk-1.0.0.tar.gz |
|---|---|
| Size | 3.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3cd64a4f44c279d1bd589be7633fdfa30cad57fd40111bd16831c53355de980c
|
|
BLAKE2b-256 checksum How to use checksums |
01674bc9a0e2982d839396b06db6ac47af22277068d08bc6ee267d497e67df43
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.0
|
Release files / zainahmed_sdk-1.0.0-py3-none-any.whl
| Download URL | zainahmed_sdk-1.0.0-py3-none-any.whl |
|---|---|
| Size | 4.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f2c560eaa90c6a1b491eb29bcd7932520aeb430517ff219cdf76bb44e5ad3a0c
|
|
BLAKE2b-256 checksum How to use checksums |
358646d33ba088634e0d676e1e7c4b2838ab0af4250d41150edfeac0a8a90ba2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.0
|