I hereby claim:
- I am lonami on github.
- I am lonami (https://keybase.io/lonami) on keybase.
- I have a public key ASCoYKcU4x-Wl1k9AbYqLywxX2OUiE5XxHIfGn7Z17QheAo
To claim this, I am signing this object:
| import threading | |
| import asyncio | |
| from queue import Queue as BlockingQueue | |
| class TwoSidedQueue: | |
| """ | |
| Behaves like an `asyncio.Queue`, but `get` and `put` act on different ends. | |
| """ | |
| def __init__(self, queue_in, queue_out): |
I hereby claim:
To claim this, I am signing this object:
| import struct | |
| import socket | |
| import base64 | |
| import json | |
| import sys | |
| class Server: | |
| def __init__(self, data): | |
| self.description = data.get('description') |