1 Star 0 Fork 26

Kejun/python-basic

forked from Hutool/python-basic 
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
request_url.py 954 Bytes
Copy Edit Raw Blame History
Looly authored 2014-10-21 10:13 +08:00 . First commit
#!/usr/bin/env python
#coding:utf-8
import textwrap
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
from tornado.options import define, options
define("port", default=8000, help="Please send email to me", type=int)
class ReverseHandler(tornado.web.RequestHandler):
def get(self, input_word):
self.write(input_word[::-1])
class WrapHandler(tornado.web.RequestHandler):
def post(self):
text = self.get_argument("name")
width = self.get_argument("width", 40)
self.write(textwrap.fill(word, width))
if __name__ == "__main__":
tornado.options.parse_command_line()
app = tornado.web.Application(
handlers = [
(r"/reverse/(\w+)", ReverseHandler),
(r"/wrap/(/w+)", WrapHandler)
]
)
http_server = tornado.httpserver.HTTPServer(app)
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kejun/python-basic.git
git@gitee.com:kejun/python-basic.git
kejun
python-basic
python-basic
master

Search