A Python package for logging and replaying HTTP requests
Project description
Request Logger
A Python package for logging and replaying HTTP requests made using the requests library. This package allows you to seamlessly integrate request logging into your existing workflows, store the logged requests using various backends, and replay them at any time.
Table of Contents
Features
- Request Logging: Log HTTP requests made using the
requestslibrary with minimal changes to your code. - Request Replaying: Replay logged requests exactly as they were made or with modifications.
- Multiple Storage Backends: Support for different storage backends, including file system, AWS S3, and PostgreSQL.
- Seamless Integration: Designed to integrate smoothly with the
requestslibrary and your existing codebase. - Extensible Architecture: Easy to extend with additional storage backends or custom functionality.
Installation
Requirements
- Python 3.6 or higher
requestslibrary- Additional dependencies for specific storage backends (e.g.,
boto3for S3,psycopg2for PostgreSQL)
Install via pip
pip install request-logger
Note: The package is not yet published on PyPI. You can install it locally by cloning the repository and running:
git clone https://github.com/yourusername/request-logger.git
cd request-logger
pip install -e .
Usage
Logging Requests
from request_logger.request_logger import RequestLogger
from request_logger.storage.file import FileStorage
# Initialize the logger and storage
storage = FileStorage(directory='request_logs')
logger = RequestLogger(storage=storage)
# Prepare request details
url = 'https://httpbin.org/post'
headers = {'Content-Type': 'application/json'}
json_data = {'key': 'value'}
# Log the request and get the request ID and parameters
request_id, request_params = logger.log_request(
method='POST',
url=url,
headers=headers,
json=json_data,
)
# Make the actual request using the returned parameters
import requests
response = requests.request(**request_params)
print(f"Status code: {response.status_code}")
Replaying Requests
from request_logger.replayer import Replayer
# Initialize the replayer with the same storage used for logging
replayer = Replayer(storage=storage)
# Replay the request using the request ID
replay_response = replayer.replay_request(request_id)
print(f"Replayed request status code: {replay_response.status_code}")
Using Different Storage Backends
File Storage (Default)
from request_logger.storage.file import FileStorage
storage = FileStorage(directory='request_logs')
S3 Storage
from request_logger.storage.s3 import S3Storage
storage = S3Storage(
bucket_name='your-bucket-name',
aws_access_key_id='YOUR_ACCESS_KEY',
aws_secret_access_key='YOUR_SECRET_KEY',
region_name='YOUR_REGION'
)
PostgreSQL Storage
from request_logger.storage.postgres import PostgresStorage
storage = PostgresStorage(
database_url='postgresql://user:password@localhost:5432/your_database'
)
Note: Replace the placeholders with your actual credentials and information. Project Structure
your_project_root/
├── request_logger/
│ ├── __init__.py
│ ├── request_logger.py
│ ├── replayer.py
│ └── storage/
│ ├── __init__.py
│ ├── base.py
│ ├── file.py
│ ├── s3.py
│ └── postgres.py
├── examples/
│ ├── example1.py
│ └── example2.py
├── tests/
│ ├── __init__.py
│ ├── test_logger.py
│ ├── test_replayer.py
│ └── test_storage.py
├── README.md
├── CONTRIBUTING.md
├── pyproject.toml
├── uv.lock
└── other files...
Components Checklist
Completed Components
Core Functionality
RequestLogger class (request_logger.py)
Replayer class (replayer.py)
File Storage Backend
FileStorage class (storage/file.py)
Project Structure and Imports
Standardized project structure
Seamless imports in example scripts
Configuration
pyproject.toml with project metadata and dependencies
Example Script
examples/example1.py demonstrating basic usage
Components to Implement
Additional Storage Backends
S3Storage class (storage/s3.py)
PostgresStorage class (storage/postgres.py)
Testing Suite
Unit tests for core functionalities
Integration tests
Documentation
Expand README.md with detailed instructions
API documentation using docstrings
Error Handling and Validation
Improve error handling throughout the code
Validate inputs and provide helpful error messages
Packaging for Distribution
Prepare package for distribution via PyPI
Additional Examples
examples/example2.py demonstrating advanced usage
Optional Enhancements
Request filtering and modification capabilities
Asynchronous request support
Logging configuration options
Roadmap
See the Components Checklist for planned features and improvements. Priorities for development:
Implement Additional Storage Backends
Develop a Comprehensive Testing Suite
Enhance Documentation
Improve Error Handling and Validation
Prepare for Distribution
Develop Additional Examples
Implement Optional Enhancements
Contributing
Contributions are welcome! Please see the CONTRIBUTING.md file for guidelines on how to contribute to this project. License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
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 py_requests_logger-0.1.0.tar.gz.
File metadata
- Download URL: py_requests_logger-0.1.0.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d659395a8c2af770b0564c92d7372c201be951d16e4059f9a84ac6c2ef8dbe3
|
|
| MD5 |
fa54829f678df07b7fd0a7a7579bd599
|
|
| BLAKE2b-256 |
02f0ddf59b76f6a6643cbcbdb2fd0f94e62e405efe77eabdea72c7cb9a440555
|
File details
Details for the file py_requests_logger-0.1.0-py3-none-any.whl.
File metadata
- Download URL: py_requests_logger-0.1.0-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
308fc1e1d5c2d5d63d765837285da062ed6134f1d342886070084c0d1b9790a5
|
|
| MD5 |
5ab4e6d40344bd8d93b57dedd4d9be06
|
|
| BLAKE2b-256 |
43081d518baf7c76e5393c1ef0819495401cae0782e79fd583a4f4f016ccda8a
|