会员
众包
新闻
博问
闪存
赞助商
Trae
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
茫茫人海中的一颗沙尘
博客园
首页
新随笔
联系
订阅
管理
随笔 - 35
文章 - 0
评论 - 0
阅读 -
17320
2024年12月11日
(Django笔记)python -m build 执行报错分析并提供解决方案
摘要: 问题:很多小白,第一次操作Django,执行python -m build报错,提示如下, 问题解析: 原因是文件的规范格式不对,原文是不带版本号的,需要自己补充版本,注释已写明X,Y替换。 解决方案: 根据自己需求,填入需要关联的配置信息和版本号。
阅读全文
posted @ 2024-12-11 09:59 茫茫人海中的一颗沙尘
阅读(21)
评论(0)
推荐(0)
2024年12月10日
jenkins 版本库
摘要: https://get.jenkins.io/war-stable/
阅读全文
posted @ 2024-12-10 10:48 茫茫人海中的一颗沙尘
阅读(4)
评论(0)
推荐(0)
2024年10月31日
python安装包,指定包源
摘要: 命令如:pip install pandas --index-url https://mirrors.aliyun.com/pypi/simple 清华大学镜像源:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云镜像源:http://mirrors.aliyu
阅读全文
posted @ 2024-10-31 15:06 茫茫人海中的一颗沙尘
阅读(241)
评论(0)
推荐(0)
2024年10月29日
(sql笔记)如何查重
摘要: 如何在数据量大的时候找到重复的数据? select id,SchemeId as s from orderaction GROUP BY SchemeId HAVING COUNT(s)>1 ***要是上面看不懂,可以添加count()函数计数*** select id,count(SchemeId
阅读全文
posted @ 2024-10-29 15:30 茫茫人海中的一颗沙尘
阅读(6)
评论(0)
推荐(0)
DBeaver如何连接impala
摘要: DBeaver下载地址:https://dbeaver.io/download/ 1、打开DBeaver,搜impala 2、下载impala驱动,然后解压ClouderaImpalaJDBC-2.6.34.1065 1)impala驱动下载地址:https://www.cloudera.com/d
阅读全文
posted @ 2024-10-29 11:52 茫茫人海中的一颗沙尘
阅读(568)
评论(0)
推荐(0)
2024年10月11日
(python笔记)pandas 读取excel,如何保留文本数字类型
摘要: pandas读取Excel,默认转换文本类型数字为int类型,破坏原数据类型,用converters处理,保留文本类型数字 converters: dict[str, Callable] | dict[int, Callable] | None = ...,说明:conveters={"字段名":类
阅读全文
posted @ 2024-10-11 14:56 茫茫人海中的一颗沙尘
阅读(278)
评论(0)
推荐(0)
2024年1月19日
(Python笔记)chromdriver和geckodriver下载地址
摘要: chromdriver:https://googlechromelabs.github.io/chrome-for-testing/#stable geckodriver:https://registry.npmmirror.com/binary.html?path=geckodriver/
阅读全文
posted @ 2024-01-19 16:29 茫茫人海中的一颗沙尘
阅读(1285)
评论(0)
推荐(0)
2023年12月18日
(jmeter笔记)jmeter上传文件
摘要: http请求配置如下: 参数配置: 文件上传配置:
阅读全文
posted @ 2023-12-18 16:35 茫茫人海中的一颗沙尘
阅读(6)
评论(0)
推荐(0)
2023年10月24日
(python笔记)pandas拆分合并列,自动填充内容
摘要: # 前提,由于前期造的数据格式不适用当前需求,需把前期合并的数据拆分,代码如下: 1 import pandas as pd 2 3 def split_Data(): 4 re = pd.read_excel(r'D:\测试数据\cssj.xlsx') # 读取Excel文件数据 5 df = p
阅读全文
posted @ 2023-10-24 11:01 茫茫人海中的一颗沙尘
阅读(267)
评论(0)
推荐(0)
2023年6月8日
(python笔记)用pandas修改csv文件的某一列数据
摘要: 代码如下: 1 import pandas as pd 2 import os 3 # 获取文件名 4 file_path = r'D:\测试数据信息库\2021' 5 file_name = os.listdir(file_path) 6 print(file_name) 7 8 for file
阅读全文
posted @ 2023-06-08 09:31 茫茫人海中的一颗沙尘
阅读(270)
评论(0)
推荐(0)
下一页
公告
昵称:
茫茫人海中的一颗沙尘
园龄:
7年1个月
粉丝:
2
关注:
8
+加关注
<
2025年8月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔分类
jmeter(14)
python(1)
其他(1)
数据库(2)
性能测试(3)
随笔档案
2024年12月(3)
2024年10月(4)
2024年1月(1)
2023年12月(1)
2023年10月(1)
2023年6月(1)
2023年3月(1)
2021年7月(4)
2021年4月(1)
2021年3月(1)
2020年12月(2)
2020年11月(1)
2020年9月(1)
2020年7月(6)
2020年6月(4)
2020年1月(2)
更多
阅读排行榜
1. (jmeter笔记)jmeter打印日志(4703)
2. 使用lanproxy自建内网穿透及远程桌面连接内网(1609)
3. (app笔记)Memory Fill内存填充(1504)
4. (Python笔记)chromdriver和geckodriver下载地址(1285)
5. (jmeter笔记)jmeter远程启用服务器(分布式)(719)
点击右上角即可分享