16 lines
348 B
Python
16 lines
348 B
Python
|
import csv
|
||
|
import random
|
||
|
|
||
|
f = open("/tmp/subs.csv", "w+")
|
||
|
w = csv.writer(f)
|
||
|
w.writerow(["email", "name", "status", "tags", "attributes"])
|
||
|
|
||
|
for n in range(0, 100000):
|
||
|
w.writerow([
|
||
|
"user%d@mail.com" % (n,),
|
||
|
"First%d Last%d" % (n, n),
|
||
|
"enabled",
|
||
|
"apple|mango|orange",
|
||
|
"{\"age\": %d, \"city\": \"Bangalore\"}" % (random.randint(20,70),)
|
||
|
])
|