Skip to content

Instantly share code, notes, and snippets.

View ericpauley's full-sized avatar
🌴
On vacation

Eric Pauley ericpauley

🌴
On vacation
View GitHub Profile
import requests
from cStringIO import StringIO
import string
import random
import re
def randstring(size=24, chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for x in range(size))
headers = {