Skip to content
Permalink
b7c80c8559
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (16 sloc) 530 Bytes
import gzip
class ATGenerator:
"""
Reads saved activity binary files (table.bin)
"""
def __init__(self, repre):
self.representation = repre
def read_table(self, file):
activity_table = []
with gzip.open(file, 'rb') as f:
for line in f:
for index, re in enumerate(self.representation):
if re in str(line):
activity_table.append(index)
break
return bytearray(activity_table)