Skip to content

Instantly share code, notes, and snippets.

View yoonjechoi's full-sized avatar

Yoonje Choi yoonjechoi

  • South Korea
View GitHub Profile
@yoonjechoi
yoonjechoi / grpc_asyncio.py
Created May 5, 2019 06:14 — forked from mmellison/grpc_asyncio.py
gRPC Servicer with Asyncio (Python 3.6+)
import asyncio
from concurrent import futures
import functools
import inspect
import threading
from grpc import _server
def _loop_mgr(loop: asyncio.AbstractEventLoop):