Remove test script
This commit is contained in:
parent
1a39ed15ec
commit
cbba955e57
|
@ -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),)
|
||||
])
|
Loading…
Reference in New Issue