码迷,mamicode.com
首页 >  
搜索关键字:django-1.5 python web    ( 229213个结果
Python模块简介
模块 整形 浮点型 字符串 列表 字典 集合 元组 布尔值 collection模块 # namedtuple:具名元组 from collections import namedtuple # 导入模块方式 point = namedtuple('坐标',['x','y']) # 关键字named ...
分类:编程语言   时间:2021-03-03 11:51:10    阅读次数:0
python 3 解决 ERROR: Could not find a version that satisfies the requirement xxx 的问题
问题:pyhton 3安装module报错ERROR: Could not find a version that satisfies the requirement config.paths % pip install config.paths ERROR: Could not find a ve ...
分类:编程语言   时间:2021-03-03 11:48:53    阅读次数:0
[Python] ValueError: Unknown resampling filter
在使用Image模块的时候,出现一个错误。 ValueError: Unknown resampling filter (50). Use Image.NEAREST (0), Image.LANCZOS (1), Image.BILINEAR (2), Image.BICUBIC (3), Ima ...
分类:编程语言   时间:2021-03-03 11:46:51    阅读次数:0
一文讲通.NET Core部署到Windows IIS最全解决方案
本文详细介绍把.netcore发布到iis的方法,与ASP.NET时代不同,ASP.NET Core不再是由IIS工作进程(w3wp.exe)托管,而是使用自托管Web服务器(Kestrel)运行,IIS则是作为反向代理的角色转发请求到Kestrel不同端口的ASP.NET Core程序中,随后就... ...
分类:Windows程序   时间:2021-03-03 11:46:29    阅读次数:0
python执行sql语句里字符串格式化是否添加单引号的两种情况
1 1 import pymysql 2 2 3 3 db = pymysql.connect(host='localhost', user='root', password='123456', database='jddj',port=3306) 4 4 cursor = db.cursor() ...
分类:数据库   时间:2021-03-02 12:38:55    阅读次数:0
Pytest Pytest源码分析
Pytest源码分析 By:授客 QQ:1033553122 测试环境 pytest 5.4.3 测试脚本mytest.py #!/usr/bin/env python # -*- coding:utf-8 -*- import pytest def test_func(): # test开头的测试 ...
分类:其他好文   时间:2021-03-02 12:31:05    阅读次数:0
mysql数据批量写入
今天实现数据批量插入, 看了https://blog.csdn.net/weixin_42796152/article/details/107931768 《基于python,pandas,pymysql 将数据批量高效写入mysql数据库(保证可以用的那种)》的程序和自己编写的 insertMan ...
分类:数据库   时间:2021-03-02 12:29:40    阅读次数:0
python调包——hashlib加密
python调包——hashlib加密 #加密 md5 sha1 sha256 sha512 import hashlib msg ="hello world" md5 = hashlib.md5(msg.encode('utf-8'))#之所以选择用utf-8对msg进行编码,是因为考虑到了msg ...
分类:编程语言   时间:2021-03-02 12:27:58    阅读次数:0
第八章?Nginx Web快速入门-基础
1、Nginx基础概述 1、Nginx基础概述 1.1、nginx简述 1.1、nginx简述 Nginx是一个开源且高性能、可靠的Http Web服务、代理服务。 开源: 直接获取源代码 高性能: 支持海量并发 可靠: 服务稳定 1.2、我们为什么选择Nginx服务 1.2、我们为什么选择Ngin ...
分类:Web程序   时间:2021-03-02 12:19:25    阅读次数:0
bootstrap绑定表格
Bootstrap-Table是一个Boostrap的表格插件,能够将JSON数据直接显示在表格中。当然,这需要配置一些参数并进行初始化表格才行。其官方网站地址为:http://bootstrap-table.wenzhixin.net.cn/。里面可以下载使用所需的JS和CSS文件,以及参考文档和 ...
分类:其他好文   时间:2021-03-02 12:18:53    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!