Show HN: A better Python API for async UDP

2 points by thatxliner 6 months ago | 2 comments
  • mlhpdx 6 months ago
    Is the example echo server lock-step with respect to requests and responses? I’m not sure how Python async for with async/await works, but in dotnet similar code would be effectively serial.
    • thatxliner 6 months ago
      The handler function is per connection, so it can handle multiple connections in parallel