很久没写东西了,寒假比较低效,几乎没写代码.只在慕课网上刷完了linux系列课程,现在用linux熟了很多以及看了大部分<鸟叔-linux服务器架设>那本书,虽然对于写代码并没有什么卵用,但是真的感觉对于网络逻辑传输的硬件软件都有了个很爽的认识.还有又刷了次廖大神的python教程发现比以前多了很多内容.近几天在看一本叫<Data Structures and Algorithms with Python>的书,争取的是每天上午看一章,觉得写的挺好的,刚看到第四章,感觉对于pyth
from flask import Flask, render_template, g app = Flask(__name__) @app.route("/") def index(): return render_template("index.html") # run in under twisted through wsgi from twisted.web.wsgi import WSGIResource from twisted.web.server i