MCPcopy
hub / github.com/pallets/werkzeug / get

Method get

src/werkzeug/test.py:1159–1162  ·  view source on GitHub ↗

Call :meth:`open` with ``method`` set to ``GET``.

(self, *args: t.Any, **kw: t.Any)

Source from the content-addressed store, hash-verified

1157 return response
1158
1159 def get(self, *args: t.Any, **kw: t.Any) -> TestResponse:
1160 """Call :meth:`open` with ``method`` set to ``GET``."""
1161 kw["method"] = "GET"
1162 return self.open(*args, **kw)
1163
1164 def post(self, *args: t.Any, **kw: t.Any) -> TestResponse:
1165 """Call :meth:`open` with ``method`` set to ``POST``."""

Calls 1

openMethod · 0.95

Tested by

no test coverage detected