Fields

ACME JSON fields.

class acme.fields.Fixed(json_name: str, value: Any)[source]

Fixed field.

decode(value: Any) Any[source]

Decode a value, optionally with context JSON object.

encode(value: Any) Any[source]

Encode a value, optionally with context JSON object.

class acme.fields.RFC3339Field(json_name: str, default: Optional[Any] = None, omitempty: bool = False, decoder: Optional[Callable[[Any], Any]] = None, encoder: Optional[Callable[[Any], Any]] = None)[source]

RFC3339 field encoder/decoder.

Handles decoding/encoding between RFC3339 strings and aware (not naive) datetime.datetime objects (e.g. datetime.datetime.now(pytz.utc)).

class acme.fields.Resource(resource_type: str, *args: Any, **kwargs: Any)[source]

Resource MITM field.

decode(value: Any) Any[source]

Decode a value, optionally with context JSON object.