Skip to content

Instantly share code, notes, and snippets.

View SVilgelm's full-sized avatar
💻
diving into the Rust && C#

Sergey Vilgelm SVilgelm

💻
diving into the Rust && C#
View GitHub Profile
@SVilgelm
SVilgelm / asyncserver.py
Last active December 1, 2019 17:29
simple web server written in python
#!/usr/bin/env python3
import asyncio
from aiohttp import web
import argparse
import logging
from urllib import parse
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger()
@SVilgelm
SVilgelm / gkfdbv.py
Last active October 10, 2018 13:19
Get key from dict by value
def get_key_from_dict_by_value(dictionary, value):
for k in dictionary:
if dictionary[k] == value:
return k