Skip to content

Instantly share code, notes, and snippets.

View angousana's full-sized avatar
💭
Bored

angousana

💭
Bored
View GitHub Profile
@2minchul
2minchul / proxy.py
Created October 29, 2019 07:48
Python HTTPS proxy server with asyncio streams
import asyncio
import re
from asyncio.streams import StreamReader, StreamWriter
from contextlib import closing
from typing import Tuple, Optional
import async_timeout
StreamPair = Tuple[StreamReader, StreamWriter]