Capability library

每个功能,一个中文代码页面。

从 Python 内置能力到 Flask、数据库、AI、工业控制和动态库。搜索名称、签名或业务场景,打开页面即可复制运行。

当前找到 3458
第 54 / 116 页点击功能查看完整中文案例、参数备注和错误排查
053高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏删除存储过程(连接对象, 过程名: 'str', 如果存在: 'bool' = True) -> 'int'054高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏获取存储过程列表(连接对象) -> 'list[dict]'055高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏创建全文索引(连接对象, 表名: 'str', 列名: 'str', 索引名: 'str | None' = None) -> 'int'056高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏全文搜索(连接对象, 表名: 'str', 列名: 'str', 搜索词: 'str', 限制: 'int' = 50) -> 'list[dict]'057高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏全文搜索排名(连接对象, 表名: 'str', 列名: 'str', 搜索词: 'str', 限制: 'int' = 50) -> 'list[dict]'058高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏中文分词搜索(连接对象, 表名: 'str', 列名: 'str', 搜索词: 'str', 限制: 'int' = 50) -> 'list[dict]'059J高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏JSON提取(连接对象, 列名: 'str', 路径: 'str', 表名: 'str', 条件: 'str' = '1=1', 别名: 'str' = '提取值') -> 'list[dict]'060J高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏JSON查询(连接对象, 列名: 'str', 路径: 'str', 值: 'Any', 表名: 'str') -> 'list[dict]'061J高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏JSON更新(连接对象, 表名: 'str', 列名: 'str', 路径: 'str', 新值: 'str', 条件: 'str', 条件参数: 'tuple' = ()) -> 'int'062J高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏JSON索引(连接对象, 表名: 'str', 列名: 'str', 路径: 'str', 索引名: 'str | None' = None) -> 'int'063高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏创建枚举类型(连接对象, 类型名: 'str', 枚举值列表: 'list[str]') -> 'int'064使高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏使用枚举类型(连接对象, 表名: 'str', 列名: 'str', 枚举值列表: 'list[str]', 默认值: 'str | None' = None) -> 'int'065高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏获取枚举值列表(连接对象, 表名: 'str', 列名: 'str') -> 'list[str]'066高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏种子数据(连接对象, 表名: 'str', 数据列表: 'list[dict]', 清空先: 'bool' = False) -> 'int'067F高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏Fixture加载(连接对象, 表名: 'str', JSON文件路径: 'str', 清空先: 'bool' = False) -> 'int'068高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏数据工厂()069高级数据库 · 高级数据库 / CRUD / 备份 / 脱敏随机数据生成(字段定义: 'dict[str, dict]', 记录数: 'int' = 10) -> 'list[dict]'001H网络 · 网络请求 / API / 爬虫HTTP响应(状态码: 'int', 头信息: 'dict[str, str]', 内容: 'bytes', 网址: 'str')002网络 · 网络请求 / API / 爬虫网络会话(头信息: 'dict | None' = None, 代理: 'dict | None' = None)003网络 · 网络请求 / API / 爬虫熔断器(失败阈值: 'int' = 5, 恢复超时秒: 'float' = 30, 半开请求数: 'int' = 3)004网络 · 网络请求 / API / 爬虫创建会话(头信息: 'dict | None' = None, 代理: 'dict | None' = None)005网络 · 网络请求 / API / 爬虫创建熔断器(失败阈值: 'int' = 5, 恢复超时秒: 'float' = 30) -> '熔断器'006网络 · 网络请求 / API / 爬虫原生库()007网络 · 网络请求 / API / 爬虫原生模块(子模块名: 'str' = '')008网络 · 网络请求 / API / 爬虫原生属性(名称: 'str')009网络 · 网络请求 / API / 爬虫调用(名称: 'str', *参数, **选项)010网络 · 网络请求 / API / 爬虫全部名称()011网络 · 网络请求 / API / 爬虫请求(网址: 'str', 方法: 'str' = 'GET', 头信息: 'dict | None' = None, 数据=None, JSON数据=None, 参数: 'dict | None' = None, 超时: 'int' = 30, 重试: 'int' = 0, 间隔秒: 'float' = 0.5) -> 'HTTP响应'012网络 · 网络请求 / API / 爬虫获取(网址: 'str', **选项) -> 'HTTP响应'013网络 · 网络请求 / API / 爬虫提交(网址: 'str', **选项) -> 'HTTP响应'