Mercurial > code > home > repos > sco-bot
comparison search/extract_all.py @ 9:d1b54241a731
rewrite meeting fetcher
author | drewp@bigasterisk.com |
---|---|
date | Wed, 10 Jul 2024 12:25:06 -0700 |
parents | search/search_base.py@f23b21bd0fce |
children |
comparison
equal
deleted
inserted
replaced
8:f23b21bd0fce | 9:d1b54241a731 |
---|---|
1 from typing import Iterable | |
2 | |
3 import extract_agenda | |
4 import extract_pdf | |
5 from doc import Doc | |
6 | |
7 | |
8 def allDocs() -> Iterable[Doc]: | |
9 for mod in [ | |
10 #extract_pdf, | |
11 extract_agenda | |
12 ]: | |
13 for src in mod.files(): | |
14 yield from mod.phrasesFromFile(src) |