Name | api-mocker JSON |
Version |
0.4.0
JSON |
| download |
home_page | None |
Summary | 🚀 The Ultimate API Development Acceleration Tool - 3000+ Downloads! Production-ready FastAPI mock server with AI-powered generation, scenario-based mocking, smart response matching, enhanced analytics, comprehensive testing framework, and advanced mock response management system. |
upload_time | 2025-07-24 17:32:11 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT License
Copyright (c) 2024 sherin joseph roy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
api-mocking
mock-server
development-tools
fastapi
testing
microservices
api-testing
swagger
openapi
postman
rest-api
http-mocking
development-acceleration
api-development
backend-testing
api-simulation
mock-api
api-prototyping
integration-testing
web-development
cli
devops
analytics
rate-limiting
caching
authentication
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# API-Mocker: The Ultimate API Development Acceleration Tool
[](https://badge.fury.io/py/api-mocker)
[](https://pepy.tech/project/api-mocker)
[](https://opensource.org/licenses/MIT)
[](https://www.python.org/downloads/)
**The Industry-Standard, Production-Ready, FREE API Mocking & Development Acceleration Tool**
API-Mocker eliminates API dependency bottlenecks and accelerates development workflows for all developers. With **1500+ downloads** and growing, it's the most comprehensive free API mocking solution available.
## 🚀 Quick Start
```bash
# Install API-Mocker
pip install api-mocker
# Create your first mock API
api-mocker init --name my-api
api-mocker start --config my-api/config/api-mock.yaml
# Test your API
curl http://127.0.0.1:8000/api/health
```
## ✨ Key Features
### 🎯 Core Functionality
- **Fast Mock Server** - Production-ready FastAPI-based server
- **Dynamic Responses** - Template-based response generation
- **Multi-Format Support** - YAML, JSON, TOML configurations
- **Hot Reloading** - Real-time configuration updates
- **Plugin Architecture** - Extensible and customizable
### 📊 Analytics & Monitoring
- **Real-time Dashboard** - Beautiful web interface with Chart.js
- **Performance Metrics** - Response times, throughput, error rates
- **Request Tracking** - Detailed request/response logging
- **Export Capabilities** - JSON/CSV data export
- **WebSocket Updates** - Live data streaming
### 🛡️ Enterprise Features
- **Rate Limiting** - Sliding window algorithm with per-client tracking
- **Caching System** - LRU/FIFO eviction with TTL support
- **JWT Authentication** - Role-based access control
- **Health Monitoring** - System health checks (DB, memory, disk)
- **Middleware Support** - Request/response processing pipeline
### 🔄 Import/Export
- **OpenAPI/Swagger** - Full specification support
- **Postman Collections** - Import/export compatibility
- **Custom Formats** - Extensible format support
- **Schema Validation** - Automatic validation
## 📋 CLI Commands
API-Mocker provides a comprehensive CLI with 15+ commands:
```bash
# Server Management
api-mocker start --config config.yaml
api-mocker init --name my-api
# Import/Export
api-mocker import-spec swagger.json --output mock.yaml
api-mocker export config.yaml --format openapi
# Analytics & Monitoring
api-mocker analytics dashboard
api-mocker analytics summary --hours 24
api-mocker analytics export --output analytics.json
# Advanced Features
api-mocker advanced rate-limit --config rate-limit.yaml
api-mocker advanced cache --enable
api-mocker advanced auth --config auth.yaml
api-mocker advanced health
# Testing & Recording
api-mocker test --config config.yaml
api-mocker record https://api.example.com --output recorded.json
api-mocker replay recorded.json
# Plugin Management
api-mocker plugins --list
```
## 📊 Analytics Dashboard
Launch a beautiful real-time analytics dashboard:
```bash
api-mocker analytics dashboard
# Open: http://127.0.0.1:8080
```
**Features:**
- Real-time metrics visualization
- Interactive charts (Chart.js)
- WebSocket updates
- Request/response tracking
- Performance monitoring
## 🛡️ Advanced Features
### Rate Limiting
```bash
api-mocker advanced rate-limit --config rate-limit.yaml
```
```yaml
# rate-limit.yaml
rate_limit:
enabled: true
requests_per_minute: 60
requests_per_hour: 1000
burst_size: 10
```
### Caching System
```bash
api-mocker advanced cache --enable
```
```yaml
# cache-config.yaml
cache:
enabled: true
ttl_seconds: 300
max_size: 1000
strategy: "lru"
```
### Authentication
```bash
api-mocker advanced auth --config auth.yaml
```
```yaml
# auth.yaml
auth:
enabled: true
secret_key: "your-secret-key"
algorithm: "HS256"
token_expiry_hours: 24
require_auth:
- "/api/admin/*"
- "/api/users/*"
```
## 📝 Configuration Examples
### Basic Configuration
```yaml
# basic-config.yaml
server:
host: "127.0.0.1"
port: 8000
debug: true
routes:
- method: "GET"
path: "/api/health"
response:
status_code: 200
body:
status: "healthy"
timestamp: "{{ datetime.now().isoformat() }}"
version: "1.0.0"
- method: "GET"
path: "/api/users"
response:
status_code: 200
body:
users:
- id: 1
name: "John Doe"
email: "john@example.com"
- id: 2
name: "Jane Smith"
email: "jane@example.com"
```
### Production Configuration
```yaml
# production-config.yaml
server:
host: "0.0.0.0"
port: 8000
debug: false
# Rate limiting
rate_limit:
enabled: true
requests_per_minute: 100
requests_per_hour: 5000
# Caching
cache:
enabled: true
ttl_seconds: 600
max_size: 5000
# Authentication
auth:
enabled: true
secret_key: "${JWT_SECRET_KEY}"
require_auth:
- "/api/admin/*"
- "/api/sensitive/*"
# Analytics
analytics:
enabled: true
retention_days: 30
export_enabled: true
```
## 🎯 Use Cases
### Development Teams
- **Frontend Development** - Mock backend APIs during development
- **Mobile Development** - Test mobile apps with mock APIs
- **Microservices** - Mock service dependencies
- **API Testing** - Comprehensive API testing scenarios
### DevOps & QA
- **CI/CD Pipelines** - Automated testing with mock APIs
- **Performance Testing** - Load testing with controlled responses
- **Integration Testing** - Test service integrations
- **Staging Environments** - Production-like testing environments
### API Design
- **API Prototyping** - Rapid API design and iteration
- **Documentation** - Generate API documentation from mocks
- **Client SDKs** - Test client libraries with mock APIs
- **API Versioning** - Test multiple API versions
## 📈 Performance Metrics
### Benchmark Results
- **Startup Time**: < 2 seconds
- **Request Latency**: < 10ms average
- **Memory Usage**: < 50MB typical
- **Concurrent Requests**: 1000+ supported
- **Configuration Hot Reload**: < 1 second
### Scalability Features
- **Horizontal Scaling** - Multiple server instances
- **Load Balancing** - Built-in load distribution
- **Resource Optimization** - Efficient memory usage
- **Connection Pooling** - Optimized database connections
## 🔌 Plugin System
### Built-in Plugins
- **Response Generator** - Dynamic response generation
- **Authentication** - JWT and OAuth support
- **Data Sources** - Database and external data integration
- **Custom Middleware** - Request/response processing
### Plugin Development
```python
from api_mocker.plugins import Plugin
class CustomPlugin(Plugin):
def process_request(self, request):
# Custom request processing
return request
def process_response(self, response):
# Custom response processing
return response
```
## 🚀 Getting Started Checklist
- [ ] **Install API-Mocker**: `pip install api-mocker`
- [ ] **Initialize Project**: `api-mocker init --name my-api`
- [ ] **Configure Routes**: Edit `config/api-mock.yaml`
- [ ] **Start Server**: `api-mocker start --config config/api-mock.yaml`
- [ ] **Test Endpoints**: `curl http://127.0.0.1:8000/api/health`
- [ ] **View Analytics**: `api-mocker analytics dashboard`
- [ ] **Configure Advanced Features**: `api-mocker advanced health`
- [ ] **Run Tests**: `api-mocker test --config config/api-mock.yaml`
- [ ] **Import Existing APIs**: `api-mocker import-spec swagger.json`
- [ ] **Export Configuration**: `api-mocker export config.yaml --format openapi`
## 📞 Support & Community
### Documentation
- **Complete Guide**: [GitHub Wiki](https://github.com/Sherin-SEF-AI/api-mocker/wiki)
- **Quick Start**: [docs/QUICKSTART.md](https://github.com/Sherin-SEF-AI/api-mocker/blob/main/docs/QUICKSTART.md)
- **API Reference**: [docs/COMPLETE_GUIDE.md](https://github.com/Sherin-SEF-AI/api-mocker/blob/main/docs/COMPLETE_GUIDE.md)
### Community
- **GitHub**: [github.com/Sherin-SEF-AI/api-mocker](https://github.com/Sherin-SEF-AI/api-mocker)
- **Issues**: [GitHub Issues](https://github.com/Sherin-SEF-AI/api-mocker/issues)
- **Discussions**: [GitHub Discussions](https://github.com/Sherin-SEF-AI/api-mocker/discussions)
- **Email**: sherin.joseph2217@gmail.com
### Contributing
- **Star the Repository** ⭐
- **Report Issues** 🐛
- **Submit Pull Requests** 🔄
- **Share Your Story** 📝
- **Join Discussions** 💬
## 🎉 Why Choose API-Mocker?
### ✅ Free & Open Source
- No licensing fees
- No usage limits
- Full source code access
- Community-driven development
### ✅ Production Ready
- Enterprise-grade features
- Comprehensive testing
- Performance optimized
- Security focused
### ✅ Developer Friendly
- Simple CLI interface
- Rich documentation
- Multiple configuration formats
- Extensive examples
### ✅ Feature Rich
- Real-time analytics
- Advanced security
- Plugin architecture
- Import/export capabilities
## 📈 Success Metrics
- **1500+ Downloads** from PyPI
- **100% Free** - No paywalls or limitations
- **Production Ready** - Used in enterprise environments
- **Active Development** - Regular updates and improvements
- **Growing Community** - Contributors and users worldwide
## 🔧 Installation Options
### Basic Installation
```bash
pip install api-mocker
```
### With Advanced Features
```bash
pip install api-mocker[advanced]
```
### From Source
```bash
git clone https://github.com/Sherin-SEF-AI/api-mocker.git
cd api-mocker
pip install -e .
```
## 📋 Requirements
- **Python**: 3.8 or higher
- **Dependencies**: FastAPI, Uvicorn, PyYAML, Rich, Typer
- **Optional**: PyJWT, Redis (for advanced features)
## 📄 License
This project is licensed under the MIT License - see the [LICENSE](https://github.com/Sherin-SEF-AI/api-mocker/blob/main/LICENSE) file for details.
---
**🚀 Ready to accelerate your API development?**
```bash
pip install api-mocker
api-mocker init --name my-api
api-mocker start --config my-api/config/api-mock.yaml
```
**Visit**: [github.com/Sherin-SEF-AI/api-mocker](https://github.com/Sherin-SEF-AI/api-mocker)
---
*Made with ❤️ by the API-Mocker Community*
Raw data
{
"_id": null,
"home_page": null,
"name": "api-mocker",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "api-mocking, mock-server, development-tools, fastapi, testing, microservices, api-testing, swagger, openapi, postman, rest-api, http-mocking, development-acceleration, api-development, backend-testing, api-simulation, mock-api, api-prototyping, integration-testing, web-development, cli, devops, analytics, rate-limiting, caching, authentication",
"author": null,
"author_email": "sherin joseph roy <sherin.joseph2217@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/a4/2a/1f38ce1f3820f510a0354c55bef83e0d9be2bd6c121b47104796e4114788/api_mocker-0.4.0.tar.gz",
"platform": null,
"description": "# API-Mocker: The Ultimate API Development Acceleration Tool\n\n[](https://badge.fury.io/py/api-mocker)\n[](https://pepy.tech/project/api-mocker)\n[](https://opensource.org/licenses/MIT)\n[](https://www.python.org/downloads/)\n\n**The Industry-Standard, Production-Ready, FREE API Mocking & Development Acceleration Tool**\n\nAPI-Mocker eliminates API dependency bottlenecks and accelerates development workflows for all developers. With **1500+ downloads** and growing, it's the most comprehensive free API mocking solution available.\n\n## \ud83d\ude80 Quick Start\n\n```bash\n# Install API-Mocker\npip install api-mocker\n\n# Create your first mock API\napi-mocker init --name my-api\napi-mocker start --config my-api/config/api-mock.yaml\n\n# Test your API\ncurl http://127.0.0.1:8000/api/health\n```\n\n## \u2728 Key Features\n\n### \ud83c\udfaf Core Functionality\n- **Fast Mock Server** - Production-ready FastAPI-based server\n- **Dynamic Responses** - Template-based response generation\n- **Multi-Format Support** - YAML, JSON, TOML configurations\n- **Hot Reloading** - Real-time configuration updates\n- **Plugin Architecture** - Extensible and customizable\n\n### \ud83d\udcca Analytics & Monitoring\n- **Real-time Dashboard** - Beautiful web interface with Chart.js\n- **Performance Metrics** - Response times, throughput, error rates\n- **Request Tracking** - Detailed request/response logging\n- **Export Capabilities** - JSON/CSV data export\n- **WebSocket Updates** - Live data streaming\n\n### \ud83d\udee1\ufe0f Enterprise Features\n- **Rate Limiting** - Sliding window algorithm with per-client tracking\n- **Caching System** - LRU/FIFO eviction with TTL support\n- **JWT Authentication** - Role-based access control\n- **Health Monitoring** - System health checks (DB, memory, disk)\n- **Middleware Support** - Request/response processing pipeline\n\n### \ud83d\udd04 Import/Export\n- **OpenAPI/Swagger** - Full specification support\n- **Postman Collections** - Import/export compatibility\n- **Custom Formats** - Extensible format support\n- **Schema Validation** - Automatic validation\n\n## \ud83d\udccb CLI Commands\n\nAPI-Mocker provides a comprehensive CLI with 15+ commands:\n\n```bash\n# Server Management\napi-mocker start --config config.yaml\napi-mocker init --name my-api\n\n# Import/Export\napi-mocker import-spec swagger.json --output mock.yaml\napi-mocker export config.yaml --format openapi\n\n# Analytics & Monitoring\napi-mocker analytics dashboard\napi-mocker analytics summary --hours 24\napi-mocker analytics export --output analytics.json\n\n# Advanced Features\napi-mocker advanced rate-limit --config rate-limit.yaml\napi-mocker advanced cache --enable\napi-mocker advanced auth --config auth.yaml\napi-mocker advanced health\n\n# Testing & Recording\napi-mocker test --config config.yaml\napi-mocker record https://api.example.com --output recorded.json\napi-mocker replay recorded.json\n\n# Plugin Management\napi-mocker plugins --list\n```\n\n## \ud83d\udcca Analytics Dashboard\n\nLaunch a beautiful real-time analytics dashboard:\n\n```bash\napi-mocker analytics dashboard\n# Open: http://127.0.0.1:8080\n```\n\n**Features:**\n- Real-time metrics visualization\n- Interactive charts (Chart.js)\n- WebSocket updates\n- Request/response tracking\n- Performance monitoring\n\n## \ud83d\udee1\ufe0f Advanced Features\n\n### Rate Limiting\n```bash\napi-mocker advanced rate-limit --config rate-limit.yaml\n```\n\n```yaml\n# rate-limit.yaml\nrate_limit:\n enabled: true\n requests_per_minute: 60\n requests_per_hour: 1000\n burst_size: 10\n```\n\n### Caching System\n```bash\napi-mocker advanced cache --enable\n```\n\n```yaml\n# cache-config.yaml\ncache:\n enabled: true\n ttl_seconds: 300\n max_size: 1000\n strategy: \"lru\"\n```\n\n### Authentication\n```bash\napi-mocker advanced auth --config auth.yaml\n```\n\n```yaml\n# auth.yaml\nauth:\n enabled: true\n secret_key: \"your-secret-key\"\n algorithm: \"HS256\"\n token_expiry_hours: 24\n require_auth:\n - \"/api/admin/*\"\n - \"/api/users/*\"\n```\n\n## \ud83d\udcdd Configuration Examples\n\n### Basic Configuration\n```yaml\n# basic-config.yaml\nserver:\n host: \"127.0.0.1\"\n port: 8000\n debug: true\n\nroutes:\n - method: \"GET\"\n path: \"/api/health\"\n response:\n status_code: 200\n body:\n status: \"healthy\"\n timestamp: \"{{ datetime.now().isoformat() }}\"\n version: \"1.0.0\"\n\n - method: \"GET\"\n path: \"/api/users\"\n response:\n status_code: 200\n body:\n users:\n - id: 1\n name: \"John Doe\"\n email: \"john@example.com\"\n - id: 2\n name: \"Jane Smith\"\n email: \"jane@example.com\"\n```\n\n### Production Configuration\n```yaml\n# production-config.yaml\nserver:\n host: \"0.0.0.0\"\n port: 8000\n debug: false\n\n# Rate limiting\nrate_limit:\n enabled: true\n requests_per_minute: 100\n requests_per_hour: 5000\n\n# Caching\ncache:\n enabled: true\n ttl_seconds: 600\n max_size: 5000\n\n# Authentication\nauth:\n enabled: true\n secret_key: \"${JWT_SECRET_KEY}\"\n require_auth:\n - \"/api/admin/*\"\n - \"/api/sensitive/*\"\n\n# Analytics\nanalytics:\n enabled: true\n retention_days: 30\n export_enabled: true\n```\n\n## \ud83c\udfaf Use Cases\n\n### Development Teams\n- **Frontend Development** - Mock backend APIs during development\n- **Mobile Development** - Test mobile apps with mock APIs\n- **Microservices** - Mock service dependencies\n- **API Testing** - Comprehensive API testing scenarios\n\n### DevOps & QA\n- **CI/CD Pipelines** - Automated testing with mock APIs\n- **Performance Testing** - Load testing with controlled responses\n- **Integration Testing** - Test service integrations\n- **Staging Environments** - Production-like testing environments\n\n### API Design\n- **API Prototyping** - Rapid API design and iteration\n- **Documentation** - Generate API documentation from mocks\n- **Client SDKs** - Test client libraries with mock APIs\n- **API Versioning** - Test multiple API versions\n\n## \ud83d\udcc8 Performance Metrics\n\n### Benchmark Results\n- **Startup Time**: < 2 seconds\n- **Request Latency**: < 10ms average\n- **Memory Usage**: < 50MB typical\n- **Concurrent Requests**: 1000+ supported\n- **Configuration Hot Reload**: < 1 second\n\n### Scalability Features\n- **Horizontal Scaling** - Multiple server instances\n- **Load Balancing** - Built-in load distribution\n- **Resource Optimization** - Efficient memory usage\n- **Connection Pooling** - Optimized database connections\n\n## \ud83d\udd0c Plugin System\n\n### Built-in Plugins\n- **Response Generator** - Dynamic response generation\n- **Authentication** - JWT and OAuth support\n- **Data Sources** - Database and external data integration\n- **Custom Middleware** - Request/response processing\n\n### Plugin Development\n```python\nfrom api_mocker.plugins import Plugin\n\nclass CustomPlugin(Plugin):\n def process_request(self, request):\n # Custom request processing\n return request\n \n def process_response(self, response):\n # Custom response processing\n return response\n```\n\n## \ud83d\ude80 Getting Started Checklist\n\n- [ ] **Install API-Mocker**: `pip install api-mocker`\n- [ ] **Initialize Project**: `api-mocker init --name my-api`\n- [ ] **Configure Routes**: Edit `config/api-mock.yaml`\n- [ ] **Start Server**: `api-mocker start --config config/api-mock.yaml`\n- [ ] **Test Endpoints**: `curl http://127.0.0.1:8000/api/health`\n- [ ] **View Analytics**: `api-mocker analytics dashboard`\n- [ ] **Configure Advanced Features**: `api-mocker advanced health`\n- [ ] **Run Tests**: `api-mocker test --config config/api-mock.yaml`\n- [ ] **Import Existing APIs**: `api-mocker import-spec swagger.json`\n- [ ] **Export Configuration**: `api-mocker export config.yaml --format openapi`\n\n## \ud83d\udcde Support & Community\n\n### Documentation\n- **Complete Guide**: [GitHub Wiki](https://github.com/Sherin-SEF-AI/api-mocker/wiki)\n- **Quick Start**: [docs/QUICKSTART.md](https://github.com/Sherin-SEF-AI/api-mocker/blob/main/docs/QUICKSTART.md)\n- **API Reference**: [docs/COMPLETE_GUIDE.md](https://github.com/Sherin-SEF-AI/api-mocker/blob/main/docs/COMPLETE_GUIDE.md)\n\n### Community\n- **GitHub**: [github.com/Sherin-SEF-AI/api-mocker](https://github.com/Sherin-SEF-AI/api-mocker)\n- **Issues**: [GitHub Issues](https://github.com/Sherin-SEF-AI/api-mocker/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/Sherin-SEF-AI/api-mocker/discussions)\n- **Email**: sherin.joseph2217@gmail.com\n\n### Contributing\n- **Star the Repository** \u2b50\n- **Report Issues** \ud83d\udc1b\n- **Submit Pull Requests** \ud83d\udd04\n- **Share Your Story** \ud83d\udcdd\n- **Join Discussions** \ud83d\udcac\n\n## \ud83c\udf89 Why Choose API-Mocker?\n\n### \u2705 Free & Open Source\n- No licensing fees\n- No usage limits\n- Full source code access\n- Community-driven development\n\n### \u2705 Production Ready\n- Enterprise-grade features\n- Comprehensive testing\n- Performance optimized\n- Security focused\n\n### \u2705 Developer Friendly\n- Simple CLI interface\n- Rich documentation\n- Multiple configuration formats\n- Extensive examples\n\n### \u2705 Feature Rich\n- Real-time analytics\n- Advanced security\n- Plugin architecture\n- Import/export capabilities\n\n## \ud83d\udcc8 Success Metrics\n\n- **1500+ Downloads** from PyPI\n- **100% Free** - No paywalls or limitations\n- **Production Ready** - Used in enterprise environments\n- **Active Development** - Regular updates and improvements\n- **Growing Community** - Contributors and users worldwide\n\n## \ud83d\udd27 Installation Options\n\n### Basic Installation\n```bash\npip install api-mocker\n```\n\n### With Advanced Features\n```bash\npip install api-mocker[advanced]\n```\n\n### From Source\n```bash\ngit clone https://github.com/Sherin-SEF-AI/api-mocker.git\ncd api-mocker\npip install -e .\n```\n\n## \ud83d\udccb Requirements\n\n- **Python**: 3.8 or higher\n- **Dependencies**: FastAPI, Uvicorn, PyYAML, Rich, Typer\n- **Optional**: PyJWT, Redis (for advanced features)\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License - see the [LICENSE](https://github.com/Sherin-SEF-AI/api-mocker/blob/main/LICENSE) file for details.\n\n---\n\n**\ud83d\ude80 Ready to accelerate your API development?**\n\n```bash\npip install api-mocker\napi-mocker init --name my-api\napi-mocker start --config my-api/config/api-mock.yaml\n```\n\n**Visit**: [github.com/Sherin-SEF-AI/api-mocker](https://github.com/Sherin-SEF-AI/api-mocker)\n\n---\n\n*Made with \u2764\ufe0f by the API-Mocker Community* \n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2024 sherin joseph roy\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE. ",
"summary": "\ud83d\ude80 The Ultimate API Development Acceleration Tool - 3000+ Downloads! Production-ready FastAPI mock server with AI-powered generation, scenario-based mocking, smart response matching, enhanced analytics, comprehensive testing framework, and advanced mock response management system.",
"version": "0.4.0",
"project_urls": {
"Bug Tracker": "https://github.com/Sherin-SEF-AI/api-mocker/issues",
"Documentation": "https://github.com/Sherin-SEF-AI/api-mocker#readme",
"Download Statistics": "https://pepy.tech/project/api-mocker",
"Homepage": "https://github.com/Sherin-SEF-AI/api-mocker",
"PyPI Page": "https://pypi.org/project/api-mocker/",
"Repository": "https://github.com/Sherin-SEF-AI/api-mocker.git",
"Source Code": "https://github.com/Sherin-SEF-AI/api-mocker"
},
"split_keywords": [
"api-mocking",
" mock-server",
" development-tools",
" fastapi",
" testing",
" microservices",
" api-testing",
" swagger",
" openapi",
" postman",
" rest-api",
" http-mocking",
" development-acceleration",
" api-development",
" backend-testing",
" api-simulation",
" mock-api",
" api-prototyping",
" integration-testing",
" web-development",
" cli",
" devops",
" analytics",
" rate-limiting",
" caching",
" authentication"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "f07f079b2c02c5ca61df9e8eada5d5d5872c83321bb7f2356495133fc6bda7dc",
"md5": "64b431822d0083916eb4406de6a4dc28",
"sha256": "0d2db7f3dbd96a219971109cabc3942d891298e57e877dff983978c472ac0d74"
},
"downloads": -1,
"filename": "api_mocker-0.4.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "64b431822d0083916eb4406de6a4dc28",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 67537,
"upload_time": "2025-07-24T17:32:09",
"upload_time_iso_8601": "2025-07-24T17:32:09.545153Z",
"url": "https://files.pythonhosted.org/packages/f0/7f/079b2c02c5ca61df9e8eada5d5d5872c83321bb7f2356495133fc6bda7dc/api_mocker-0.4.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a42a1f38ce1f3820f510a0354c55bef83e0d9be2bd6c121b47104796e4114788",
"md5": "2aa00fc420ff8b9bc6d3f9e448d4733f",
"sha256": "4132fb488ffda33d9447f5537a048645de235a6b15ed1201e0b9ee3bb37e7b36"
},
"downloads": -1,
"filename": "api_mocker-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "2aa00fc420ff8b9bc6d3f9e448d4733f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 74863,
"upload_time": "2025-07-24T17:32:11",
"upload_time_iso_8601": "2025-07-24T17:32:11.049164Z",
"url": "https://files.pythonhosted.org/packages/a4/2a/1f38ce1f3820f510a0354c55bef83e0d9be2bd6c121b47104796e4114788/api_mocker-0.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-24 17:32:11",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Sherin-SEF-AI",
"github_project": "api-mocker",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "api-mocker"
}