blob: 8a037270722bc45be9ec0678aa0d8ede2388727e [file] [log] [blame]
Joe Gregoriof952e7f2011-02-13 19:27:35 -05001#!/usr/bin/env python
Joe Gregorio26763712013-02-19 15:57:37 -05002import zlib
Joe Gregoriof952e7f2011-02-13 19:27:35 -05003import os
4from StringIO import StringIO
5
6# Always returns a gzipped response body
7print "Status: 200 Ok"
8print ""
9
10print(zlib.compress('This is a compressed string'))
11
12