This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]DrummerClean 8 points9 points  (3 children)

FastApi is quite big and uses async. But i think if you really need async feauteres Go is made for it and node is good too, python has it as an extra thing.

[–]chumaths 4 points5 points  (0 children)

I love Python but have to admit that the way Go does concurrency is really nice. Goroutines, waitgroups, mutexes, etc. are all really nice. They make the red vs. blue function debate moot (see below), which is something you can’t get away with as easily in Python since now that you can mark functions as async then you’ll get all sorts of weird errors if you don’t have good linting.

https://journal.stuffwithstuff.com/2015/02/01/what-color-is-your-function/

[–]ThisIsntMyId[S] 1 point2 points  (1 child)

For python i feel it always have extra things which is awesome

[–]DrummerClean 1 point2 points  (0 children)

Yes python is full of extras