blob: 300bf214418a1ee19f490ca9aa1bc31443444817 [file] [log] [blame]
#!/usr/bin/env python3
import sys
import time
time.sleep(0.01)
sys.stdout.write('Content-Type: image/svg+xml\r\n\r\n')
with open('./circle.svg', 'rb') as open_file:
sys.stdout.flush()
sys.stdout.buffer.write(open_file.read())