You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
first of all love the client, really makes working with wiremock in python simple. :)
would be great if if the models for the library were typed more strongly, for autocomplete and all the other beneifits.
so instead of doing
@add_metaclass(BaseEntityMetaType)classRequestResponseDefinition(BaseAbstractEntity):
status=JsonProperty("status")
transformers=JsonProperty("transformers", klass=list)
from_configured_stub=JsonProperty("fromConfiguredStub") # will be true/falsetransformer_parameters=JsonProperty("transformerParameters", klass=dict)
first of all love the client, really makes working with wiremock in python simple. :)
would be great if if the models for the library were typed more strongly, for autocomplete and all the other beneifits.
so instead of doing
would be
this can be achieved either with dataclasses or any other way (pydantic models, attr , etc)
The text was updated successfully, but these errors were encountered: