Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python3
import sys
import argparse
import requests
def parse_headers(header_list):
headers = {}
for h in header_list or []:
if ':' not in h:
continue