上一页 1 2 3 4 5 6 7 8 9 10 ··· 183 下一页
摘要: 一,代码: from elasticsearch import Elasticsearch # 连接到 Elasticsearch,替换为实际的 IP 地址和密码 # , basic_auth=('elastic', 'Elastic_j625sz') es = Elasticsearch('htt 阅读全文
posted @ 2025-12-16 23:13 刘宏缔的架构森林 阅读(11) 评论(0) 推荐(0)
摘要: 一,官方文档 https://www.elastic.co/docs/reference/elasticsearch/clients/python 二,安装第三方库 $ pip install elasticsearch 三,代码 from elasticsearch import Elastics 阅读全文
posted @ 2025-12-16 22:47 刘宏缔的架构森林 阅读(8) 评论(0) 推荐(0)
摘要: 一,官网下载: 地址:下载页面入口 https://www.elastic.co/cn/downloads/ kibana下载地址: https://www.elastic.co/cn/downloads/kibana 如图: 二,安装 1,解压: $ tar -zxvf kibana-9.2.2- 阅读全文
posted @ 2025-12-14 12:44 刘宏缔的架构森林 阅读(34) 评论(0) 推荐(0)
摘要: 一,官网下载: 官网: https://www.elastic.co/platform 二,安装 解压: $ tar -zxvf elasticsearch-9.2.2-linux-x86_64.tar.gz 移动到安装目录: $ mv elasticsearch-9.2.2 /opt/soft/ 阅读全文
posted @ 2025-12-13 16:03 刘宏缔的架构森林 阅读(33) 评论(0) 推荐(0)
摘要: 一,代码: import argparse import psutil import os def get_process_list(): with os.popen('ps aux') as f: output = f.read() # print(output) if 'python3 grab 阅读全文
posted @ 2025-12-10 23:26 刘宏缔的架构森林 阅读(8) 评论(0) 推荐(0)
摘要: 一,代码: import argparse # 创建解析器 parser = argparse.ArgumentParser(description="示例程序") # 添加可选参数 parser.add_argument("-b", "--begin", help="输入开始的id") # 得到参 阅读全文
posted @ 2025-12-10 22:53 刘宏缔的架构森林 阅读(12) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2025-12-06 09:32 刘宏缔的架构森林 阅读(6) 评论(0) 推荐(0)
摘要: 一,自动关闭标签页 代码: def close_browser_tab(): handles = driver.window_handles size = len(handles) if size>5: dest = size-5 for i in range(0,dest): driver.swi 阅读全文
posted @ 2025-12-06 09:10 刘宏缔的架构森林 阅读(23) 评论(0) 推荐(0)
摘要: 一,安装第三方库 $ pip install unidecode 二,代码: import unidecode def latin_to_ascii(text): return unidecode.unidecode(text) # 示例 text = "â é ë ó ñ" # 德语示例 asci 阅读全文
posted @ 2025-12-04 19:30 刘宏缔的架构森林 阅读(3) 评论(0) 推荐(0)
摘要: 一,最新版的下载地址: https://googlechromelabs.github.io/chrome-for-testing/ 如图: 二,较旧版本(115以下)的driver下载: https://chromedriver.storage.googleapis.com/index.html 阅读全文
posted @ 2025-12-02 21:17 刘宏缔的架构森林 阅读(679) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 183 下一页