forked from s0md3v/Quark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquark.py
78 lines (66 loc) · 2 KB
/
quark.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import json
import sys
import random
just_nodes = []
jsoned = {'nodes': [], 'edges': []}
if not sys.argv[1]:
print ('Usage: helper.py filename')
quit()
filename = sys.argv[1]
json_file = False
try:
file = open(filename, 'r')
lines = file.readlines()
except:
print('File doesn\'t exist.')
quit()
def get_rand(occurences):
sign = random.choice([1, -1])
unshuffled = list(range(1, 100))
shuffled = random.sample(unshuffled, 99)
x, y = random.choice(shuffled), random.choice(unshuffled)
x = x * sign
y = random.choice([y, y * -1])
return x, y
if lines[0][0] == '{':
json_file = True
if json_file:
joined_lines = ''.join(lines)
else:
joined_lines = ','.join(lines)
def generator():
mod = 0
for line in lines:
broke = line.split(',')
node1 = broke[0]
node2 = broke[1].strip('\n')
if node1 not in just_nodes:
occurences = joined_lines.count(node1)
rands = get_rand(occurences)
jsoned['nodes'].append({'label': node1, 'x': rands[0], 'y': rands[1], 'id':node1, 'size':occurences})
just_nodes.append(node1)
if node2 not in just_nodes:
occurences = joined_lines.count(node1)
rands = get_rand(occurences)
jsoned['nodes'].append({'label': node2, 'x': rands[0], 'y': rands[1], 'id':node2, 'size':occurences})
just_nodes.append(node2)
jsoned['edges'].append({'source':node1,'target':node2,'id':mod,"size":2})
mod += 3
return json.dumps(jsoned).replace(' ', '')
if json_file:
json_dump = joined_lines
else:
json_dump = generator()
data = 'var rendru = ' + json_dump
savefile = open('%s.js' % filename, 'w+')
savefile.write(data)
savefile.close()
quark = open('quark.html', 'r')
lines = quark.readlines()
lines[6] = '<script id="ourfile" src="%s"></script>\n' % (filename + '.js')
with open('quark.html', 'w+') as quark_save:
for line in lines:
quark_save.write(line)
quark.close()
quark_save.close()
quit()