上一页 1 2 3 4 5 6 ··· 327 下一页
摘要: python datetime.datetime.now() 北京时间 要获取北京时间(中国标准时间,UTC+8),可以使用datetime模块中的datetime和timedelta类。以下是一个简单的函数,用于获取北京时间:from datetime import datetime, timed 阅读全文
posted @ 2024-10-15 23:13 emanlee 阅读(115) 评论(0) 推荐(0) 编辑
摘要: import pymysql import pandas as pd def con_sql(sql): # 创建连接 db = pymysql.connect( host='0.0.0.0', user='aaa', password='bbb', database='ccc', charset= 阅读全文
posted @ 2024-10-15 20:27 emanlee 阅读(78) 评论(0) 推荐(0) 编辑
摘要: du-Disk Usagedf-Disk Free [root@VM-8-12-centos /]# df -hFilesystem Size Used Avail Use% Mounted ondevtmpfs 989M 0 989M 0% /devtmpfs 1000M 24K 1000M 1% 阅读全文
posted @ 2024-10-14 23:29 emanlee 阅读(5) 评论(0) 推荐(0) 编辑
摘要: uwsig 随系统启动 (centos) uwsig 随系统启动 (centos)要在CentOS系统中让uWSGI随系统启动,你可以创建一个系统服务单元文件。以下是一个基本的uWSGI服务文件示例:首先,找到你的uWSGI配置文件(通常是.ini文件)的位置。创建一个新的服务单元文件,例如 /us 阅读全文
posted @ 2024-10-14 23:25 emanlee 阅读(14) 评论(0) 推荐(0) 编辑
摘要: pip install uwsgi==2.0.23Looking in indexes: http://mirrors.tencentyun.com/pypi/simpleCollecting uwsgi==2.0.23 Downloading http://mirrors.tencentyun.c 阅读全文
posted @ 2024-10-14 20:36 emanlee 阅读(11) 评论(0) 推荐(0) 编辑
摘要: [root@VM-8-12-centos ~]# systemctl enable mysqlFailed to execute operation: No such file or directory systemctl start mysqldJob for mysqld.service fai 阅读全文
posted @ 2024-10-14 20:22 emanlee 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 2024/10/10 21:25:44 PM - ERROR - Internal Server Error: /abc Traceback (most recent call last): File "/root/abc/backend/venv/lib/python3.8/site-packag 阅读全文
posted @ 2024-10-10 22:53 emanlee 阅读(70) 评论(0) 推荐(0) 编辑
摘要: import time while True: time.sleep(3) print("pass ") [root@VM-8-12-centos Recorder]# [root@VM-8-12-centos Recorder]# nohup python test.py > tes.txt 2> 阅读全文
posted @ 2024-10-10 21:09 emanlee 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 停到这个地方 client_socket, address = server_socket.accept() 这行代码是在等待客户端的连接请求。server_socket.accept() 是一个阻塞调用,它会一直等待有客户端连接上来,然后返回一个新的套接字对象 client_socket 和客户端 阅读全文
posted @ 2024-10-10 10:43 emanlee 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Exception in thread django-main-thread: from paho.mqtt import client as mqtt_clientModuleNotFoundError: No module named 'paho' 解释:ModuleNotFoundError: 阅读全文
posted @ 2024-10-09 21:27 emanlee 阅读(152) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 ··· 327 下一页