EolasFlow Python SDK
Official Python client for the EolasFlow Voice AI API.
Installation
pip install eolasflow
Quick Start
from eolasflow import EolasFlow
client = EolasFlow(api_key="your-api-key")
# List your VoiceFlows
voiceflows = client.voiceflows.list()
for vf in voiceflows:
print(f"{vf.name} ({vf.status})")
# Make an outbound call
result = client.calls.create(
to_number="+353851234567",
from_number="+35319079387",
voiceflow_id="vf_abc123",
customer_data={"name": "John", "reason": "appointment reminder"},
)
# Create a contact
contact = client.contacts.create(
name="Jane Doe",
phone="+353851234567",
email="jane@example.com",
company="Acme Corp",
tags=["lead", "demo-requested"],
)
# Get call transcript and analysis
transcript = client.calls.get_transcript("call_abc123")
print(transcript.summary)
analysis = client.calls.get_analysis("call_abc123")
for item in analysis.action_items:
print(f"- {item['item']} ({item.get('priority', 'normal')})")
# Search contacts
results = client.contacts.list(search="John")
# Find contact by phone
contact = client.contacts.find_by_phone("+353851234567")
# Manage webhooks
webhook = client.webhooks.create(
url="https://your-app.com/webhooks/eolasflow",
events=["call.completed", "call.started"],
)
# Add contacts to a VoiceFlow for outbound
client.voiceflows.add_contacts("vf_abc123", [
{"phone": "+353851234567", "name": "John Doe"},
{"phone": "+353861234567", "name": "Jane Smith"},
])
Context Manager
with EolasFlow(api_key="your-api-key") as client:
calls = client.calls.list()
Async Support
from eolasflow.client import AsyncEolasFlow
async with AsyncEolasFlow(api_key="your-api-key") as client:
calls = client.calls.list()
contact = client.contacts.create(name="Jane", phone="+353851234567")
Resources
| Resource | Methods |
|---|---|
client.calls |
create, list, get, get_transcript, get_analysis, get_recording |
client.contacts |
create, get, find_by_phone, list, update, delete, bulk_import |
client.voiceflows |
list, get, get_stats, create, update, delete, start, pause, add_contacts |
client.webhooks |
create, list, delete |
client.phone_numbers |
list |
Error Handling
from eolasflow import EolasFlow, AuthenticationError, RateLimitError, NotFoundError
client = EolasFlow(api_key="your-api-key")
try:
call = client.calls.get("nonexistent")
except NotFoundError:
print("Call not found")
except RateLimitError as e:
print(f"Rate limited. Retry after {e.retry_after}s")
except AuthenticationError:
print("Invalid API key")
License
MIT
Release files for eolasflow 0.1.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 | |
|---|---|---|---|
| eolasflow-0.1.0.tar.gz | 7.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| eolasflow-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 18.4 kB
Release files / eolasflow-0.1.0.tar.gz
| Download URL | eolasflow-0.1.0.tar.gz |
|---|---|
| Size | 7.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
782073fada8caad6f221c1cfb9388ec0dfe4dbd64eb239fcda708a892329c91d
|
|
BLAKE2b-256 checksum How to use checksums |
1642174fae3a8b099c6c738172b430d1f046a5893a216c0c130627af33894425
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Apr 7, 2026.
Transparency logRelease files / eolasflow-0.1.0-py3-none-any.whl
| Download URL | eolasflow-0.1.0-py3-none-any.whl |
|---|---|
| Size | 11.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cd23dd197fa6e392a505701bffc55e82da53638d11d2daa359c3b9ae17fce6b0
|
|
BLAKE2b-256 checksum How to use checksums |
a3cd45db0436175d051527826917343013b1400f825ed7860b7adbce85e961b3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Apr 7, 2026.
Transparency log