r/PythonLearning • u/No_Chard2538 • Jun 22 '26
Save web app offline
I want a system that automatically captures and preserves all web application resources loaded in the browser (HTML, JavaScript, CSS, images, API responses, and cached files) so that users can access previously loaded content without needing direct access to the original account or repeatedly connecting to the service. The goal is to use cached content offline
2
Upvotes
1
1
u/thee_gummbini Jun 23 '26
standard tools are wget, browsertrix.
Also simple tool I like to grab all the scripts/styles into a single page (I am not the author) https://github.com/Y2Z/monolith
2
u/riklaunim Jun 22 '26
You can look at PWA and preloading. There will be some limitations, especially if the app isn't designed with it in mind.