compression

class litestar.middleware.compression.CompressionFacade[源代码]

基类:Protocol

A unified facade offering a uniform interface for different compression libraries.

__init__(buffer: BytesIO, compression_encoding: CompressionEncoding | str, config: CompressionConfig) None[源代码]

Initialize CompressionFacade.

参数:
  • buffer -- A bytes IO buffer to write the compressed data into.

  • compression_encoding -- The compression encoding used.

  • config -- The app compression config.

close() None[源代码]

Close the compression stream.

返回:

None

write(body: bytes | bytearray, final: bool = False) None[源代码]

Write compressed bytes to the buffer.

参数:
  • body -- The message body to process. Can be bytes or bytearray.

  • final -- Indicates whether this is the last chunk of data. If True, the compressor may flush any remaining internal buffers.

返回:

None

encoding: ClassVar[str]

The encoding of the compression.

class litestar.middleware.compression.CompressionMiddleware[源代码]

基类:AbstractMiddleware

Compression Middleware Wrapper.

This is a wrapper allowing for generic compression configuration / handler middleware

__init__(app: ASGIApp, config: CompressionConfig) None[源代码]

Initialize CompressionMiddleware

参数:
  • app -- The next ASGI app to call.

  • config -- An instance of CompressionConfig.

create_compression_send_wrapper(send: Send, compression_encoding: Literal[CompressionEncoding.BROTLI, CompressionEncoding.GZIP, CompressionEncoding.ZSTD] | str, scope: Scope) Send[源代码]

Wrap send to handle brotli compression.

参数:
  • send -- The ASGI send function.

  • compression_encoding -- The compression encoding used.

  • scope -- The ASGI connection scope

返回:

An ASGI send function.