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

  1. Streaming — Bytes are processed as they arrive. Large files don’t load into RAM. Memory usage stays flat even at scale.
  2. Zero Dependencies — One import. No version conflicts. No transitive vulnerabilities.
  3. Drop-in Simple — Works directly inside an AWS Lambda handler or any lightweight Flask/FastAPI service.