IlyaCredo

Results 23 issues of IlyaCredo

FEATURE REQUEST: Is it a problem to add reverse relation fetching (conceptual or technical)? It would be nice to see something like that: ```python class Student(Table, tablename="students"): name = Varchar(length=64)...

Does piccolo admin support granian instead of uvicorn? Piccolo CLI gives only 2 options: uvicorn and hypercorn

It would be nice to define included or excluded dirs (or paths) for reloading ## Funding * You can sponsor this specific effort via a [Polar.sh](https://polar.sh) pledge below * We...

enhancement
polar

In docs we have a page with testing example. But, actually, in real tests we have a lot of dependencies and we need to make a lot of mocks, so...

```python @provide(scope=Scope.APP) def provide_database_connection_options( self, config: Annotated[DatabaseConfig, FromComponent(Component.SHARED)], ) -> DatabaseConnectionOptions: return DatabaseConnectionOptions(dsn=config.DATABASE_DSN, schema=self._schema) ``` something like that will raise IDE type warnings

bug

Is it possible to add support to SAQ lib like arq or taskiq libs?

enhancement
integrations

Is it possible to use Litestar DI at job functions like: ```python def job(product_service: ProductService): pass ``` ?

Is table with name like "students-teaches" compatible with this ORM? Have such tables and got some errors with joins via join_on

Is here a way to create compound unique indexes and use them in insert.on_conflict(target=unique_constraint)?

I think that on_conflict part in add_m2m would be very useful for avoiding duplicates in m2m, why it isn't supported yet?