Rob Blackbourn

Results 7 comments of Rob Blackbourn

This is the output I'm getting when I make the http request: ``` $ python example.py INFO: Started server process [18979] INFO: Waiting for application startup. startup INFO: Uvicorn running...

I'd like this too. I'd like to be able to centre the map on a specific place when zoomed out, rather than the 0 line through London. Also, it's amazing!

Hi @auvipy. This is long overdue. I'll write something up at the weekend.

Hi @auvipy. I've made a start. See [here](https://github.com/rob-blackbourn/bareASGI-tutorial/blob/master/README.md). So much still to do. I won't close this until I've covered the majority of the functionality. Let me know if there's...

I see this too. When I set `logging.basicConfig(level=logging.DEBUG)` the following error is reported: ```bash DEBUG:aio_pika.connection:Closing AMQP connection None DEBUG:aiormq.connection:Reader task cancelled: Traceback (most recent call last): File "/home/BHDGSYSTEMATIC.COM/rblackbourn/dev/scratch/python/aio_pika-example1/.venv/lib/python3.8/site-packages/aiormq/connection.py", line 383,...

I have this helper method: ```python """Helpers for asyncio""" import asyncio from asyncio import Event, Future, Task from typing import AsyncIterator, Set, TypeVar, cast T = TypeVar('T') async def cancel_task_and_await(task:...

I've been doing this: https://github.com/rob-blackbourn/example-aio-pkia-cancellation-1