Testing http.server GET/POST Service with Python 3
If you want to test the API service you wrote locally, you can write an easy http service. The example is as follows.
from http.server import HTTPServer, BaseHTTPRequestHandler
from io import BytesIO
class HTTPRequestService(BaseHTTPRequestHandler):
def do_GET(self):
self.send_response(200)
self.end_headers()
self.wfile.write(b'ONly POST')
def do_POST(self):
content_length = int(self.headers['Content-Length'])
body = self.rfile.read(content_length)
self.send_response(200)
self.end_headers()
response = BytesIO()
response.write(body)
self.wfile.write(response.getvalue())
httpd = HTTPServer(('localhost', 8000), HTTPRequestService)
httpd.serve_forever()
Can't find the information you're looking for?
You have examined the knowledge base in detail, but if you cannot find the information you need,
Create a Support Ticket-
How to Open Ports in Windows?
317 2
-
How to Grant Windows Administrator Privileges?
234 0
-
How to install Webmin on Ubuntu?
889 2
-
Linux SSH Terminal Commands and Explanations
806 3
-
CentOS Stream 10 Update Commands
861 1
-
CentOS Stream 9 Update Commands
1255 2
-
CentOS Stream 8 Update Commands
682 0
-
What is FreeBSD?
861 2
-
Out: 452 4.3.1 Insufficient system storage
771 2
-
Turning Off Automatic Updates in Windows Operating Systems
880 0