Sunshine
Sunshine
I've managed to run and save that page (no flags used, just `.\monolith.exe https://kylegabriel.com/projects/2020/06/automated-hydroponic-system-build.html > out.html` on Windows 10, no error in my case. Since the page is very large...
Greetings Olivier, thank you very much for the suggestion! Currently monolith makes synchronous requests one after another, and I've never experienced errors associated with making too many requests myself —...
No worries at all! I'll add this flag once monolith is advanced enough to make async calls — it's more of a scraper than browser right now.
Hi there @Tragen, thank you for reporting this! I wasn't aware of Cloudflare getting in the way of monolith, but it's only logical, since I know scrapers often bump into...
I'd try saving the page locally using your browser as .html + assets, and then using monolith on that -- the code in master works with file://// (e.g. `monolith local.html...
As my next task for the project, I will set up the CI/CD to add builds automatically for all 3 OSes upon creating a release. ...after I'm finished with the...
@Tragen you should be able to grab the windows binary from every release page, the latest as of now is this one: https://github.com/Y2Z/monolith/releases/tag/v2.2.3
Hi @Tragen, please give this a try: ```console chromium --headless --disable-gpu --dump-dom https://your-cloudflare-protected-url | monolith - -b https://your-cloudflare-protected-url -o test-cloudflare.html ```
Hello @kelmes, Thank you for reporting this! It seems like the page is using `data-src` instead of `src`, e.g. ``. The JS logic then takes care of renaming those attributes...
Try this: `chromium --headless --disable-gpu --dump-dom https://biods.org/talks/2020_Auckland_Broad_AI | monolith - -b https://biods.org/talks/2020_Auckland_Broad_AI -o biods_2020_Auckland_Broad_AI.html` if you add the `-I` flag for isolation/privacy, the video won't play... so that's the only...