-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistener.server.py
29 lines (23 loc) · 918 Bytes
/
listener.server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from http.server import BaseHTTPRequestHandler, HTTPServer
import json
class MyHandler(BaseHTTPRequestHandler):
def do_GET(self):
# response
self.send_response(200)
self.send_header('Content-type', 'text/plain; charset=utf-8')
self.end_headers()
self.wfile.write('square-ci'.encode('UTF-8'))
def do_POST(self):
print('# listener')
# request
request_body = self.rfile.read(int(self.headers['Content-Length'])).decode('UTF-8')
print('receive: ', request_body)
self.send_response(200)
self.send_header('Content-type', 'application/json; charset=utf-8')
self.end_headers()
response_body = json.dumps({'square-ci': 'test'})
self.wfile.write(response_body.encode('UTF-8'))
print('send: ', response_body)
print()
listener = HTTPServer(('', 6000), MyHandler)
listener.serve_forever()