Synqly Python SDK (Typeless)
The synqly-typeless package provides a Python client for the Synqly platform where engine connector responses return plain dictionaries instead of typed Pydantic models. This gives you full flexibility to work with response data without schema constraints — ideal for custom mappings, dynamic integrations, and rapid prototyping.
The management API (accounts, integrations, mappings, tokens) remains fully typed.
This package is a drop-in replacement for the typed synqly SDK — usage is identical with the caveat that engine request and response payloads are generic (Dict[str, Any]) rather than Pydantic models.
If you aren't yet a Synqly customer, please schedule a demo.
Installation
pip install synqly-typeless
Quick Start
from synqly_typeless.management.client import SynqlyManagement
from synqly_typeless.engine.client import SynqlyEngine
# Management client — create accounts, integrations, mappings
mgmt = SynqlyManagement(token="<org-token>", base_url="https://api.synqly.com")
# Engine client — query data (responses are plain dicts)
engine = SynqlyEngine(token="<integration-token>", base_url="https://api.synqly.com")
# Query EDR endpoints — result is List[dict]
response = engine.edr.query_endpoints(limit=10)
for endpoint in response.result:
print(endpoint["device"]["hostname"])
# Query tickets
tickets = engine.ticketing.query_tickets(limit=5)
# Create a ticket
engine.ticketing.create_ticket(
name="my-ticket",
summary="Something needs attention",
priority="HIGH",
)
How It Differs from synqly
synqly (typed) |
synqly-typeless |
|
|---|---|---|
| Engine responses | Pydantic models | Dict[str, Any] |
| Management API | Typed | Typed |
| Response envelope | Typed (result, cursor, messages) |
Typed |
| Install side-by-side | ✓ | ✓ |
Both packages can be installed in the same environment without conflicts.
Documentation
- Synqly Documentation
- API Reference
- Adaptive Mapping
- Getting Started Guide
- Typed SDK Examples — usage patterns apply directly to this package
Release files for synqly-typeless 2.0.42
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| synqly_typeless-2.0.42.tar.gz | 1.4 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| synqly_typeless-2.0.42-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 4.5 MB
Release files / synqly_typeless-2.0.42.tar.gz
| Download URL | synqly_typeless-2.0.42.tar.gz |
|---|---|
| Size | 1.4 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cd632099f9c6336d00c3344f550db5ecbbce30c975a1cf18ba63ae301f74cb9c
|
|
BLAKE2b-256 checksum How to use checksums |
6515e999842b9e93681548da1e6cca40606d474e082c091f58ff82d981e7d68f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 25, 2026.
Transparency logRelease files / synqly_typeless-2.0.42-py3-none-any.whl
| Download URL | synqly_typeless-2.0.42-py3-none-any.whl |
|---|---|
| Size | 3.1 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
87bb69b55d25c0c18f125d736c4ed0a5c66689f4f8c076065c79dd20afda28f7
|
|
BLAKE2b-256 checksum How to use checksums |
3b7a93f8b324359ac35be68d7438bf05dbfa830d0ac3931260d3b0de552de365
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 25, 2026.
Transparency log