Python SDK for the nahw-ai API
Project description
nahw-python
Python SDK for the nahw-ai REST API.
Installation
pip install nahw-python
Or install from source:
pip install git+https://github.com/Nahw-AI/nahw-python.git
Requires Python 3.10+
Quick Start
from nahw import NahwClient
client = NahwClient(api_key="nhw_...")
# List projects
projects = client.projects.list()
# Create a project
project = client.projects.create(
"My Project",
instructions="Label the sentiment of each text.",
num_workers_per_task=3,
payment_per_response=0.10,
)
# Add tasks
client.tasks.create(project["id"], fields={"text": "I love this product!"})
# Bulk create (up to 10k)
client.tasks.create_bulk(project["id"], [
{"fields": {"text": "Great service"}},
{"fields": {"text": "Terrible experience"}},
])
# Launch
client.projects.launch(project["id"])
Configuration
client = NahwClient(
api_key="nhw_...",
base_url="https://api.nahw.ai", # default
team_id="team_123", # optional, sets X-Team-Id header
timeout=30.0, # request timeout in seconds
)
The client supports context manager usage:
with NahwClient(api_key="nhw_...") as client:
projects = client.projects.list()
Resources
Projects
client.projects.list(page=1, statuses=["active", "paused"])
client.projects.list_shared()
client.projects.get("proj_123")
client.projects.create("Name", description="...", instructions="...")
client.projects.update("proj_123", name="New Name")
client.projects.delete("proj_123")
# Lifecycle
client.projects.launch("proj_123") # draft → active
client.projects.pause("proj_123") # active → paused
client.projects.resume("proj_123") # paused → active
client.projects.complete("proj_123") # → completed
client.projects.cancel("proj_123") # → cancelled
# Other
client.projects.clone("proj_123", name="Copy")
client.projects.check_eligibility("proj_123", "worker_456")
Tasks
client.tasks.list("proj_123", page=1, limit=50, complete=False, gold=True)
client.tasks.get("task_123")
client.tasks.create("proj_123", fields={"text": "Hello"})
client.tasks.create_with_response("proj_123", fields={...}, response={...})
client.tasks.create_bulk("proj_123", [{"fields": {...}}, ...])
client.tasks.create_from_csv("proj_123", [{"col1": "val1"}, ...])
client.tasks.update("task_123", is_complete=True)
client.tasks.delete("task_123")
client.tasks.set_gold_standard("task_123", answers={"q1": "a1"})
Responses
client.responses.list("task_123")
client.responses.submit("resp_123", data={"answer": "42"}, duration_ms=5000)
Reports
client.reports.create("proj_123", type="json") # also: csv, csv_aggregated, csv_flattened
client.reports.get_status("proj_123")
client.reports.list("proj_123")
client.reports.download("rpt_123", "output.json")
Error Handling
All API errors raise typed exceptions:
from nahw import (
NahwAPIError,
NahwValidationError, # 400
NahwAuthenticationError, # 401
NahwAccessDeniedError, # 403
NahwNotFoundError, # 404
NahwConflictError, # 409
)
try:
client.projects.get("nonexistent")
except NahwNotFoundError as e:
print(e.status_code) # 404
print(e.message)
except NahwAPIError as e:
print(f"Unexpected error: {e}")
Development
pip install -e ".[dev]"
pytest tests/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nahw_python-0.1.1.tar.gz.
File metadata
- Download URL: nahw_python-0.1.1.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6daffec8081b9ffc3a9ad0d5cfd34b8f78b8b2522cc4595277db07ac238758b6
|
|
| MD5 |
9f011a470eb147e3d6f74838a0c8b2f7
|
|
| BLAKE2b-256 |
d1e3333bb86aa3d258421f6b4b9fdbd17fd72454a8fee2817cb675199d00e6a3
|
Provenance
The following attestation bundles were made for nahw_python-0.1.1.tar.gz:
Publisher:
publish.yml on Nahw-AI/nahw-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nahw_python-0.1.1.tar.gz -
Subject digest:
6daffec8081b9ffc3a9ad0d5cfd34b8f78b8b2522cc4595277db07ac238758b6 - Sigstore transparency entry: 1140929002
- Sigstore integration time:
-
Permalink:
Nahw-AI/nahw-python@6988ecf98f494a19ec5ea5a4018e01c6a96aaea0 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/Nahw-AI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@6988ecf98f494a19ec5ea5a4018e01c6a96aaea0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nahw_python-0.1.1-py3-none-any.whl.
File metadata
- Download URL: nahw_python-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6905cdbdbece82285a16c58cfb64d7c7a3e0ada146e35e2b51848085059755b7
|
|
| MD5 |
86670d59eaba4dc768feb8d6d1b8a15d
|
|
| BLAKE2b-256 |
50d6d35d53c29bffb09ada1c66a27db11705abfa53f1749590fb844ae796277f
|
Provenance
The following attestation bundles were made for nahw_python-0.1.1-py3-none-any.whl:
Publisher:
publish.yml on Nahw-AI/nahw-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nahw_python-0.1.1-py3-none-any.whl -
Subject digest:
6905cdbdbece82285a16c58cfb64d7c7a3e0ada146e35e2b51848085059755b7 - Sigstore transparency entry: 1140929288
- Sigstore integration time:
-
Permalink:
Nahw-AI/nahw-python@6988ecf98f494a19ec5ea5a4018e01c6a96aaea0 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/Nahw-AI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@6988ecf98f494a19ec5ea5a4018e01c6a96aaea0 -
Trigger Event:
release
-
Statement type: