]> git.scottworley.com Git - paperdoorknob/blobdiff - paperdoorknob.py
Show name of thread being processed
[paperdoorknob] / paperdoorknob.py
index 86b8766e659601b6d05a1c2dcd28e6c7f2fbb868..1350784584dc20e3c4cee60c3bfd71321883ffe1 100644 (file)
@@ -7,6 +7,7 @@
 from typing import Any, Iterable
 
 from bs4 import BeautifulSoup
+from bs4.element import Tag
 
 from args import spec_from_commandline_args
 from glowfic import chunkDOMs, flatURL, makeChunk, renderChunk
@@ -21,6 +22,13 @@ def ilen(it: Iterable[Any]) -> int:
     return sum(1 for _ in it)
 
 
+def get_title(dom: BeautifulSoup) -> str | None:
+    span = dom.findChild("span", id="post-title")
+    if not isinstance(span, Tag):
+        return None
+    return span.text
+
+
 def process(spec: Spec) -> None:
     spec.texout.write(br'''\documentclass{article}
 \usepackage{booktabs}
@@ -51,9 +59,10 @@ def process(spec: Spec) -> None:
     dom = parse(spec.htmlfilter(html))
     spec.log('Counting chunks...\r')
     num_chunks = ilen(chunkDOMs(dom))
+    title = get_title(dom) or "chunk"
     for i, r in enumerate(chunkDOMs(dom)):
         percent = 100.0 * i / num_chunks
-        spec.log(f'Processing chunk {i} of {num_chunks} ({percent:.1f}%)\r')
+        spec.log(f'Processing {title} {i} of {num_chunks} ({percent:.1f}%)\r')
         spec.domfilter(r)
         chunk = makeChunk(r, spec.images)
         spec.texout.write(spec.texfilter(renderChunk(spec.texifier, chunk)))