Untitled

mail@pastecode.io avatar
unknown
plain_text
5 days ago
176 B
4
Indexable
Never
    def do_DELETE(self):
        self._set_headers()
        response = {"message": "This is a DELETE request response"}
        self.wfile.write(json.dumps(response).encode())
Leave a Comment