Anders Eriksen

Results 15 comments of Anders Eriksen

The security features have already been added to this PR. In this version it is the HMAC hash version with a shared secret (per webhook receiver), that the receiver need...

Regarding historical MSIS-data: @raubreywhite has provided this with historic data from February and March: https://github.com/folkehelseinstituttet/surveillance_data/blob/master/covid19/data_covid19_msis_by_location__HISTORIC.csv

First: This is a great addition to Celery, thanks! I have a task that returns a list of Pydantic models like `List[MyItem]`. I use SQL Alchemy result backend (but I...

Hi. This is a sample task: ``` class MyItem(BaseModel): name: str age: int @shared_task(name="pydantic_test", bind=True, pydantic=True, pydantic_strict=False) def pydantic_test(self) -> List[MyItem]: items = [ MyItem(name="foo", age=10), MyItem(name="bar", age=20), ] return...

Hi. Ref this: > TaskResponse = RootModel(List[MyItem]) > > def mytask() -> TaskResponse: > ... > ``` > > would this work for you? Yes, I already implemented that, sorry...