如何自签发免费通配符域名证书并实现自动化----Let's Encrypt SSL 如何自签发免费通配符域名证书并实现自动化----Let's Encrypt 置顶! 有更新! 前置条件 一个二级域名,如 example.com 公网服务器ip,如 12.34.56.78 你的邮箱,如zhangsan@126.com 云账号的 secur 0 评论 0 浏览
终端格式化打印json数据的方法 Python 终端格式化打印json数据的方法 有更新! echo '{"status":200,"data":[{"id":1000,"name":"John"},{"id":1004,"name":"Tom"}]}' 0 评论 0 浏览
pip不能安装、升级、卸载软件问题 Python pip不能安装、升级、卸载软件问题 例如想要升级docker模块时 使用命令: pip install docker==3.1.3 报错: ERROR: Cannot uninstall 'req 0 评论 0 浏览
《Python核心编程(第三版)》读书笔记 Python 《Python核心编程(第三版)》读书笔记 有更新! 下载链接:https://github.icu/downloads/books/python/Python核心编程(第3版)PDF高清晰完整中文版.pdf 百度云 0 评论 0 浏览
Python字典中由value查key的几点说明 Python Python字典中由value查key的几点说明 本文摘自:https://blog.csdn.net/ywx1832990/article/details/79145576 众所周知,字典dict最大的好处就是 0 评论 0 浏览
pip安装出现Command "python setup.py egg_info" failed with error code 1 的解决方案 Python pip安装出现Command "python setup.py egg_info" failed with error code 1 的解决方案 本文摘自:https://blog.csdn.net/qq_37788558/article/details/79049410 python -m pip ins 0 评论 0 浏览
python socket 发送16进制数据 Python python socket 发送16进制数据 本文摘自:https://blog.csdn.net/qq_40650217/article/details/79076183 给服务器发送16进制数据,客户端代 0 评论 0 浏览
Python3 串口接收与发送16进制数据包 Python Python3 串口接收与发送16进制数据包 本文摘自:https://blog.csdn.net/colcloud/article/details/42490867 import serial import 0 评论 0 浏览
Windows使用bat批处理执行python程序 Python Windows使用bat批处理执行python程序 本文摘自:https://blog.csdn.net/HJULKK/article/details/52549674 步骤1: 先写一个简单的python程序pr 0 评论 0 浏览
Python3.6通过自带的urllib通过get或post方法请求url Python Python3.6通过自带的urllib通过get或post方法请求url 本文摘自:https://blog.csdn.net/qq5132834/article/details/78904974 # coding:utf-8 from 0 评论 0 浏览
python 获取当前代码行号 Python python 获取当前代码行号 import sys print "here is :",__file__,sys._getframe().f_lineno 0 评论 0 浏览
Python——threading同时运行多个线程实例讲解 Python Python——threading同时运行多个线程实例讲解 有更新! Python里面经常会用到多线程,即所有的方法在同一时间开始运行,而不是按顺序一个一个运行。所用到的模块为threading,下面详解threading用法。 一 0 评论 0 浏览
python 多线程操作数据库 Python python 多线程操作数据库 有更新! 本文摘自:https://www.cnblogs.com/pxfb/p/6923797.html 如果使用多线程操作数据库,容易引起多用户操作锁表 Operati 0 评论 0 浏览
python简单实现获取当前时间 Python python简单实现获取当前时间 本文摘自:https://www.jb51.net/article/91365.htm 如何用time模块来时间我们要的时间: >>> impo 0 评论 0 浏览
mac上IDLE打不开,提示IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall Python mac上IDLE打不开,提示IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall 在Mac上安装Python2.7后,启动IDLE后会报错。报错信息如下: IDLE's subprocess didn't make connection. Ei 0 评论 0 浏览
Python读写ini文件的方法 Python Python读写ini文件的方法 本文实例讲述了Python读写ini文件的方法。分享给大家供大家参考。具体如下: 比如有一个文件update.ini,里面有这些内容: [ZIP] EngineV 0 评论 0 浏览
python线程传参 Python python线程传参 t1 = threading.Thread(target=method,args = ('rtsp://admin:123456@192.168.20.2','_ 0 评论 0 浏览
python-线程的暂停, 恢复, 退出 Python python-线程的暂停, 恢复, 退出 有更新! 我们都知道python中可以是threading模块实现多线程, 但是模块并没有提供暂停, 恢复和停止线程的方法, 一旦线程对象调用start方法后, 只能等到对 0 评论 0 浏览
Flask在根目录'/'下返回静态HTML模版 Python Flask在根目录'/'下返回静态HTML模版 有更新! 本文摘自:https://blog.csdn.net/u014030117/article/details/46508901 实例化Flask类的时候做一个小设置 0 评论 0 浏览
Python 添加windows server服务程序 Python Python 添加windows server服务程序 本文摘自:https://blog.csdn.net/alex_bean/article/details/77924498 简介 添加windows server 0 评论 0 浏览