文献综述科研写作与发表FreedomIntelligence/OpenClaw-Medical-Skills文献综述
PD

pdf

维护者 FreedomIntelligence · 最近更新 2026年4月1日

pdf:This guide covers essential PDF processing operations ,使用 Python libraries 、 command-line tools。 用于 advanced features,JavaScript libraries,、 detailed examples,see reference.md。

OpenClawNanoClaw选题发现精读整理pdf-anthropic📊 data science & toolsadditional scientific toolscomprehensive

原始来源

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/pdf-anthropic

维护者
FreedomIntelligence
许可
MIT
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • This guide covers essential PDF processing operations ,使用 Python libraries 、 command-line tools. ,用于 advanced features,JavaScript libraries,、 detailed examples,see reference.md. If you need to fill out PDF form,read forms.md 、 follow its instructions。
  • reader = PdfReader("document.pdf") print(f"Pages:{len(reader.pages)}")。

原始文档

SKILL.md 摘录

Quick Start

from pypdf import PdfReader, PdfWriter

## Extract text

text = ""
for page in reader.pages:
    text += page.extract_text()

Advanced Table Extraction

import pandas as pd

with pdfplumber.open("document.pdf") as pdf:
    all_tables = []
    for page in pdf.pages:
        tables = page.extract_tables()
        for table in tables:
            if table:  # Check if table is not empty
                df = pd.DataFrame(table[1:], columns=table[0])
                all_tables.append(df)

适用场景

  • Use pdf ,用于 manuscript drafting 、 submission workflows。
  • Apply pdf when polishing research communication outputs。

不适用场景

  • Do not treat this catalog entry as substitute ,用于 full upstream workflow。

相关技能

相关技能

返回目录
BI
文献综述科研写作与发表

bio-longread-alignment

bio-longread-alignment:Align long reads ,使用 minimap2 ,用于 Oxford Nanopore 、 PacBio data。 支持 various presets ,用于 different…

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
文献综述科研写作与发表

bio-machine-learning-atlas-mapping

bio-machine-learning-atlas-mapping:映射 query cells to reference atlases ,支持 scANVI 或 Symphony。

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
文献综述科研写作与发表

bio-methylation-bismark-alignment

bio-methylation-bismark-alignment:Bisulfite sequencing read alignment ,使用 Bismark ,支持 bowtie2/hisat2。 Handles genome pre…

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
文献综述科研写作与发表

bio-microbiome-taxonomy-assignment

bio-microbiome-taxonomy-assignment:Taxonomic 分类 of ASVs ,使用 reference databases like SILVA,GTDB,或 UNITE。 Covers naive Ba…

OpenClawNanoClaw选题发现
FreedomIntelligence/OpenClaw-Medical-Skills查看