摘要: 一、Flask简介Flask 是一个 Python 实现的 Web 开发微框架。官网:http://flask.pocoo.org/二、Demo1、代码结构.├── blog.py├── static│ ├── css│ │ └── index.css│ ├── images│ │ ├── cat.... 阅读全文
posted @ 2014-12-31 14:11 观海云不远 阅读(2986) 评论(0) 推荐(0)
摘要: demo#!/usr/bin/pythonclass Person: name = 'jim' age = 25 def say(self): print 'My name is ' + self.name + ', and age is ' + str(self.a... 阅读全文
posted @ 2014-12-31 13:53 观海云不远 阅读(346) 评论(0) 推荐(0)