Python SDK for the Semantik Client API
Project description
Semantik Python SDK
Python SDK for the Semantik Client API. Designed for Python 3.8+ applications.
Installation
pip install semantik-sdk
# or with uv:
uv pip install semantik-sdk
Quick Start
from semantik import Semantik
import base64
# Automatically reads from SEMANTIK_API_KEY environment variable (recommended)
# Set SEMANTIK_API_KEY in your .env file or environment
client = Semantik()
# Or override with explicit API key
client = Semantik(api_key="sk_your_api_key_here")
# List programs
programs_response = client.programs.list()
print(f"Found {len(programs_response['programs'])} programs")
# Get a specific program
program = client.programs.get(programs_response['programs'][0]['id'])
# Submit a candidate application
with open('resume.pdf', 'rb') as f:
cv_content = base64.b64encode(f.read()).decode('utf-8')
result = client.candidates.submit_application(
candidate={
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com"
},
program_id=program['id'],
step_id=program['steps'][0]['id'],
documents=[
{
"fieldName": "CV",
"content": cv_content,
"fileName": "john-doe-cv.pdf",
"mimeType": "application/pdf",
"encoding": "base64"
}
]
)
print(f"Application submitted: {result['applicationId']}")
print(f"Candidate ID: {result['candidateId']}")
# Get candidate status
status = client.candidates.get_status(result['candidateId'], include="applications,scores")
print(f"Candidate: {status['candidate']['firstName']} {status['candidate']['lastName']}")
# Move candidate to next step
move_result = client.programs.move_candidate(
program_id=program['id'],
candidate_id=result['candidateId'],
direction="next"
)
print(f"Moved from {move_result['movement']['from']['name']} to {move_result['movement']['to']['name']}")
Configuration
API Key
Set your API key as an environment variable (recommended):
export SEMANTIK_API_KEY=sk_your_api_key_here
Or pass it directly to the client:
client = Semantik(api_key="sk_your_api_key_here")
Base URL
The SDK defaults to production (https://gateway.semantikmatch.com). For local development:
client = Semantik(
api_key="sk_...",
base_url="http://localhost:9000"
)
Or set SEMANTIK_BASE_URL environment variable.
API Reference
Programs
client.programs.list()- List all programsclient.programs.get(program_id)- Get a specific programclient.programs.list_candidates(program_id, step_id=None, status=None, search=None, include=None, limit=None, cursor=None)- List candidates in a programclient.programs.move_candidate(program_id, candidate_id, direction="next"|"previous", from_step_id=None, to_step_id=None)- Move a candidate between steps
Candidates
client.candidates.submit_application(candidate, program_id, step_id, client_data=None, documents=None)- Submit a new applicationclient.candidates.get_status(candidate_id, include=None)- Get candidate status across all programsclient.candidates.get_applications(candidate_id, include=None)- Get all applications for a candidateclient.candidates.get_scores(candidate_id, include=None)- Get candidate scoresclient.candidates.enroll(candidate_id, program_id, step_id=None, send_email=None, email_template=None)- Enroll candidate in a program
Error Handling
from semantik import Semantik, ApiError
try:
program = client.programs.get(999)
except ApiError as e:
print(f"API Error {e.status}: {e}")
print(f"Path: {e.path}")
print(f"Response: {e.response}")
except Exception as e:
print(f"Unexpected error: {e}")
Type Hints
The SDK includes full type hints for better IDE support and type checking.
Support
For issues or questions, please contact support or visit the documentation.
Project details
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 semantik_sdk-0.1.3.tar.gz.
File metadata
- Download URL: semantik_sdk-0.1.3.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d4d38f9ca9d2173c70f92a20cbb39ec978346e0112d9220b738ce8d1c6c2dbc
|
|
| MD5 |
ba1182f97bd14c286f911c8fa14e7fd1
|
|
| BLAKE2b-256 |
bc03ae6551f2eb4aa59ef8ccd286120b2d34fa4e6f6e3de9c1be80bc40570424
|
File details
Details for the file semantik_sdk-0.1.3-py3-none-any.whl.
File metadata
- Download URL: semantik_sdk-0.1.3-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63daa1bd208bd79cf8de1acbcd6f667fe1a61a4eebab19cd64c8f72cfd2a998d
|
|
| MD5 |
6fa6f1da3ea740e18fc81ade03e7427a
|
|
| BLAKE2b-256 |
8922a0272af7e7c8569487ac33687abf41abbdec82404a7948e929bd65687162
|