I am a grad student that works a lot in nanofabrication. My school has a website that controls all the scheduling for the tools that I use (SEM, etchers, evaporators, etc.), but the user interface is horrible, especially for mobile. I want to create a new mobile website, which takes the information from the existing website after I've logged-in and re-displays it in better format. I'd rather not require a server and have to parse the html that I'm receiving from the existing website in Python. Can I do this in simple HTML and Javascript?
Greasemonkey on the desktop (<a href="https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/</a>) or for Firefox Mobile, or userscripts on the desktop (<a href="http://userscripts.org/" rel="nofollow">http://userscripts.org/</a>) might be a way to accomplish this, the Python requirement aside. They're a simpler way to restyle and format an existing site in your browser, rather than writing code to parse an existing site. Alternatively, as you mentioned, you could write or utilize an existing scraper in Python and pull content into your own site, as long as you are not violating the terms of use for your school's website.