摘要:
业务场景 前提,不知道服务器的账号密码, 目的,想快速的进行服务器之间的文件传输 想到了使用文件服务器,在当前服务器请求目标服务器的文件 wget http://127.0.0.1:3334/file/xxx.jar 感觉只是为了文件的传输去搭建一个文件服务器,感觉有点大材小用。 那么,我就想到了n 阅读全文
摘要:
话不多说,看例子 import pymysql import uvicorn as u from fastapi import FastAPI from fastapi.staticfiles import StaticFiles # 主要功能是导入静态文件类,因为我们要用到js、CSS # imp 阅读全文
摘要:
navicat 批量插入文件导出方式 选中数据库转储sql带数据的时候,一般格式如下: INSERT INTO `t_member` VALUES (1, '1', NULL); INSERT INTO `t_member` VALUES (2, '1', 23); INSERT INTO `t_m 阅读全文
摘要:
安装redis的python库 pip install redis 普通的redis链接操作 import redis # 导入redis模块 r = redis.Redis(host='localhost', port=6379, password="pwd@321", db=1,decode_r 阅读全文
摘要:
安装mysql客户端 apt install mysql-client-core-5.7 执行连接数据库 mysql -h192.168.1.1 -uroot -p123456 -P3306 默认端口的话不需要-P参数 查看数据库列表 show databases; 切换到数据库 use xxx; 阅读全文
摘要:
Ubuntu 环境 下载nginx源码包 进入nginx官网下载 http://nginx.org/download/ 选择自己想要的版本 wget http://nginx.org/download/nginx-1.21.4.tar.gz 准备安装环境(提前下载一些环境配置) apt-get in 阅读全文
摘要:
创建MYSQL存储过程 CREATE PROCEDURE productpricing() BEGIN SELECT Avg(prod_price) AS priceaverage FROM products; END; 此存储过程名为productpricing ,用CREATE PROCEDUR 阅读全文
摘要:
openpyxl填充背景和字体颜色 加载已存在的excel文件进行处理 import openpyxl import openpyxl from openpyxl.styles import Font # 导入字体模块 from openpyxl.styles import PatternFill 阅读全文
摘要:
python 时间格式化 print(str(datetime.datetime.now().strftime("%Y-%m-%d %X"))) print(str(datetime.datetime.now().strftime("%Y-%m-%d %H%M%S"))) List和元组添加元素 l 阅读全文
摘要:
生成不带声调的 import pypinyin # 将汉字转为拼音 def pinyin(word): s = '' for i in pypinyin.pinyin(word, style=pypinyin.NORMAL): s += ''.join(i) return s if __name__ 阅读全文