python flask框架實(shí)現(xiàn)重定向功能示例
本文實(shí)例講述了python flask框架實(shí)現(xiàn)重定向功能。分享給大家供大家參考,具體如下:
flask 重定向:
from flask import *
app = Flask(__name__)
@app.route('/')
def index():
return redirect(url_for('login'))
@app.route('/login')
def login():
return render_template('login.html')
if __name__ == '__main__':
app.run(host='0.0.0.0',port=6001,debug=True)
[oracle@node01 ~]$ curl 192.168.137.1:6001
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>Redirecting...</title>
<h1>Redirecting...</h1>
<p>You should be redirected automatically to target URL: <a href="/login" rel="external nofollow" rel="external nofollow" >/login</a>. If not click the link.[oracle@node01 ~]$
use Net::SMTP;
use LWP::UserAgent;
use HTTP::Cookies;
use HTTP::Headers;
use HTTP::Response;
use Encode;
use Switch;
use File::Temp qw/tempfile/;
use HTTP::Date qw(time2iso str2time time2iso time2isoz);
use Data::Dumper;
my $CurrTime = time2iso(time());
my $ua = LWP::UserAgent->new;
$ua->timeout(10);
$ua->env_proxy;
my $now = time();
$ua->agent('Mozilla/5.0');
my $cookie_jar = HTTP::Cookies->new(
file => 'lwp_cookies.txt',
autosave => 1,
ignore_discard => 1
);
$ua->cookie_jar($cookie_jar);
my $response = $ua->get("http://127.0.0.1:6001/");
if ($response->is_success) {
print encode("gbk",decode("utf8",Dumper($response)));
$r=$response->content;
$str=encode("gbk",decode("utf8","$r"));
print $str."\n";
}
perl 演示:
C:\Users\TLCB\Desktop\python\模塊\flask>perl a1.pl
$VAR1 = bless( {
'_protocol' => 'HTTP/1.0',
'_content' => '這是登陸頁(yè)面',
'_rc' => 200,
'_headers' => bless( {
'client-date' => 'Fri, 01 Sep 2017 03:23:34 GMT',
'content-type' => 'text/html; charset=utf-8',
'client-response-num' => 1,
'date' => 'Fri, 01 Sep 2017 03:23:34 GMT',
'client-peer' => '127.0.0.1:6001',
'server' => 'Werkzeug/0.12.2 Python/2.7.10',
'content-length' => '18'
}, 'HTTP::Headers' ),
'_previous' => bless( {
'_protocol' => 'HTTP/1.0',
'_content' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>Redirecting...</title>
<h1>Redirecting...</h1>
<p>You should be redirected automatically to target URL: <a href="/login" rel="external nofollow" rel="external nofollow" >/login</a>. If not click the link.',
'_rc' => '302',
'_headers' => bless( {
'client-response-num' => 1,
'location' => 'http://127.0.0.1:6001/login',
'date' => 'Fri, 01 Sep 2017 03:23:34 GMT',
'client-peer' => '127.0.0.1:6001',
'content-length' => '219',
'client-date' => 'Fri, 01 Sep 2017 03:23:34 GMT',
'content-type' => 'text/html; charset=utf-8',
'server' => 'Werkzeug/0.12.2 Python/2.7.10',
'title' => 'Redirecting...'
}, 'HTTP::Headers' ),
'_msg' => 'FOUND',
'_request' => bless( {
'_content' => '',
'_uri' => bless( do{\(my $o = 'http://127.0.0.1:6001/')}, 'U
'_headers' => bless( {
'user-agent' => 'Mozilla/5.0'
}, 'HTTP::Headers' ),
'_method' => 'GET',
'_uri_canonical' => $VAR1->{'_previous'}{'_request'}{'_uri'}
}, 'HTTP::Request' )
}, 'HTTP::Response' ),
'_msg' => 'OK',
'_request' => bless( {
'_protocol' => undef,
'_content' => '',
'_uri' => bless( do{\(my $o = 'http://127.0.0.1:6001/login')}, 'URI::http' ),
'_headers' => bless( {
'user-agent' => 'Mozilla/5.0'
}, 'HTTP::Headers' ),
'_method' => 'GET',
'_uri_canonical' => $VAR1->{'_request'}{'_uri'}
}, 'HTTP::Request' )
}, 'HTTP::Response' );
這是登陸頁(yè)面
C:\Users\TLCB\Desktop\python\模塊\flask>
希望本文所述對(duì)大家基于Flask框架的Python程序設(shè)計(jì)有所幫助。
相關(guān)文章
局域網(wǎng)內(nèi)python socket實(shí)現(xiàn)windows與linux間的消息傳送
這篇文章主要介紹了局域網(wǎng)內(nèi)python socket實(shí)現(xiàn)windows與linux間的消息傳送的相關(guān)知識(shí),非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-04-04
Python中Socket編程底層原理解析與應(yīng)用實(shí)戰(zhàn)
Socket編程是網(wǎng)絡(luò)通信的基礎(chǔ),Python通過(guò)內(nèi)置的socket模塊提供了強(qiáng)大的網(wǎng)絡(luò)編程接口,本文將結(jié)合實(shí)際案例,詳細(xì)介紹Python中Socket編程的基本概念、常用方法和實(shí)際應(yīng)用,需要的朋友可以參考下2024-08-08
如何在Python3中使用telnetlib模塊連接網(wǎng)絡(luò)設(shè)備
這篇文章主要介紹了如何在Python3中使用telnetlib模塊連接網(wǎng)絡(luò)設(shè)備,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-09-09
Python實(shí)現(xiàn)的檢測(cè)網(wǎng)站掛馬程序
這篇文章主要介紹了Python實(shí)現(xiàn)的檢測(cè)網(wǎng)站掛馬程序,需要的朋友可以參考下2014-11-11
python web框架中實(shí)現(xiàn)原生分頁(yè)
這篇文章主要為大家詳細(xì)介紹了python web框架中使用原生分頁(yè)的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-09-09
關(guān)于對(duì)python中self的深入理解
self代表類(lèi)的實(shí)例,而非類(lèi),下面這篇文章主要給大家介紹了關(guān)于對(duì)python中self的深入理解,文中通過(guò)實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下2022-09-09
Python XlsxWriter模塊Chart類(lèi)用法實(shí)例分析
這篇文章主要介紹了Python XlsxWriter模塊Chart類(lèi)用法,結(jié)合實(shí)例形式分析了Python XlsxWriter模塊Chart類(lèi)功能、圖表繪制常用方法及相關(guān)操作注意事項(xiàng),需要的朋友可以參考下2019-03-03
Python中創(chuàng)建表格詳細(xì)過(guò)程
這篇文章主要介紹了Python中創(chuàng)建表格,在python中使用tabulate庫(kù)來(lái)創(chuàng)建表格,并針對(duì)輸出形式進(jìn)行不斷改進(jìn)來(lái)美化輸出效果,并給出了代碼示例。需要的小伙伴可以參考一下2022-02-02
淺談keras的深度模型訓(xùn)練過(guò)程及結(jié)果記錄方式
今天小編就為大家分享一篇淺談keras的深度模型訓(xùn)練過(guò)程及結(jié)果記錄方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2020-01-01

