Imitatus

A sophisticated mock HTTP server for modern development and testing

Python 3.8+ MIT License Zero Dependencies

Features

๐Ÿ” Authentication

Built-in token-based authentication system for secure API testing

๐ŸŽฏ Complete HTTP Support

Full HTTP method coverage including GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS

๐Ÿ’พ State Management

Intelligent in-memory state management for realistic API simulation

๐Ÿ“Š Request Logging

Comprehensive request logging and analytics for debugging

๐Ÿ›ก๏ธ CORS Support

Cross-Origin Resource Sharing support out of the box

๐Ÿงช Testing Ready

Includes ready-to-use test collection for immediate testing

Installation

pip install imitatus

Quick Start

from imitatus.server import run_server

# Start the server
run_server(port=8000)

Basic Usage

# Authenticate
curl -X POST http://localhost:8000/api/login \
  -H "Content-Type: application/json" \
  -d '{"username": "admin", "password": "password"}'

# Make requests
curl http://localhost:8000/api/items \
  -H "Authorization: Bearer your-token-here"