You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
304 B

import sys
from time import sleep
f = open(sys.argv[1], "w")
s = ""
while len(s) < 11520:
s += "1"
print("Sending to %s" % sys.argv[1])
while True:
f.write(s)
f.flush()
#for i in range(len(s)):
# f.write(s[i])
# f.flush()
# #sleep(0.050)
sys.stdout.write(".")
sys.stdout.flush()