Pycon Israel 2021

Adam Hopkins

```python
class Adam:

def __init__(self):
    self.work = PacketFabric("Lead Sr. Software Engineer")
    self.oss = Sanic("Core Maintainer")
    self.home = Israel("Negev")

async def run(self, inputs: Union[Pretzels, Coffee]) -> None:
    while True:
        await self.work.do(inputs)
        await self.oss.do(inputs)

def sleep(self):
    raise NotImplementedError

```

The speaker's profile picture

Talks

Liberate your API: Building a task manager inside Sanic

An inside look at some of the tools inside Sanic to help build a background task manager.