c# moment

This commit is contained in:
Rowan 2025-10-06 17:14:52 -04:00
parent adcf39ca4a
commit 13f546fcf5

View file

@ -49,6 +49,6 @@ pg = Puppygirl(
# parsed using the above config # parsed using the above config
parsed = pg.fetch("index.html") parsed = pg.fetch("index.html")
using open("dist/index.html", "w") as f: with open("dist/index.html", "w") as f:
f.write(parsed.prettify()) # parsed is a beautifulsoup4 object f.write(parsed.prettify()) # parsed is a beautifulsoup4 object
``` ```