How It Works
Parsing file uploads inside a Lambda function shouldn’t mean pulling in Flask or FastAPI just to read a multipart boundary. This package does one thing: decodes multipart/form-data payloads from raw HTTP streams — with no dependencies, fast cold starts, and a simple API.
Why It’s Designed This Way
- Streaming — Bytes are processed as they arrive. Large files don’t load into RAM. Memory usage stays flat even at scale.
- Zero Dependencies — One import. No version conflicts. No transitive vulnerabilities.
- Drop-in Simple — Works directly inside an AWS Lambda handler or any lightweight Flask/FastAPI service.