Remove test script

This commit is contained in:
Kailash Nadh 2018-11-26 17:14:35 +05:30
parent 1a39ed15ec
commit cbba955e57
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
import csv
import random
f = open("/tmp/subs.csv", "w+")
w = csv.writer(f)
w.writerow(["email", "name", "status", "attributes"])
for n in range(0, 100000):
w.writerow([
"user%d@mail.com" % (n,),
"First%d Last%d" % (n, n),
"enabled",
"{\"age\": %d, \"city\": \"Bangalore\"}" % (random.randint(20,70),)
])