MCPcopy Create free account
hub / github.com/ezyang/ghstack / post

Method post

src/ghstack/github.py:69–75  ·  view source on GitHub ↗

Send a POST request to endpoint 'path'. Returns: parsed JSON response

(self, path: str, **kwargs: Any)

Source from the content-addressed store, hash-verified

67 return self.rest("get", path, **kwargs)
68
69 def post(self, path: str, **kwargs: Any) -> Any:
70 """
71 Send a POST request to endpoint 'path'.
72
73 Returns: parsed JSON response
74 """
75 return self.rest("post", path, **kwargs)
76
77 def patch(self, path: str, **kwargs: Any) -> Any:
78 """

Callers 3

read_configFunction · 0.45
_create_pull_requestMethod · 0.45
graphqlMethod · 0.45

Calls 1

restMethod · 0.95

Tested by

no test coverage detected