Browse Source

Remove test script

Kailash Nadh 6 năm trước cách đây
mục cha
commit
cbba955e57
1 tập tin đã thay đổi với 0 bổ sung14 xóa
  1. 0 14
      generate-subs.py

+ 0 - 14
generate-subs.py

@@ -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),)
-	])