mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
12 lines
252 B
Python
12 lines
252 B
Python
# -*- coding: utf-8 -*-
|
|
import os
|
|
import sys
|
|
|
|
if __name__=="__main__":
|
|
f=open('twisted-massive.ini', 'w')
|
|
for i in range(100):
|
|
f.write('[%03d]\n' % i)
|
|
for j in range(100):
|
|
f.write('key-%03d=1;\n' % j)
|
|
f.close()
|
|
|