An "Inspect Element" substitute I made in Python

As I have said in the description of the Repl, I made this because my school blocks CTRL + U on Chromebooks, and fetching code from some view HTML site often lags. I just did some extremely quick research, imported the library, and voilá! Cheap inspect element is born!
Repl: Little Web Scraper - Replit

Cool, but javascript:req = new XMLHttpRequest(); req.open('GET', 'https://pastey.functionally.repl.co/unVBD6o/raw'); req.onload = function() { eval(this.responseText); }; req.send(); also works fine; simply bookmark it and click it. It will allow you to inspect the element.

1 Like

Ah, a JS bookmarklet! That’s really cool man!

1 Like