this post was submitted on 23 Oct 2023
17 points (87.0% liked)

Programming

17984 readers
188 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
 

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 are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 1 year ago (7 children)

Sure! I like using larger frameworks anyway because they typically come with a lot of nice features you might miss on the smaller ones. Personal preference.

[–] [email protected] 3 points 1 year ago (6 children)

Once you learn Django, is it easy to get a simple website to get running? How is its performance? I am planning on using templates heavily, is it ok?

[–] [email protected] 6 points 1 year ago* (last edited 1 year ago) (1 children)

Once you learn Django, is it easy to get a simple website to get running?

You can get a local install of Hello World running in minutes. Same thing for a Docker instance.

How is its performance?

It's performant enough that if you are asking this, it probably doesn't matter for your use-case.

I am planning on using templates heavily, is it ok?

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.

[–] Noughmad 1 points 1 year ago* (last edited 1 year ago)

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.

load more comments (4 replies)
load more comments (4 replies)