- 浏览: 373446 次
- 性别:
- 来自: 四川
文章分类
- 全部博客 (247)
- 数据库以及sql (11)
- java (48)
- 爬虫学习 (20)
- java编程 (28)
- python编程以及安装和配置 (27)
- oracle数据库 (32)
- mongodb基本操作 (4)
- linux学习 (7)
- easyUI (2)
- nodeJs (8)
- python学习 (16)
- 其他 (13)
- hadoop (1)
- svn (1)
- 汉字 (1)
- windows (2)
- jsp (5)
- fiddler (1)
- ETL (1)
- teamviewer (1)
- maven (4)
- GIT (2)
- datagrip (1)
- ocr (1)
- redis (3)
- mysql (3)
- linux (1)
- 数据服务 (0)
最新评论
=======================get请求
# coding=utf-8
'''
Created on 2017年5月9日
@author: chenkai
'''
import bottle
def check_login(username, password):
if username == 'kaige' and password == '123456':
return True
else:
return False
@bottle.route('/login')
def login():
if bottle.request.GET.get('do_submit','').strip(): #点击登录按钮
# 第一种方式(latin1编码)
## username = bottle.request.GET.get('username','').strip() # 用户名
## password = bottle.request.GET.get('password','').strip() # 密码
#第二种方式(获取username\password)(latin1编码)
getValue = bottle.request.query_string
## username = bottle.request.query['username'] # An utf8 string provisionally decoded as ISO-8859-1 by the server
## password = bottle.request.query['password'] # 注:ISO-8859-1(即aka latin1编码)
#第三种方式(获取UTF-8编码)
username = bottle.request.query.username # The same string correctly re-encoded as utf8 by bottle
password = bottle.request.query.password # The same string correctly re-encoded as utf8 by bottle
if check_login(username, password):
return "<p>登录成功</p>"
else:
return "<p>登陆失败,用户名或者密码错误</p>"
else:
return ''' <form action="/login" method="get">
Username: <input name="username" type="text" />
Password: <input name="password" type="password" />
<input value="Login" name="do_submit" type="submit">
</form>
'''
bottle.run(host='localhost', port=8083)
运行这个py程序后,浏览器输入:http://localhost:8083/login , 输入用户名和密码,点击登录
===================================post请求
# coding=utf-8
'''
Created on 2017年5月9日
@author: chenkai
'''
import bottle
def check_login(username, password):
if username == 'kaige' and password == '123456':
return True
else:
return False
@bottle.route('/login')
def login():
return ''' <form action="/login" method="post">
Username: <input name="username" type="text" />
Password: <input name="password" type="password" />
<input value="Login" type="submit">
</form>
'''
@bottle.route('/login', method='POST')
def do_login():
# 第一种方式
# username = request.forms.get('username')
# password = request.forms.get('password')
#第二种方式
postValue = bottle.request.POST.decode('utf-8')
username = bottle.request.POST.get('username')
password = bottle.request.POST.get('password')
if check_login(username, password):
return "<p> 登录成功</p>"
else:
return "<p> 登录失败 </p>"
bottle.run(host='localhost', port=8083)
运行这个py程序后,浏览器输入:http://localhost:8083/login , 输入用户名和密码,点击登录,这个明显是post请求, 而且浏览器不会显示参数
# coding=utf-8
'''
Created on 2017年5月9日
@author: chenkai
'''
import bottle
def check_login(username, password):
if username == 'kaige' and password == '123456':
return True
else:
return False
@bottle.route('/login')
def login():
if bottle.request.GET.get('do_submit','').strip(): #点击登录按钮
# 第一种方式(latin1编码)
## username = bottle.request.GET.get('username','').strip() # 用户名
## password = bottle.request.GET.get('password','').strip() # 密码
#第二种方式(获取username\password)(latin1编码)
getValue = bottle.request.query_string
## username = bottle.request.query['username'] # An utf8 string provisionally decoded as ISO-8859-1 by the server
## password = bottle.request.query['password'] # 注:ISO-8859-1(即aka latin1编码)
#第三种方式(获取UTF-8编码)
username = bottle.request.query.username # The same string correctly re-encoded as utf8 by bottle
password = bottle.request.query.password # The same string correctly re-encoded as utf8 by bottle
if check_login(username, password):
return "<p>登录成功</p>"
else:
return "<p>登陆失败,用户名或者密码错误</p>"
else:
return ''' <form action="/login" method="get">
Username: <input name="username" type="text" />
Password: <input name="password" type="password" />
<input value="Login" name="do_submit" type="submit">
</form>
'''
bottle.run(host='localhost', port=8083)
运行这个py程序后,浏览器输入:http://localhost:8083/login , 输入用户名和密码,点击登录
===================================post请求
# coding=utf-8
'''
Created on 2017年5月9日
@author: chenkai
'''
import bottle
def check_login(username, password):
if username == 'kaige' and password == '123456':
return True
else:
return False
@bottle.route('/login')
def login():
return ''' <form action="/login" method="post">
Username: <input name="username" type="text" />
Password: <input name="password" type="password" />
<input value="Login" type="submit">
</form>
'''
@bottle.route('/login', method='POST')
def do_login():
# 第一种方式
# username = request.forms.get('username')
# password = request.forms.get('password')
#第二种方式
postValue = bottle.request.POST.decode('utf-8')
username = bottle.request.POST.get('username')
password = bottle.request.POST.get('password')
if check_login(username, password):
return "<p> 登录成功</p>"
else:
return "<p> 登录失败 </p>"
bottle.run(host='localhost', port=8083)
运行这个py程序后,浏览器输入:http://localhost:8083/login , 输入用户名和密码,点击登录,这个明显是post请求, 而且浏览器不会显示参数
发表评论
-
Pycharm常用快捷键
2018-10-17 16:45 794pycharm常用快捷键 1、编辑(Editing) Ctr ... -
python连接oracle数据库报错PI-1047: 64-bit Oracle Client library cannot be loaded: "解决方案
2018-10-17 16:44 7211错误原因:instantclient版本为32位,需更换成64 ... -
pycharm安装第三方库的方式
2018-10-16 17:33 20861.点击settings之后再点击project下面的proj ... -
pycharm中配置中文头, 不用每次都写
2018-10-16 17:20 1855打开file->settings->Editor- ... -
python 中__name__ = '__main__' 的作用
2018-09-14 09:50 1676出自:https://www.cnblogs.com/alan ... -
python中的textblob库的作用说明
2018-09-14 09:40 3841TextBlob 是一款 Pythonic 的文本处理工具,用 ... -
python 利用bottle微服务提供post接口,供第三方调用
2018-09-12 16:11 1189=============================== ... -
python中的请求参数乱码 解决
2018-09-12 15:39 1302import urllib def geturltoutf8 ... -
python 安装nltk
2018-09-07 18:02 33811、在cmd窗口中,进入到python的文件夹内的 Scrip ... -
python 情感分析
2018-09-07 17:05 1672转:https://blog.csdn.net/u011001 ... -
python结巴分词
2018-03-20 14:46 607# coding=utf-8 ''' Created on 2 ... -
anaconda安装与配置环境变量,以及anaconda是什么,有什么用。
2017-07-12 10:15 10685anaconda安装与配置环境变量: 官网:https://w ... -
python中利用adb shell 控制手机,完美解决中文输入问题
2017-06-03 10:25 53841.连接手机, 打开开发者选项, 连接USB, (如果需要记录 ... -
selenium设置网页文本框中文值报错解决方法
2017-03-20 10:06 1044selenium设置网页文本框中文值报错解决方法 elem = ... -
python多进程和多线程的区别
2017-03-14 17:33 1150多线程和多进程最大的 ...
相关推荐
在给定的标题和描述中,“python做get和post请求”指的就是如何使用Python实现HTTP的GET和POST方法。这两种方法是HTTP协议中最基本的操作,GET用于获取资源,而POST用于提交数据。 在Python中,有几个模块可以用来...
本文将深入探讨如何使用Python实现一个简单的HTTP服务器,支持GET和POST请求。通过理解这个过程,你可以更好地理解网络通信的基本原理,以及Python在网络编程中的应用。 首先,让我们了解HTTP(超文本传输协议)的...
在Python的Web开发中,Bottle框架是一个轻量级的选择,适合构建简单的API服务和小型应用。然而,在开发过程中,遇到跨域资源共享(CORS)问题是很常见的,尤其是在前端使用Ajax进行跨域请求时。本文将深入探讨如何...
在Python中,我们可以使用内置的`http.client`模块或者第三方库如`requests`来实现HTTP请求,包括GET和POST方法。本文将详细讨论这两种方法以及如何在Python3中实现它们。 1. GET请求 GET是最常见的HTTP请求方法,...
本文研究的主要是Python使用requests发送POST请求的相关内容,具体介绍如下。 一个http请求包括三个部分,为别为请求行,请求报头,消息主体,类似以下这样: 请求行 请求报头 消息主体 HTTP协议规定post提交的...
### Python的Bottle框架中实现最基本的get和post的方法的教程 #### 一、Bottle框架简介 Bottle是一个快速、简单且轻量级的WSGI兼容的Web应用框架,非常适合小型应用或作为更大的应用程序的一部分使用。它使用单一...
1.安装对应的库 2.将test_http_copy.py代码复制到自己的服务器或电脑上 3.python test_http_copy.py启动或(ohup python -u test_http_copy.py > test.log 2>&1 & 后台启动) 4.使用postman调用自测。
了解了GET和POST请求的区别后,我们可以根据实际需求选择合适的请求方式来编写Python网络爬虫。在爬取过程中,还需要注意处理各种可能的反爬策略,如验证码、IP限制等。同时,要遵守网站的robots.txt规则,尊重网站...
Bottle是一个微型的Python Web框架,其设计思想非常独特:它只有一个文件模块,且不依赖于除Python标准库外的任何第三方模块。这使得Bottle非常轻巧,便于理解和使用。Bottle框架的特性包括路由、模板、工具和服务器...
python web的bottle框架文档。Bottle是一个简单高效的遵循WSGI的微型python+Web框架。说微型,是因为它只有一个文件,除Python标准库外,它不依赖于任何第三方模块。&oq=Bottle是一个简单高效的遵循WSGI的微型python...
在这个场景中,我们关注的是如何使用libcurl库(一个强大的URL传输库)在C++中向一个用Python编写的简单服务器发送POST请求,同时携带JSON数据。让我们深入探讨这个过程中的关键知识点。 首先,我们要了解Python的...
2. 批量发送POST请求:文档介绍了如何在Python中实现批量发送POST请求的功能。在真实场景中,这种需求可能出现在需要自动化测试、数据采集、接口调用等多个场景。文档提供了Java和Python两种语言的实现代码,对初学...
Python SocketServer通信框架是Python标准库中的一个模块,它提供了基于TCP/IP协议的服务器端编程基础框架,可以方便地创建自定义的服务。本项目实例基于SocketServer,实现了长连接和多线程通信,同时处理了通信...
本文将深入探讨POST实例,如何模仿POST请求,以及如何获取并处理请求返回的值。 首先,POST请求主要用于向服务器发送数据,通常用于创建新的资源。与GET请求不同,GET请求会在URL中附带参数,而POST请求的数据则...
使用python的bottle框架开发的一个留言本的实例,此实例在apache的wsgi模式下工作良好,第一次学习,有很多疏漏希望大家多多指教http://www.richdata.org/archives-209-richdata.html
本资源"python项目框架实例代码"聚焦于介绍Python中的项目框架,通过实际代码来帮助理解并掌握这些框架的用法。 1. **Python代码**:Python的语法简洁明了,易于学习,适合初学者入门。这里的代码实例可以帮助你...
### Python教程之Bottle Web开发 #### Bottle框架简介 Bottle是一个用Python编写的轻量级Web应用框架,因其简洁高效的特点,在小型项目或快速原型开发中被广泛使用。本教程将详细介绍如何使用Bottle框架进行Web...
在Python web开发中,Bottle框架是一个轻量级的、易于使用的微型Web框架,它允许开发者用少量的代码实现复杂的Web应用。而将Bottle与MySQL数据库连接起来,可以实现数据的存储和检索,这对于构建动态网站至关重要。...