|
| 1 | +# Adapters |
| 2 | + |
| 3 | +The `adapters` module provides concrete implementations of external system integrations following the Ports & Adapters pattern. Each adapter directory exposes a `ports.py` (abstract interface) and an `adapters.py` (concrete implementation). |
| 4 | + |
| 5 | +## Submodules |
| 6 | + |
| 7 | +| Adapter | Description | |
| 8 | +|---|---| |
| 9 | +| [Base SQLAlchemy](base.md) | Shared SQLAlchemy session management and base CRUD adapter | |
| 10 | +| [Redis](redis.md) | Redis cache and key-value store adapter | |
| 11 | +| [PostgreSQL](postgres.md) | PostgreSQL database adapter via SQLAlchemy | |
| 12 | +| [SQLite](sqlite.md) | SQLite database adapter via SQLAlchemy | |
| 13 | +| [StarRocks](starrocks.md) | StarRocks analytical database adapter via SQLAlchemy | |
| 14 | +| [Kafka](kafka.md) | Apache Kafka message streaming adapter | |
| 15 | +| [Keycloak](keycloak.md) | Keycloak identity and access management adapter | |
| 16 | +| [MinIO](minio.md) | MinIO object storage adapter | |
| 17 | +| [ScyllaDB](scylladb.md) | ScyllaDB/Cassandra wide-column store adapter | |
| 18 | +| [Elasticsearch](elasticsearch.md) | Elasticsearch search engine adapter | |
| 19 | +| [Temporal](temporal.md) | Temporal workflow orchestration adapter | |
| 20 | +| [Email](email.md) | Email service adapter | |
| 21 | +| [Payment Gateways](payment_gateways.md) | Internet payment gateway adapters (Parsian Shaparak) | |
| 22 | + |
| 23 | +## Source Code |
| 24 | + |
| 25 | +📁 Location: `archipy/adapters/` |
| 26 | + |
| 27 | +🔗 [Browse Source](https://github.com/SyntaxArc/ArchiPy/tree/master/archipy/adapters) |
| 28 | + |
| 29 | +## API Stability |
| 30 | + |
| 31 | +| Adapter | Status | Notes | |
| 32 | +|---|---|---| |
| 33 | +| Base SQLAlchemy | 🟢 Stable | Production-ready | |
| 34 | +| Redis | 🟢 Stable | Production-ready | |
| 35 | +| PostgreSQL | 🟢 Stable | Production-ready | |
| 36 | +| SQLite | 🟢 Stable | Production-ready | |
| 37 | +| StarRocks | 🟡 Beta | API may change | |
| 38 | +| Kafka | 🟢 Stable | Production-ready | |
| 39 | +| Keycloak | 🟢 Stable | Production-ready | |
| 40 | +| MinIO | 🟢 Stable | Production-ready | |
| 41 | +| ScyllaDB | 🟢 Stable | Production-ready | |
| 42 | +| Elasticsearch | 🟢 Stable | Production-ready | |
| 43 | +| Temporal | 🟢 Stable | Production-ready | |
| 44 | +| Email | 🟢 Stable | Production-ready | |
| 45 | +| Payment Gateways | 🟢 Stable | Production-ready | |
0 commit comments