Mimicker – Your lightweight, Python-native HTTP mocking server.
Mimicker is a Python-native HTTP mocking server — no third-party runtime dependencies, ideal for integration tests and CI.
from mimicker.mimicker import mimicker, get
mimicker(8080).routes(
get("/hello").status(200).body({"message": "Hello, World!"})
)Or use a YAML config file — no Python needed:
routes:
- method: GET
path: /hello
status: 200
body:
message: Hello, World!mimicker serve --config stubs.yamlpip install mimickerFull docs at mimickerhq.github.io/mimicker
- Quickstart
- Stubbing Guide — YAML, Python, and CLI side-by-side
- Path & Query Params
- Dynamic Responses
- Docker
- GitHub Actions
- CLI Reference
- Python API

