Install in seconds
Install this skill
Copy the command and run it in your terminal. You can review the source before installing.
terminal
git clone https://github.com/CoderWanFeng/python-office

Works with Git. The repository opens in your current directory.

🔍
DataPython

Find Excel Data

by CoderWanFeng

Search for a specified keyword across all Excel files in a directory and return the matching file names, row numbers, and content details.

1.3K stars297 forksAdded 2026/07/20
officepippypipythonweixin

Documentation

README

find_excel_data Skill

搜索 Excel 中指定内容的文件、行数、内容详情

功能描述

在指定目录下的所有 Excel 文件中搜索包含特定关键词的内容,并返回匹配的文件名、行号和详情。

所属分类

office/skills/excel/find_excel_data/

调用方式

from office.skills.excel import find_excel_data

find_excel_data(
    search_key='python',
    target_dir='./data'
)

参数说明

参数 类型 必填 默认值 说明
search_key str - 需要搜索的关键词
target_dir str - 搜索的目录路径

返回值

None(结果直接打印输出)

使用示例

from office.skills.excel import find_excel_data
find_excel_data(search_key='订单', target_dir='./订单数据')

视频教程

https://www.bilibili.com/video/BV1Bd4y1B7yr/

原始函数

office.api.excel.find_excel_data