by mardix on 11/29/19, 12:06 AM with 43 comments
by petargyurov on 11/29/19, 9:43 AM
How is this different than the typical Blueprints setup? My Flask applications are split into modules, each with its own Blueprint; this helps organize large projects.
by lexotero on 11/29/19, 2:10 PM
My question would be, why should I use Assemby instead of Django + DRF?
by jtdev on 11/29/19, 2:39 PM
by sandGorgon on 11/29/19, 10:17 AM
They are among the fastest python frameworks according to techempower benchmarks, have automatically included type checking and are async.
by drizze on 11/29/19, 2:58 PM
The fact that flask can bar a basis for other frameworks makes Flask (and werkzeug) great in itself.
by erezsh on 11/29/19, 8:07 AM
class Index(Assembly):
index(self):
return
How is this valid Python?by toppy on 11/29/19, 3:06 PM
by giancarlostoro on 11/29/19, 7:47 PM
Have used it fot 3+ years in production and its done me well.
by softwarelimits on 11/29/19, 12:52 PM
by mixmastamyk on 11/29/19, 6:13 PM
That should happen automatically in my opinion. I’d like to create a model class in a models folder and have it found, loaded, tied to views, templates, the admin already. Customizable still of course.
Would also like an admin page to download common models like wordpress plugins. Say CMS with comments, roles, history/audit etc. All built to standard interfaces. Why do I have to reinvent this and wire it up every single project?
Also flowers and Trump themes are a weird combo. Especially when Flask is relatively unchanged. The design is either great or not depending on your perspective.
by dang on 11/29/19, 12:32 AM
by filozof900 on 11/29/19, 10:54 AM
by okaleniuk on 11/29/19, 12:52 PM
E. g. monitoring for mission critical servers. You really don't want the whole stack of unverified goodies on these machines, but since you already have TCP/IP for SSH, writing a simple web-server that reports machine health over HTTP is like a half-day job.
And it's verifiable since it's small. It doesn't drag the whole Python infrastructure with it.