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.

  • Turun@feddit.de
    link
    fedilink
    arrow-up
    8
    ·
    8 months ago

    No, you should use whatever you want instead.

    Seriously, don’t worry about it. You want to use Django? Use Django! You want to use flask? Use flask!

  • silas@programming.dev
    link
    fedilink
    English
    arrow-up
    5
    ·
    8 months ago

    Yes! If you’re comfortable with Django, that’ll definitely work, not overkill at all.

    If you’re down to get your hands dirty with JS, Astro is really easy to learn and can be extremely powerful if needed. TypeScript or JSDoc will give you the types in JavaScript you’re looking for, and that’s built-in to Astro too. SvelteKit is similar to Astro’s syntax but has more powerful server-side tools built-in and is my personal favorite.

    Up to you, really just depends on how much you want to learn.

  • gbuttersnaps@programming.dev
    link
    fedilink
    arrow-up
    0
    ·
    8 months ago

    I started out on django and ended up switching to flask for all my python backends, but it depends on what exactly you want. Django is very hand-holdy and does some of the work of setting up new pages/routes for you, however that does put you on rails a little bit compared to flask. Flask is more performant and customizable, but it’s slightly more effort to get going in my opinion.

    • Cyno@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      8 months ago

      Was there a noticeable performance improvement on flask or what kind of features did you need that django didn’t provide? I’ve always used bigger enterprise frameworks for webapps and only recently started looking into Django for smaller personal ones so I’m wondering what are the differences

      • gbuttersnaps@programming.dev
        link
        fedilink
        arrow-up
        0
        ·
        8 months ago

        I’ll be honest, the only reason I originally switched was because I needed to learn flask for a work thing. I didn’t really notice any major differences in performance, but it was a pretty light website at that point anyway. I do prefer flask now, but that might just be because I’ve used it more.

        • Cyno@programming.dev
          link
          fedilink
          arrow-up
          1
          ·
          8 months ago

          Hmm, having googled very superficially about django and flask, it seems to me like the state (at least today) is the opposite - flask is lightweight and django is more heavy duty, having a built in ORM layer, authentication service, admin interface, db migration framework, etc.

          To be fair the article also says Django is known for its performance but when I googled that the other day, it looked like it was often near the bottom of the chart rather than top… I guess it really comes down to personal preference in the end 🤷‍♂️

  • CameronDev@programming.dev
    link
    fedilink
    arrow-up
    0
    arrow-down
    3
    ·
    8 months ago

    Do you want a website or a webapp? Website, just stick with nginx + wordpress or something. If you actually want to write a webapp, then django should be fine. I have also used fastapi which was very easy to start with. If it’s a personal web app, then the performance will never really be a problem (unless it grows into something more). So I would pick whatever you can find example code for, and just run with it.