简体   繁体   English

SocketServer Python

[英]SocketServer Python

So I found the following sample code which allows for a basic python HTTP server to be established at a given url and port. 因此,我发现了以下示例代码,该示例代码允许在给定的URL和端口处建立基本的python HTTP服务器。 I am quite inexperienced with web servers and am trying to create handlers for certain GET requests to this server. 我对Web服务器缺乏经验,并且正在尝试为此服务器的某些GET请求创建处理程序。 However, I cannot figure out how to actually create handlers for a GET request made by another computer when accessing this URL remotely. 但是,当远程访问此URL时,我无法弄清楚如何为另一台计算机发出的GET请求创建处理程序。 Any suggestions? 有什么建议么?

import SocketServer

class MyTCPHandler(SocketServer.BaseRequestHandler):
"""
The RequestHandler class for our server.

It is instantiated once per connection to the server, and must
override the handle() method to implement communication to the
client.
"""

def handle(self):
    # self.request is the TCP socket connected to the client
    self.data = self.request.recv(1024).strip()
    print "{} wrote:".format(self.client_address[0])
    print self.data

    # just send back the same data, but upper-cased
    self.request.sendall(self.data.upper())

if __name__ == "__main__":
HOST, PORT = "url" , PORT

# Create the server, binding to localhost on port 9999
server = SocketServer.TCPServer((HOST, PORT), MyTCPHandler)

# Activate the server; this will keep running until you
# interrupt the program with Ctrl-C
server.serve_forever()

Here is very simple example of how it could work. 这是一个如何工作的非常简单的示例。 You would start this and call it with this, for example: 您可以以此启动并调用它,例如:

curl -i 'http://localhost:5001/foo/bar?foo=bar' -X POST -d '{"Foo":"Bar"}'
HTTP/1.1 200 OK

Some response%

It is missing tons of things, but this should at least give you some sort of idea. 它缺少的东西,但至少应该给你某种想法。

import SocketServer

class MyTCPHandler(SocketServer.BaseRequestHandler):

    def handle(self):
        self.data = self.request.recv(1024).strip()
        print self.data
        self.parse_request(self.data)
        func, args = self.path.split("/", 1)
        args = args.split("/")
        resp = getattr(self, func)(*args)
        self.request.sendall("HTTP/1.1 200 OK\n")
        self.request.sendall("\n")
        self.request.sendall(resp)

    def parse_request(self, req):
        headers = {}
        lines = req.splitlines()
        inbody = False
        body = ''
        for line in lines[1:]:
            if line.strip() == "":
                inbody = True
            if inbody:
                body += line
            else:
                k, v = line.split(":", 1)
                headers[k.strip()] = v.strip()
        method, path, _ = lines[0].split()
        self.path = path.lstrip("/")
        self.method = method
        self.headers = headers
        self.body = body
        self.path, self.query_string = self.path.split("?")

    def foo(self, *args):
        print self.path
        print self.query_string
        print self.body
        print self.headers
        print self.method
        return "Some response"

if __name__ == "__main__":
    server = SocketServer.TCPServer(("localhost", 5001), MyTCPHandler)
    server.serve_forever()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM