Start a local mock REST API server from an OpenAPI 3.x spec. Convention: reads ~/.openapi/spec.yaml by default.
Project description
apiup
⚡ Start a local mock REST API server from an OpenAPI 3.x spec — one command.
Install
pip install apiup
Or with uv:
uv tool install apiup
Convention: ~/.openapi/
apiup follows an XDG-style user convention — place your default spec at:
~/.openapi/spec.yaml
Optional config:
# ~/.openapi/config.yaml
port: 8080
host: 127.0.0.1
mode: mock
spec: ~/.openapi/spec.yaml
Usage
apiup # reads ~/.openapi/spec.yaml, starts on :8080
apiup --spec ./my-api.yaml # custom spec path
apiup --port 9000 # custom port
apiup --host 0.0.0.0 # bind all interfaces
apiup --list # list routes without starting server
apiup --version
apiup --help
Example session
$ apiup --list
Routes in: /home/roebi/.openapi/spec.yaml
GET / # Health check
GET /items # List all items
POST /items # Create an item
GET /items/{id} # Get item by ID
DELETE /items/{id} # Delete item by ID
5 route(s) found.
$ apiup
⚡ apiup 0.1.0 — My API v1.0.0
Spec : /home/roebi/.openapi/spec.yaml
Mode : mock
Listen: http://127.0.0.1:8080
Docs : http://127.0.0.1:8080/schema/swagger
Routes: 5
$ curl http://localhost:8080/items
[{"id": 1, "name": "Widget", "price": 9.99}]
Python API
from apiup.spec import load_spec, extract_routes
from apiup.mock import extract_mock_response
from apiup.server import build_mock_app, serve
from apiup.config import load_config
cfg = load_config(spec="./my-api.yaml", port=9000)
spec = load_spec(cfg.spec)
routes = extract_routes(spec)
app = build_mock_app(routes, spec)
serve(app, host=cfg.host, port=cfg.port)
Development
uv sync --all-extras
uv run pytest
uv run ruff check .
uv run ruff format .
License
MIT License — see LICENSE.
Part of the roebi agent-skills ecosystem.
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 apiup-0.2.0.tar.gz.
File metadata
- Download URL: apiup-0.2.0.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4b9506fbc3be56f01c977800c83b7d5be8d33df6b8da7f7e64432da346e8706
|
|
| MD5 |
596fc45e6f5afaefaf276399836b871d
|
|
| BLAKE2b-256 |
9718a67ff300eb770b511ff9f014f97f6d7875f191bc018d909db14bfbe152eb
|
File details
Details for the file apiup-0.2.0-py3-none-any.whl.
File metadata
- Download URL: apiup-0.2.0-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04c5f9f6811a7ca70d009a35327678275648c86089889298ba653709dc1e44fd
|
|
| MD5 |
64e14491c738ea3d5e224854022bde07
|
|
| BLAKE2b-256 |
46c7f6c8ac2149b2897faa58c3c3bdbb028484a9992e9510d4bf6a4f7cf916e4
|