FLASK初步实践

感觉经过DJANGO,CI,RAILS之类的WEB框架之后,FLASK的思路就比较顺畅了。。。

FLASKR.PY    

import sqlite3
from flask import Flask, request, session, g, redirect, url_for,     abort, render_template, flash
from contextlib import closing

DATABASE = ‘/tmp/flaskr.db‘
DEBUG = True
SECRET_KEY = ‘development key‘
USERNAME = ‘admin‘
PASSWORD = ‘default‘

app = Flask(__name__)
app.config.from_object(__name__)
#app.config.from_envvar(‘FLASKR_SETTINGS‘, silent=True)

def connect_db():
    return sqlite3.connect(app.config[‘DATABASE‘])

def init_db():
    with closing(connect_db()) as db:
    with app.open_resource(‘schema.sql‘) as f:
        db.cursor().executescript(f.read())
    db.commit()

@app.before_request
def before_request():
    g.db = connect_db()

@app.teardown_request
def teardown_request(exception):
    g.db.close()

@app.route(‘/‘)
def show_entries():
    cur = g.db.execute(‘select title, text from entries order by id desc‘)
    entries = [dict(title=row[0], text=row[1]) for row in cur.fetchall()]
    return render_template(‘show_entries.html‘, entries = entries)

@app.route(‘/add‘, methods=[‘POST‘])
def add_entry():
    if not session.get(‘logged_in‘):
    abort(401)
    g.db.execute(‘insert into entries (title, text) values (?, ?)‘,
        [request.form[‘title‘], request.form[‘text‘]])
    g.db.commit()
    flash(‘New entry was successfully posted.‘)
    return redirect(url_for(‘show_entries‘))

@app.route(‘/login‘, methods=[‘GET‘, ‘POST‘])
def login():
    error = None
    if request.method == ‘POST‘:
    if request.form[‘username‘] != app.config[‘USERNAME‘]:
        error = ‘Invalid password‘
    elif request.form[‘password‘] != app.config[‘PASSWORD‘]:
        error = ‘Invalid password‘
    else:
        session[‘logged_in‘] = True
        flash(‘You were logged in‘)
        return redirect(url_for(‘show_entries‘))
    return render_template(‘login.html‘, error=error)

@app.route(‘/logout‘)
def logout():
    session.pop(‘logged_in‘, None)
    flash(‘You were logged out‘)
    return redirect(url_for(‘show_entries‘))
if __name__ == ‘__main__‘:
    app.run(host="0.0.0.0", port=5000)

SCHEMA.SQL

drop table if exists entries;
create table entries (
    id integer primary key autoincrement,
    title string not null,
    text string not null
);

layout.html

<!doctype html>
<title>Flaskr</title>
<link rel=stylesheet type=text/css href="{{ url_for(‘static‘, filename=‘style.css‘) }}">
<div class=page>
  <h1>Flaskr</h1>
  <div class=metanav>
  {% if not session.logged_in %}
    <a href="{{ url_for(‘login‘) }}">log in</a>
  {% else %}
    <a href="{{ url_for(‘logout‘) }}">log out</a>
  {% endif %}
  </div>
  {% for message in get_flashed_messages() %}
    <div class=flash>{{ message }}</div>
  {% endfor %}
  {% block body %}{% endblock %}
</div>

login.html

{% extends "layout.html" %}
{% block body %}
  <h2>Login</h2>
  {% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
  <form action="{{ url_for(‘login‘) }}" method=post>
    <dl>
      <dt>Username:
      <dd><input type=text name=username>
      <dt>Password:
      <dd><input type=password name=password>
      <dd><input type=submit value=Login>
    </dl>
  </form>
{% endblock %}

show_entries.html

{% extends "layout.html" %}
{% block body %}
  {% if session.logged_in %}
    <form action="{{ url_for(‘add_entry‘) }}" method=post class=add-entry>
      <dl>
        <dt>Title:
        <dd><input type=text size=30 name=title>
        <dt>Text:
        <dd><textarea name=text rows=5 cols=40></textarea>
        <dd><input type=submit value=Share>
      </dl>
    </form>
  {% endif %}
  <ul class=entries>
  {% for entry in entries %}
    <li><h2>{{ entry.title }}</h2>{{ entry.text|safe }}
  {% else %}
    <li><em>Unbelievable.  No entries here so far</em>
  {% endfor %}
  </ul>
{% endblock %}

style.css

body            { font-family: sans-serif; background: #eee; }
a, h1, h2       { color: #377BA8; }
h1, h2          { font-family: ‘Georgia‘, serif; margin: 0; }
h1              { border-bottom: 2px solid #eee; }
h2              { font-size: 1.2em; }

.page           { margin: 2em auto; width: 35em; border: 5px solid #ccc;
                  padding: 0.8em; background: white; }
.entries        { list-style: none; margin: 0; padding: 0; }
.entries li     { margin: 0.8em 1.2em; }
.entries li h2  { margin-left: -1em; }
.add-entry      { font-size: 0.9em; border-bottom: 1px solid #ccc; }
.add-entry dl   { font-weight: bold; }
.metanav        { text-align: right; font-size: 0.8em; padding: 0.3em;
                  margin-bottom: 1em; background: #fafafa; }
.flash          { background: #CEE5F5; padding: 0.5em;
                  border: 1px solid #AACBE2; }
.error          { background: #F0D6D6; padding: 0.5em; }

时间: 2024-10-13 03:18:54

FLASK初步实践的相关文章

fabric 初步实践

在集群部署时,我们经常用到堡垒机作为跳板,堡垒机和集群的其他的用户名.密码.端口号都是不同的,fabric如何进行配置不同的用户.端口号和密码. fabric作为一种强大的运维工具,可以让部署运维轻松很多,最简单的fabric使用,首先设置env.user, env.port, env.hosts, env.password,如: 12345678910 #coding:utf8from fabric.api import *#用户名env.user = "shikanon"#中转ip

caffe初步实践---------使用训练好的模型完成语义分割任务

caffe刚刚安装配置结束,乘热打铁! (一)环境准备 前面我有两篇文章写到caffe的搭建,第一篇cpu only ,第二篇是在服务器上搭建的,其中第二篇因为硬件环境更佳我们的步骤稍显复杂.其实,第二篇也仅仅是caffe的初步搭建完成,还没有编译python接口,那么下面我们一起搞定吧! 首先请读者再回过头去看我的<Ubuntu16.04安装配置Caffe>( http://www.cnblogs.com/xuanxufeng/p/6150593.html  ) 在这篇博文的结尾,我们再增加

postgresql 数组类型初步实践

实践环境 数据库:postgresql 9.4:操作系统:windows 创建包含数组类型的数据库 注意在设置default 值时(当然你可以不指定默认值),要声明数组的类型,像这样声明"::bigint[]". create table testarray( id serial primary key, images bigint[] default array[]::bigint[] ); 插入数组值 注意插入数组时,也要声明数组的类型,同上 insert into testarr

ELK初步实践

ELK是一个日志分析和统计框架,是Elasticsearch.Logstash和Kibana三个核心开源组件的首字母缩写,实践中还需要filebeat.redis配合完成日志的搜集. 组件一览 名称 版本 说明 Elasticsearch 2.3 分布式搜索引擎,存储和搜索日志 Logstash 2.3 分析和搜集日志的工具,实践中主要使用它的分析功能 Kibana 4.5 为Elasticsearch的查询.分析和统计提供友好的web界面 Filebeat 1.2 日志搜集 Redis 2.8

flask 简单实践

1.Flask 表单: 为了能够处理 web 表单,我们将使用 Flask-WTF,该扩展封装了 WTForms 并且恰当地集成进 Flask 中. 创建一个配置文件以至于容易被编辑.(文件 config.py): CSRF_ENABLED = TrueSECRET_KEY = 'shi-yan-lou' Flaks-WTF 扩展只需要两个配置. CSRF_ENABLED 配置是为了激活 跨站点请求伪造 保护.在大多数情况下,你需要激活该配置使得你的应用程序更安全些. SECRET_KEY 配置

flask部署实践

用flask mongodb开发了内部工具,部署在了ucloud centos上 已经稳定的跑了半个月了 现在记录一下部署的过程 使用gunicorn怪兽作为wsgi 指定gevent 协程作为其worker-class 使用supervisor来管理和自动重启,使用nginx来反向代理 #supervisor ###supervisor #web ui [inet_http_server] ; inet (TCP) server disabled by default port=*:9002

Rsync初步实践

第1章   Rsync介绍 1.1  什么是Rsync? Rsync是一款开源的.快速的.多功能的.可实现全量及增量的本地或远程数据同步备份的优秀工具.Rsync软件适用于unix/linux/windows等多种操作系统平台. 下面是官方的英文简单描述:rsync - a fast, versatile, remote (and local) file-copying tool 来自:www.samba.org/ftp/rsync/rsync.html 1.2  Rsync简介 Rsync英文

Ganglia + Nagios 初步实践

参考文档: http://www.bubuko.com/infodetail-715636.html http://www.linuxidc.com/Linux/2014-01/95804p2.htm 当然,以后还要让两者整合,一个性能,一个报警. 然后,监控大数据集群!

asp.net + jQuery.Ajax初步实践

最近在做一个网站项目时,有异步请求的需求,经过一番查找资料,终于实现了这个部分,在此记录一下,以备日后回顾. 1.jQuery的ajax函数可以很方便的建立发起异步请求 $(".drop-a").click(function () { var content = $(this).next("div"); if (isGet == false) { var code = $("#code").html(); var data = { code: c