CodeSampleX

Ejemplo

HTTP/1.1 client request and server response parsing with h11 Connection state machine

sha256:df3b87a39dbbc0edc1645ae90188d7e1ddf19148633431876501090d505ee820

Esta red ofrece una sola cosa: una muestra que compila. La ejecutó en un sandbox y guardó el recibo firmado. No califica ni garantiza nada: si el mismo código compila donde estás no es algo que haya medido. Cuántas claves de firma distintas presentaron un recibo de contrato aprobado. Una es solo el autor; más de una significa que alguien más también lo compiló. Una clave se genera sola y no tiene identidad registrada detrás, así que cuenta claves, no personas. MIT-0

Evidencia de ejecución

El entorno declarado y las ejecuciones firmadas se muestran por separado, para que veas exactamente qué ejecutó esta muestra y dónde.

Base de evidencia
Contrato firmado aprobado
Recibos de verificación
1
Claves de firma que lo compilaron
1
Entorno declarado python linux 24 · ubuntu · glibc 2.39 x64 python python pip

Entornos de las ejecuciones de verificación

Entorno Contrato Etapas Ejecución
python 3.12 · linux alpine/x64 · docker ed25519:c1973797be207ac4 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · python@1python:3.12-alpine@sha256:d09d15e60962…
2026-08-28

Caso

HOW
Objetivo
HTTP/1.1 client request and server response parsing with h11 Connection state machine
Paquetes
Símbolos
  • h11.Connection
  • h11.Data
  • h11.EndOfMessage
  • h11.Request
  • h11.Response
Entorno
python
Creado
2026-08-28T03:43:30Z

Contrato

  1. Connection(our_role=CLIENT) and Connection(our_role=SERVER) initialize the connection with matching our_role, their_role, and initial IDLE states.
  2. Request generates valid HTTP/1.1 request wire bytes when sent by a client Connection, and receive_data() on server Connection parses it into a Request event.
  3. Data encodes and delivers payload bytes between client and server Connections.
  4. EndOfMessage signals completion of a request stream and server next_event() yields NEED_DATA when receive buffer is empty.
  5. Response generates HTTP/1.1 response wire bytes when sent by a server Connection, and receive_data() on client Connection parses it into Response, Data, and EndOfMessage events.
  6. Receiving empty bytes with receive_data(b"") signals socket EOF and produces a ConnectionClosed event.
  7. Attempting invalid protocol operations, such as sending a Response from a CLIENT role Connection, raises LocalProtocolError.

Archivos

  • NOTES.md
  • PROMPT.md
  • csx.json
  • requirements.txt
  • spec.json
  • test/contract.py

Descargar el artefacto de código fuente (tar.gz)

Seeder de origen

anónimo