BlackSheep icon indicating copy to clipboard operation
BlackSheep copied to clipboard

Fast ASGI web framework for Python

Results 61 BlackSheep issues
Sort by recently updated
recently updated
newest added

I have a pytest fixture designed to create a new application instance for each test, specifically for use with a test client. The primary challenge I am facing is related...

##### _Note: consider using [Discussions](https://github.com/Neoteroi/BlackSheep/discussions) to open a conversation about new features…_ **🚀 Feature Request** am trying to use this library https://github.com/melvinkcx/fastapi-events which use an ASGI middleware and when i...

**Describe the bug** If `uvicorn` or another ASGI server is handling requests under a proxy server that does SSL termination, the method `get_absolute_url_to_path` returns a URL over `http://`, which is...

Library: dependency_injector (wriring) Error: TypeError: my_router() got multiple values for argument 'service' Code: ``` from deps import Deps, ProfileService from dependency_injector.wiring import Provide, inject from blacksheep import Application app =...

**I've encountered a puzzling issue while using blacksheep** **Let's take a simple example** ```Python from blacksheep import Application, Request, text import uvicorn app = Application() child_app = Application() @child_app.router.get("/") async...

Keep getting these on the console. Is there something that I have misconfigured? ``` Jul17 08:42:20.333 CDT-0500 [asyncio] ERROR: Exception in callback _ProactorBasePipeTransport._call_connection_lost(None) handle: Traceback (most recent call last): File...

Sometimes I get an error due to wrong server configuration when trying to run multiple containers with Docker. In traceback in logs I can not see the real reason of...

Currently BlackSheep supports Pydantic v1. There are several breaking changes in Pydantic v2 that require changes.

document

**🚀 Feature Request** Add support for the following scenarios: ```python @dataclass class A: a_prop: int @dataclass class B: b_prop: str @dataclass class C: c_prop: str @dataclass class AnyOfTestClass: sub_prop: Union[A,...

document

**🚀 Feature Request** https://www.openapis.org/blog/2021/02/16/migrating-from-openapi-3-0-to-3-1-0