MCPcopy Create free account
hub / github.com/UndCover/PyramidStore / post

Method post

tutorial/base/spider.py:56–59  ·  view source on GitHub ↗
(self,url,data,headers={},cookies={})

Source from the content-addressed store, hash-verified

54 rsp.encoding='utf-8'
55 return rsp
56 def post(self,url,data,headers={},cookies={}):
57 rsp = requests.post(url,data=data,headers=headers,cookies=cookies)
58 rsp.encoding='utf-8'
59 return rsp
60 def postJson(self,url,json,headers={},cookies={}):
61 rsp = requests.post(url,json=json,headers=headers,cookies=cookies)
62 rsp.encoding='utf-8'

Callers 1

postJsonMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected