The last Python Architecture you will ever need?
davidvujic.blogspot.com
The last Python Architecture you will ever need?
1–10 of 26 posts
Re: The last Python Architecture you will ever need?
#2Re: The last Python Architecture you will ever need?
#3Happy to be corrected, I hope I'm wrong.
Re: The last Python Architecture you will ever need?
#4Most monorepos I work with do not use a single language but many. It's pointless to use multiple tools for the same thing instead of one that works with all languages, like nx for example.
Re: The last Python Architecture you will ever need?
#5Re: The last Python Architecture you will ever need?
#6What I found was 10 minutes of LEGO-bricks analogies.
What I didn't find, is an answer how this is supposed to be that much different from Microservices or libraries.
https://polylith.gitbook.io/polylith/
Polylith addresses these challenges by introducing simple,
composable, LEGO-like bricks, which can easily be shared across
teams and services. The choice of bricks determines what each
artifact does and how it's exposed.
Okay, sounds neat, but ... doesn't that pretty much describe a Microservice? A somewhat-self-contained building block that exposes an interface?And if it doesn't, isn't this just describing a module/package/library?
Sure, I mean, the idea of having all these libraries in one repository is neat, but...where is the difference from having all of them externally, in their own repos, and leaving the rest to the build pipeline?
Again, this is just based on what I found in 10 minutes of lazy skimming, so if anyone wants to point out something important I overlooked or didn't understand, I'm happy to be corrected.
Re: The last Python Architecture you will ever need?
#7Okay, I gave it 10 minutes and tried to find out what "Polylith" is about, skimming reading material found by following down links starting at the PyPi page. What I found was 10 minutes of LEGO-bricks analogies. What I didn't find, is an answer how this is supposed to be that much different from Microservices or libraries. https://polylith.gitbook.io/polylith/ Polylith addresses these challenges by introducing simple…
Typically not the most ideal option either.
Re: The last Python Architecture you will ever need?
#8Re: The last Python Architecture you will ever need?
#9Okay, I gave it 10 minutes and tried to find out what "Polylith" is about, skimming reading material found by following down links starting at the PyPi page. What I found was 10 minutes of LEGO-bricks analogies. What I didn't find, is an answer how this is supposed to be that much different from Microservices or libraries. https://polylith.gitbook.io/polylith/ Polylith addresses these challenges by introducing simple…
Re: The last Python Architecture you will ever need?
#10But poly- or monolithic is a way to describe how the code is organized. It must never be an end goal in itself. That way lies madness.