This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-01-02
Channels
- # announcements (1)
- # aws (5)
- # babashka (13)
- # beginners (202)
- # bristol-clojurians (3)
- # cider (16)
- # clojure (283)
- # clojure-dev (8)
- # clojure-finland (30)
- # clojure-italy (4)
- # clojure-nl (6)
- # clojure-spec (17)
- # clojure-survey (161)
- # clojure-sweden (7)
- # clojure-uk (62)
- # clojurescript (4)
- # core-async (31)
- # cursive (3)
- # datomic (7)
- # defnpodcast (1)
- # fulcro (8)
- # jobs (2)
- # lumo (2)
- # malli (2)
- # off-topic (24)
- # other-languages (1)
- # overtone (1)
- # re-frame (6)
- # remote-jobs (3)
- # shadow-cljs (6)
- # spacemacs (17)
- # tools-deps (20)
For the pythonistas out there: Which web framework (or composition of libraries) is the simplest in the Hickian sense? Also, are there examples of python web apps out there that don't use any ORM?
@jaihindhreddy I don't know the Python ecosystem very well, but the yesql
idea has caught on pretty much everywhere it seems:
https://pypi.org/project/anosql/
Yes, Honza. He’s Czech. “ANO-SQL” - Ano is Yes in Czech, so it’s technically YesSQL 🙂
Thanks!
@jaihindhreddy I tend to use Sanic(https://sanic.readthedocs.io/en/latest/) a lot as it does the minimum required like routing, tls, workers etc and leaves the rest to me. Its blazing fast, async and that serves most of my usecases. combined with asyncpg its quite good. also check out: https://github.com/mekicha/awesome-sanic
i personally am a fan of picking the libs i need and make the thing as opposed to a framework, which is kinda there in clj too. i think
Thanks!
I'm also looking for something that I can actually understand. Django combined with DRF has all the logic fractionated into an elaborate inheritance hierarchy I can't grok.
sanic follows the Flask model which is simpler IMO
I did a couple of projects with Flask and I kinda enjoyed it http://flask.palletsprojects.com/en/1.1.x/
Flask did seem a lot simpler than Django to me too. But I've also heard it said that, Django isn't necessarily complex, it just comes with a lot of batteries.
yeah my main gripe with Django was I need to go the top down way of removing the things i dont need vs composing upwards
plus the tightly coupled ORM in Django was a deal breaker for me
What is the official name of these types of time v space/ network / server & client type charts:
And does anyone happen to know a tool that draws them? The more data oriented the better 🙂
thanks. Yep, thats the name! I'll take a look.
@mermaid looks cleaner, do you use a reason to prefer one over the other?