摘要: 一、基础环境说明 节点名 节点ipd 角色 操作系统 node1 10.42.8.13 control-plane,etcd,master CentOS7.9 node2 10.42.8.14 control-plane,etcd,master CentOS7.9 node3 10.42.8.15 阅读全文
posted @ 2024-12-13 17:21 干炸小黄鱼 阅读(40) 评论(0) 推荐(0) 编辑
摘要: python ssh 客户端 阅读全文
posted @ 2024-11-19 09:57 干炸小黄鱼 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 产品新提了个需求, 要求排序后Null值不管是正序还是反序都排在最后或者最前 项目使用sqlalchemy, 使用 nullslast, nullsfirst 有些版本也是用nulls_first, nulls_last # Null永远在后 from sqlalchemy import nulls 阅读全文
posted @ 2024-10-11 17:11 干炸小黄鱼 阅读(32) 评论(0) 推荐(0) 编辑
摘要: version: '3.1' services: db: image: postgres:13.1 container_name: com_db environment: POSTGRES_USER: root POSTGRES_PASSWORD: db123 POSTGRES_DB: db vol 阅读全文
posted @ 2024-09-20 10:51 干炸小黄鱼 阅读(5) 评论(0) 推荐(0) 编辑
摘要: import io import os import string from random import choice, randrange, sample from PIL import Image, ImageDraw, ImageFont def generate_captcha(): img 阅读全文
posted @ 2024-09-11 19:24 干炸小黄鱼 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 有个需求需要对数据进行分组 然后对分组后的组内数据继续排序 from itertools import groupby # 示例数据 data = [ {'a': "攻击队1", 'b': '张三', 'c': 3}, {'a': "攻击队1", 'b': '张三1', 'c': 1}, {'a': 阅读全文
posted @ 2024-09-06 11:12 干炸小黄鱼 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 有个场景, 需要展示ip的经纬度 和所属省市 使用开源的地理库 geoip2 ,需要去官网下载一个GeoLite2-City.mmdb包, 差不多50M左右 先安装扩展 pip install geoip2 示例代码 import geoip2.database # 指定你的 GeoLite2 数据 阅读全文
posted @ 2024-09-03 17:20 干炸小黄鱼 阅读(180) 评论(0) 推荐(0) 编辑
摘要: apscheduler.schedulers.blocking python定时器 阅读全文
posted @ 2024-08-12 14:30 干炸小黄鱼 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 简单的 python web项目docker-compose.yml示例, 包含flask初始化db等命令; 阅读全文
posted @ 2024-08-12 10:30 干炸小黄鱼 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 开源第三方库:https://sliverpy.readthedocs.io/en/latest/getting-started.html#connect-example 代码示例: import os import asyncio from sliver import SliverClientCo 阅读全文
posted @ 2024-08-07 11:51 干炸小黄鱼 阅读(9) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示