class PermanentIdAnalysis:
    def __init__(self,files):
        self.data=SitePermanentIdCounter(files).get_data()

    def store(self):
        for sld in self.data.keys():
            print 'domain: %s, total count: %s, unique count: %s' % (sld,self.data[sld]['total_count'],self.data[sld]['unique_count'])
 def __init__(self,files):
     self.data=SitePermanentIdCounter(files).get_data()