MCPcopy Index your code
hub / github.com/pyload/pyload / do_POST

Method do_POST

module/remote/ClickAndLoadBackend.py:101–113  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

99 self.send_error(404, "Not Found")
100
101 def do_POST(self):
102 form = FieldStorage(
103 fp=self.rfile,
104 headers=self.headers,
105 environ={'REQUEST_METHOD':'POST',
106 'CONTENT_TYPE':self.headers['Content-Type'],
107 })
108
109 self.post = {}
110 for name in form.keys():
111 self.post[name] = form[name].value
112
113 return self.do_GET()
114
115 def flash(self):
116 return "JDownloader"

Callers

nothing calls this directly

Calls 2

do_GETMethod · 0.95
keysMethod · 0.45

Tested by

no test coverage detected