You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

fwk-amigapython

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fwk-amigapython

Amiga Python framework — core runtime, configuration, and lifecycle management

pipPyPI
Version
2.13.0
Maintainers
1

fwk-amigapython

Amiga Python Framework — core runtime, configuration, and lifecycle management for Python microservices on the Amiga platform.

Overview

fwk-amigapython provides the foundational building blocks for Python services running on the Inditex Amiga platform:

  • Configuration management — environment-aware config loading with secrets resolution
  • Service lifecycle — graceful startup/shutdown, health checks, readiness probes
  • Observability — structured logging, metrics collection, distributed tracing hooks
  • Security — mTLS bootstrapping, token refresh, RBAC context propagation

Installation

pip install fwk-amigapython

Quick Start

from amigapython import AmigaApp, ServiceConfig

config = ServiceConfig.from_environment()
app = AmigaApp(config)

@app.route("/health")
def health():
    return {"status": "UP"}

app.run()

Documentation

Full documentation is available at amiga-python.docs.inditex.dev.

License

Apache 2.0 — see LICENSE for details.

Keywords

amiga

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts