falsk 相關 安裝運用

2021-09-28 22:27:47 字數 4032 閱讀 8461

安裝flask

pip install flask
第乙個程式:

from flask import flask

def index():

return ''

if __name__ == '__main__':

2、通過使用變數規則,通過 就可以在 url 中新增變數

from flask import flask

def index(xuehao):

return '

登入退出

manager

from flask import flask

from flask_script import manager

if __name__ == '__main__':

manager.run()

第乙個檢視

from flask import blueprint, render_template, json

blue = blueprint('first_blue', __name__)

@blue.route('/day9/')

@blue.route('/')

def hello_world():

name = 'zhangsan' # 字元

dict1 = # 字典

strs1 = ['ai人工智慧-訓練機器學習', '智慧型校園', '泉舟時代', '智慧型水利', '智慧型園區', '智慧型防汛', '智慧型機場', '智慧型環保']

return render_template('index.html', dict=dict1, name=name, strs=strs1)

#@blue.route('/url_for/')

def url_for():

result=url_for('first_blue.index')

return result

第二個檢視

from flask import blueprint, url_for, render_template, request, redirect, response

blue = blueprint('second_blue', __name__)

@blue.route('/')

def index():

return 'hello flask'

@blue.route('/url_for/')

def url():

result = url_for('second_blue.index')

# return redirect(result)

return str(result)

@blue.route('/home/')

def home():

username = request.cookies.get('user')

print(username)

return render_template('home.html', username=username)

@blue.route('/login/', methods=['get', 'post'])

def login():

if request.method == "get":

return render_template('login.html')

elif request.method == "post":

username = request.form.get('username')

print(username)

response = response('恭喜你登入成功:%s' % username)

response.set_cookie('user', username)

print(request.cookies.get('user'))

# return redirect(url_for('second_blue.home')) # response

# return response

username = request.cookies.get('user')

print(username)

return render_template('home.html', username=username)

@blue.route('/logout/')

def logout():

rsp = redirect(url_for('second_blue.home'))

rsp.delete_cookie('user')

return rsp

會話技術

●跨越請求傳遞資料

●web開發中使用的短連線

●cookie

。客戶端會話技術

。資料都是儲存在瀏覽器中

。支援過期

。不能跨網域名稱

■frame標籤

■可以直接載入整個**

。不能跨瀏覽器

。cookie是通過response來進行操作

。session

●token

使用者登入

1.使用者中心

2.使用者登陸

3.使用者退出

新增的login() 中新增

session['user'] = username
home()中新增

session.get('user')
logout() 新增

session.clear()
●cookie

客戶端會話技術

。資料都是儲存在瀏覽器中

。支援過期

。不能跨網域名稱

■frame標籤

■可以直接載入整個**

。不能跨瀏覽器

。cookie是通過response來進行操作

。flask中的cookie可以直接支援中文

■flask對cookie中的內容做了編碼

●session

●token

安裝

pip install flask-session   

pip install redis

** manager

redis 安裝

base10.html

#ctrl+alt+space

#tab

inde10.html 第一次 extend 呼叫 封裝好的模板

『第二次呼叫 mine.html

}} django 的語法#}}}

}這是底部

單獨寫了乙個 內容 content10.html

python 的巨集定義}}

}歡迎}歲的}來到大資料物聯網時代!

}}

技術支援:

泉舟時代集團

八、附:

中國數字城市排名

北京、上海、廣州、深圳、杭州、貴州、福州、泉州、廈門

智慧型城市建設投入排名

上海、北京、深圳、天津、蘇州、重慶、杭州、武漢、廣州、寧波。

城市資訊化程度排名

廣州、北京、上海、南京、杭州、武漢、深圳、長沙、蘇州、瀋陽。

數字經濟排名

北京、上海、深圳、廣州、天津、杭州、蘇州、南京、重慶、成都。

城市應急管理智慧型化排名

天津、重慶、武漢、長沙、青島、合肥、鄭州、東營、無錫、南京。

結合ai和5g的智慧型城市試點城市

上海、北京、浙江、廣東、安徽、山東等省市

首發10大領域、19個場景,涉及「ai工廠」「ai園區」「ai社群」「ai交通」「ai學校」「ai醫院」「ai家庭」「ai政務」「ai金融」「ai安防」十大場景

19 SOAP安裝,運用與比對結果解釋

1 該軟體是二進位制的,解壓後可以直接用,加壓後可看到2bwt builder,soap兩個可以執行的檔案 1.1 用2bwt builder對fa檔案建立索引 使用方法 2bwt builder 1.2.將reads與序列進行比對 se soap soap2.21release soap a d ...

MPI Linux安裝執行

1.安裝 依次執行.configure disable fortran disable f77 enable sharedlibs gcc enable shared make make install make clean 這樣預設系統 usr local bin就有mpicc mpiexec等命...

SPEC MPI 安裝執行

經過一天的折騰,總算把specmpi安裝完成並成功執行了提供的測試負載,在這裡記下過程以免再用。首先開始的安裝過程很順利,只是官網提供的配置檔案無法使用導致了大量的多餘工作。告訴你基本的runspec執行給你希望的 告訴你配置檔案是什麼,如何自己寫配置檔案的 查詢specmpi 不同公司的結果的 上...