随笔分类 - Python
摘要:GitHub链接 https://github.com/WindSnowLi/My-python-tools/blob/main/DownloadM3u8/marge.py # -*- coding: UTF-8 -*- from genericpath import exists import o
阅读全文
摘要:java服务端单线程示例 import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.ServerSocket; import java.net.Socket
阅读全文
摘要:Python连接Mysql 1.安装对应的库 使用Python连接Mysql数据库需要安装相应的库 以管理员身份运行cmd,输入命令 pip install mysql-connector 安装完成后建立 test.py 写入 import mysql.connector 保存后运行 python
阅读全文
摘要:可以将安装源切换至国内 可以在 C:\Users\用户名 下新建pip文件夹 并在pip文件夹下新建pip.ini文件 并在pip.ini文件中写入 [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] tru
阅读全文