gpt4 book ai didi

尝试用最短的Python代码来实现服务器和代理服务器

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章尝试用最短的Python代码来实现服务器和代理服务器由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

一个最简单的服务器 Python拥有这种单独起一个服务器监听端口的能力,用标准库的wsgiref就行.

?
1
2
3
4
5
6
7
8
from wsgiref.simple_server import make_server
def simple_app(environ, start_response):
   status = '200 OK'
   response_headers = [( 'Content-type' , 'text/plain' )]
   start_response(status, response_headers)
   return [ 'Hello world!\n' ]
httpd = make_server('', 80 , simple_app)
httpd.serve_forever()

尝试用最短的Python代码来实现服务器和代理服务器

  。

50行代码实现代理服务器 之前遇到一个场景是这样的: 我在自己的电脑上需要用mongodb图形客户端,但是mongodb的服务器地址没有对外网开放,只能通过先登录主机A,然后再从A连接mongodb服务器B。 本来想通过ssh端口转发的,但是我没有从机器A连接ssh到B的权限。于是就自己用Python写一个。 原理很简单。 1.开一个socket server监听连接请求 2.每接受一个客户端的连接请求,就往要转发的地址建一条连接请求。即client->proxy->forward。proxy既是socket服务端(监听client),也是socket客户端(往forward请求)。 3.把client->proxy和proxy->forward这2条socket用字典给绑定起来。 4.通过这个映射的字典把send/recv到的数据原封不动的传递 下面上代码.

?
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#coding=utf-8
import socket
import select
import sys
 
to_addr = ( 'xxx.xxx.xx.xxx' , 10000 ) #转发的地址
 
class Proxy:
   def __init__( self , addr):
     self .proxy = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
     self .proxy.bind(addr)
     self .proxy.listen( 10 )
     self .inputs = [ self .proxy]
     self .route = {}
 
   def serve_forever( self ):
     print 'proxy listen...'
     while 1 :
       readable, _, _ = select.select( self .inputs, [], [])
       for self .sock in readable:
         if self .sock = = self .proxy:
           self .on_join()
         else :
           data = self .sock.recv( 8096 )
           if not data:
             self .on_quit()
           else :
             self .route[ self .sock].send(data)
 
   def on_join( self ):
     client, addr = self .proxy.accept()
     print addr, 'connect'
     forward = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
     forward.connect(to_addr)
     self .inputs + = [client, forward]
     self .route[client] = forward
     self .route[forward] = client
 
   def on_quit( self ):
     for s in self .sock, self .route[ self .sock]:
       self .inputs.remove(s)
       del self .route[s]
       s.close()
 
if __name__ = = '__main__' :
   try :
     Proxy(('', 12345 )).serve_forever() #代理服务器监听的地址
   except KeyboardInterrupt:
     sys.exit( 1 )

效果截图如下.

尝试用最短的Python代码来实现服务器和代理服务器

最后此篇关于尝试用最短的Python代码来实现服务器和代理服务器的文章就讲到这里了,如果你想了解更多关于尝试用最短的Python代码来实现服务器和代理服务器的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com