blob: ac10d42b9445b5e36b2a50b86e9acc6dfe67f47d [file] [log] [blame]
#!/usr/bin/env python3
import os
import sys
sys.stdout.write(
'status: 404\r\n'
'Content-Length: 38616\r\n'
'Content-Type: image/jpeg\r\n'
'Last-Modified: Thu, 01 Jun 2006 06:09:43 GMT\r\n\r\n'
)
sys.stdout.flush()
with open(os.path.join(os.path.dirname(__file__), 'compass.jpg'), 'rb') as file:
sys.stdout.buffer.write(file.read())