I basically want to make a small personal website that probably won’t get any attention. It will also be somewhat simple. Is Django overkill and I should use Flask or something else or is it okay? I tried learning JS and using ExpressJS but JS overall feels very loosely typed and I don’t like it. I’ve been using Python for over 3 years now.
You can get a local install of Hello World running in minutes. Same thing for a Docker instance.
It’s performant enough that if you are asking this, it probably doesn’t matter for your use-case.
Yes, that’s how you use Django. Since you asked about performance though, one area where Django’s performance can degrade is if you start trying to add too much logic in the views. Follow the Model, View, Control structure and keep logic in the control layer as much as you can.
All good advice, just remember that the “control” layer in Django is called “view”. So, keep logic in the views and avoid using too much logic in templates.