grandimam 7 hours ago

I enjoy building frameworks and libraries for fun, so kudos to you for that. At first glance, BlackSheep seems to combine the aspects of Flask, Django, and FastAPI. However, I’m a bit skeptical about its ability to coexist alongside them. The one feature I believe could drive the success of the next Python framework is the ability to operate in nogil mode.

Majestic121 21 hours ago

What is the plus value vs a 'classical' equivalent like FastAPI ?

  • scrollaway 20 hours ago

    So as far as I can tell, this is basically a more modern Flask. It pulls in design lessons from FastAPI, but it's still more batteries included such as templating (jinja2) and authentication.

    Neat, but tbh I am very bearish on Python's future beyond APIs - templating html in Python is a terrible idea for anything larger than a hobby site, when you can have an API-first app with a React+Typescript frontend.

    And if you need more than FastAPI, you might as well use django-ninja and get the full Django ecosystem at your disposal.

    • kaedroho 18 hours ago

      For Django, there's also django-bridge. This lets you build React apps that are backed by Django views/routing. You can also use Django's built-in authentication and forms which isn't easy with APIs.

      • scrollaway 14 hours ago

        Yes, auth between Django and a PWA is not a solved problem. It seems people just give up and go the hosted auth route or something.

        But it's also really not that difficult. Auth just takes a lot of practice for people to grok so most people don't want to touch it.

        I'll open source something once we're done solving the problem cleanly at my company.

    • gexla 16 hours ago

      I have just recently been looking into this. What would you normally reach for when doing templating?

      • scrollaway 14 hours ago

        HTML-based templating is toxic to a codebase, especially django templating. It is untyped, impossible to compile and trust, and it's horrible to maintain.

        Use React and JSX (TSX, to be more specific). NextJS does good quality SSR, use that if you want an app that is also usable without JS.

        Anybody not in that ecosystem /right now/ is going to be lagging behind by so much in velocity and capability, and will get eaten by competition.

        • globular-toast 9 hours ago

          I agree that HTML templating is toxic. But there are other ways, like htpy or htmy etc. Basically server side HTML rendering. This is what makes me interested in focused frameworks like this.

        • 1propionyl 11 hours ago

          This simply isn't true.

          I see the velocity, but high magnitude doesn't mean that you're going the right direction.

          • drcongo 7 hours ago

            Like jumping off a building and bragging about how fast you're going.

nosefrog 15 hours ago

Are there any good alternatives to gunicorn out there that don't require async? We're not ready to migrate everything to async, but gunicorn's forking model is blowing up on macOS 15.

  • flakes 15 hours ago

    FastAPI uses uvicorn which is ASGI, but you can choose to implement endpoints as either async or sync. I have implemented servers using both styles. Very pleasant to work with, and everything is type hinted, which is a must for me in any serious Python project.

    • seabrookmx 13 hours ago

      You don't want to use uvicorn with synchronous views though or you're limited to a single request in flight.

      If for some reason you need to mix sync/async views (maybe during a migration) you can use uvicorn as a gunicorn worker type, and run multiple workers. But your async views will still scale much better.

Me001 15 hours ago

I’m worried about the psychological health of people that make stuff like this. Why? Nobody uses these frameworks unless paid, you need an actual team of people to maintain it.

  • robertlagrant 6 hours ago

    I like LiteStar for this reason. It's similar to FastAPI, but I like the breadth of leadership involved.

  • rnewme 14 hours ago

    It's for the cv and getting hired through the tech stack. Most hope to become next fastapi

  • 1propionyl 13 hours ago

    ...sometimes people build things for fun, or as proofs of concept for iterative improvement on existing tools (which can then go on to inspire changes in existing and new mainline tools).

    What does that have to do with (negative) mental health?

adamredwoods 21 hours ago

I was trying to see the value of this as well, but I don't know Python well enough. Maybe there is no ASGI for python?

And I assume Python cannot handle it's own HTTP server (using threads, similar to Javalin's virtual threads)? I always cringe when a programming language needs to find another solution/language to handling its processes. I understand why you will need a load balancer, but for small, simple projects, I like to contain things.

  • miohtama 20 hours ago

    Python has had threaded, multiprocessing and such web servers for 20 years now e.g. in the form of Apache's mod_wsgi.

    The async movement is recent, and optional in Python. There are benefits for async, but obvious downsides line coloured functions.

    • LudwigNagasena 19 hours ago

      There is no true function colouring in Python. You can do `asyncio.run(async_function())` inside almost any sync function, or provide your own async shim.

      • anentropic 18 hours ago

        "async def" is literally function colouring

  • jna_sh 20 hours ago

    > And I assume Python cannot handle it's own HTTP server (using threads, similar to Javalin's virtual threads)?

    ASGI is an Interface standard, not an implementation in another language. The AGSI compliant servers that Blacksheep recommends are both written in Python.

  • stackskipton 20 hours ago

    There is plenty. FastAPI, Starlite and Flask are all ASGI.

    Yes, Python has its own ASGI HTTP Servers, Uvicorn and Hypercorn are two most common.

    I agree, I'm not sure what this project aims to fix over other more established projects.

    • intalentive 12 hours ago

      Starlite rebranded to Litestar btw, to avoid confusion with Starlette. It’s really nice too.

    • paiute 13 hours ago

      It has dependency injection

  • dec0dedab0de 19 hours ago

    ASGI, and WSGI before it are standard interfaces for python web traffic.

    it allows you to write an application (or in this case a framework) and have it work with multiple application webservers. I don’t know if java has an equivalent, but imagine if you could switch from tomcat to something else without changing any application code.

    • chasd00 18 hours ago

      it's been a while ( 25-30 years ) but i think that was the whole point of Java servlets. Tomcat was the reference implementation but there were other application servers out there with more features that, in theory, you just upload your war file to and the application runs. I think one was named Glassfish but it's been a while...

  • anentropic 18 hours ago

    from the README:

    > BlackSheep belongs to the category of ASGI web frameworks, so it requires an ASGI HTTP server to run, such as uvicorn, or hypercorn.

    but uvicorn and hypercorn are both Python libraries

    so no need to cringe

tinthedev 16 hours ago

Feels like an in-between library that I'm not sure has a great fit in the current Python BE environment.

It's not as batteries-included as Django, primarily because Django's the incumbent and the ecosystem is vast.

It's not as modular and independent as Flask, which it's taking a lot of inspiration from.

It doesn't seem to bring enough to the table to be flat out better all-rounder than FastAPI.

I'm quite unsure where I'd use it instead of one of those 3.

From searching through the documentation and trying to find it out, the primary "secret sauce" seems to be Dependency Injection, quite a hard sell for a Python framework.

  • rybosome 14 hours ago

    FastAPI also supports dependency injection.

    • tinthedev 9 hours ago

      Was quoting the library's docs.

      I've actually used FastAPI's DI, which is a nice convenience. It didn't feel as a big selling point, again, due to this being Python. Wrapping up your own DI is near trivial, and barely feels like a pattern.

      Thanks for pointing that out, I didn't even realize last night how weak of a selling point this is, even.

      • rybosome 35 minutes ago

        Yeah, you’re right that it’s not a strong sell. It’s not clear to me why I’d want to use this over any other more mature framework.

  • globular-toast 6 hours ago

    I must have missed the part where we decided there can only be three Python web frameworks...

    For a start, this shouldn't be compared with Django at all. This is, as far as I can tell, a web framework, as advertised. Django is a complex CRUD-web-app framework that is commonly mistaken for a web framework (probably because it calls itself that).

    This is important because while there isn't really room for many Djangos, there is room for many web frameworks. That's why we have lots: Flask, Bottle, FastAPI, Pyramid etc.

    Django is like a complete house: it has everything you need for doing a very specific thing, namely building a CRUD web app. But if you want to add an extra room or something it's a struggle. You either rebuild the house or clumsily bolt on an extension.

    This kind of thing fits into your own software architecture which you'll hopefully design to be simple and adaptable. The choice between FastAPI, Flask or this is but a tiny detail at the edge of your application, like the colour of the front door of your house. You don't build the house around the front door, you just choose the colour you like and if you change your mind later you get a new door.

    Stuff like Django has convinced people that choice of web framework is a huge deal that will determine the entire future of your application. It shouldn't be like that. Choose modular components and don't write yourself into a corner.

scotty79 13 hours ago

So much negativity here ... I like it very much. Browsing docs makes me want to code some backend in Python, which historically never been the case.

somesun 9 hours ago

what's the difference between fastapi?