remove useless file

This commit is contained in:
blek 2023-09-03 21:33:10 +10:00
parent c12e4fbde7
commit 775aa83134
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 0 additions and 26 deletions

26
tar.py
View File

@ -1,26 +0,0 @@
#!/usr/bin/env python3
import random
r = random.SystemRandom()
data = [];
with open('targets.csv') as f:
data = f.read().split(',')
sorteds = []
out = '';
size = 0;
for word in data:
# if size == 999: break
if r.randint(0, 16) == 1:
out += ',' + word
size += 1
print(size)
with open('targets.csv.1k', 'w+') as f:
f.write(out[1:])