Skip to content

Instantly share code, notes, and snippets.

View vousmeevoyez's full-sized avatar

Kelvin vousmeevoyez

View GitHub Profile
@Julynx
Julynx / 15_python_tips.md
Last active February 27, 2025 16:06
15 Python Tips To Take Your Code To The Next Level!
@mmellison
mmellison / grpc_asyncio.py
Last active August 6, 2024 01:23
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):