博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python wsgi 接口
阅读量:5881 次
发布时间:2019-06-19

本文共 1352 字,大约阅读时间需要 4 分钟。

html wsgi web server

点击(此处)折叠或打开

  1. #!/usr/bin/env python3
  2. #-*- coding:utf-8 -*-
  3. '''
  4. '''
  5. def application(environ,start_response):
  6.     start_response('200 ok',[('Content-Type', 'text/html')])
  7.     body='

    hello,%s !

    ' % (environ['PATH_INFO'][1:] or 'web')
  8.     return [body.encode('utf-8')]

点击(此处)折叠或打开

  1. #!/usr/bin/env python3
  2. #-*- coding:utf-8 -*-
  3. '''
  4. '''
  5. from wsgiref.simple_server import make_server
  6. from wsgi_client import application
  7. httpd=make_server('', 10086,application)
  8. print('Serving HTTP on port 10086')
  9. httpd.serve_forever()
t@localhost untitled$ python3 wsgi_server.py 
Serving HTTP on port 10086
127.0.0.1 - - [10/May/2016 14:28:21] "GET /talen HTTP/1.1" 200 22
127.0.0.1 - - [10/May/2016 14:28:27] "GET /max HTTP/1.1" 200 20
127.0.0.1 - - [10/May/2016 14:29:22] "GET /china HTTP/1.1" 200 22
127.0.0.1 - - [10/May/2016 14:29:22] "GET /favicon.ico HTTP/1.1" 200 28
127.0.0.1 - - [10/May/2016 14:29:34] "GET /US HTTP/1.1" 200 19
127.0.0.1 - - [10/May/2016 14:29:35] "GET /favicon.ico HTTP/1.1" 200 28
t@localhost untitled$ netstat -lntp |grep 10086
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp        0      0 0.0.0.0:10086           0.0.0.0:*               LISTEN      4397/python3        
t@localhost untitled$ curl http://localhost:10086/talen

hello,talen !

t@localhost untitled$ curl http://localhost:10086/max

hello,max !

转载地址:http://hfvix.baihongyu.com/

你可能感兴趣的文章
HTML 字符实体
查看>>
质数因子
查看>>
在NVIDIA Quadro NVS 295 显卡上装redhat 黑屏 无信号输入
查看>>
Announcing the new Office 365 admin center
查看>>
小白经营网站的前前后后
查看>>
Spring MVC 教程,快速入门,深入分析——如何实现全局的异常处理
查看>>
单用户模式修改密码
查看>>
微信小程序帮你赚到第一桶金
查看>>
mac下安卓开发环境搭建
查看>>
学习之华丽的注册按钮➕倒计时
查看>>
Vim 中使用 OmniComplete 为 C/C++ 自动补全(部分增加)
查看>>
初识Hadoop
查看>>
Oracle之内存结构(SGA、PGA)
查看>>
Binary Search Tree IN C
查看>>
ios-cocos2d游戏开发基础-进度条-开发笔记
查看>>
jquery之trigger()
查看>>
打造自己的Cacti模板
查看>>
Spring源码浅析之事务(四)
查看>>
我的友情链接
查看>>
[APM] 2个实例+5个维度解读APM技术
查看>>