blob: 4b88ae98e571f2b6395308f27a53da3267c182c4 [file] [log] [blame]
#!/usr/bin/env python3
# Generates a multipart/x-mixed-replace response but doesn't
# include the -- before the boundary.
import os
import sys
boundary = 'cutHere'
sys.stdout.write(
'Content-Type: multipart/x-mixed-replace; boundary={boundary}\r\n\r\n'
'{boundary}\r\n'
'Content-Type: image/png\r\n\r\n'.format(boundary=boundary)
)
sys.stdout.flush()
with open(os.path.join(os.path.dirname(__file__), 'green-100x100.png'), 'rb') as file:
sys.stdout.buffer.write(file.read())