标签:Python

Flask教学课 – 3、【Flask入门】Web服务器&应用服务器&应用框架

Flask教学课 – 3、【Flask入门】Web服务器&应用服务器&应用框架

服务器&应用服务器&应用框架 Web服务器:负责处理HTTP请求,响应静态文件。常见的有:Apache、Nginx、IIS。这些一般只是用来响应静态文件的工具,如果涉及到逻辑相关的操作就是使用到应用服务器 应用服务器:负责处理逻辑的服务器。比如:PHP、Python、

Nuanxinqing Nuanxinqing 2021-05-07
29 0 0
Flask教学课 – 2、【Flask入门】网址:URL的组成

Flask教学课 – 2、【Flask入门】网址:URL的组成

URL讲解(域名) 实例URL:http://www.abc.com:8080/news/index.asp?boardID=5&ID=24618&page=1#name 从上面的URL可以看出,一个完整的URL包括以下几部分: 1.协议部分:该URL的协议部分为“ht

Nuanxinqing Nuanxinqing 2021-05-06
28 0 0
Flask教学课 – 1、【Flask入门】准备工作

Flask教学课 – 1、【Flask入门】准备工作

课程介绍 这个Flask教程是博主针对自己的学习进行记录的博文,后续文章不再赘述。对Flask有学习需求的同学,可以追更此系列,学习系列之前必须得有Python、HTML的基础知识。 开始 1、安装Python Python官网:https://www.python.org/download

Nuanxinqing Nuanxinqing 2021-05-05
55 0 0
解决在Flask中使用jsonify产生的自动排序无法控制顺序的方法

解决在Flask中使用jsonify产生的自动排序无法控制顺序的方法

Demo 解决方法 第一种 在  app = Flask(__name__)  代码下面添加如下代码即可解决 app.config [ 'JSON_SORT_KEYS'] = False 第二种 不用jsonify,改用json.dumps。但是要加上mimetype,否则

Nuanxinqing Nuanxinqing 2021-03-30
152 0 0
Python GUI学习课程推荐

Python GUI学习课程推荐

Demo   Introduction 图形用户界面(Graphical User Interface,简称 GUI,又称图形用户接口)是指采用图形方式显示的计算机操作用户界面。图形用户界面是一种人与计算机通信的界面显示格式,允许用户使用鼠标等输入设备操纵屏幕上的图标或菜单选

Nuanxinqing Nuanxinqing 2021-02-21
114 0 0
Python – Basic exercises

Python – Basic exercises

Demo Explain Blogger himself recently completed a set of exercises, and the difficulty of the computer level 2 examination is relatively close, yo

Nuanxinqing Nuanxinqing 2020-12-30
38 0 0
Use Python get China epidemic data(historical data)

Use Python get China epidemic data(historical data)

Demo Explain Using Netease public database access epidemic data. And save it in Excel. Code # -*- coding:utf-8 -*- # @Author: Nuanxinqing # @T

Nuanxinqing Nuanxinqing 2020-12-13
28 0 0
Use Python get overseas epidemic data

Use Python get overseas epidemic data

Demo Explain Use Tencent's database to obtain global epidemic data.  And save it in Excel. Code # -*- coding:utf-8 -*- # @Author: Nuanxinqing

Nuanxinqing Nuanxinqing 2020-12-12
153 0 0
My first Python program(Domains ICP record query based on API)

My first Python program(Domains ICP record query based on API)

Demo Explain This is my first work after learning python . It's a domains ICP record query based on API . API provider : http://api.btstu.cn

Nuanxinqing Nuanxinqing 2020-11-14
148 0 0
1 2