What's the difference in building website with Python vs .js?
I'd like to build a website in Python (using Flask or Django +embedded HTML&CSS), but was curious whether there are any things that Python can't perform and that different JavaScript frameworks can? Asking because I have multiple ad/tracker blockers installed in Mozilla like No-Script which block Javascipt, and it would be tiresome to test the site in such browser.
If your website uses no JS then Python/Django is fine.
The point of JS is that it runs native in the browser and if your backend and frontend both use the same language it is easier to deal with.