1234567891011121314151617181920212223 |
- # from . import DataHandler #此时是导入文件
- from .DataStream import DataReadStream, day_stamp,open_hdf5
- from .DataStream import EMchPosmap as pos_map
- import numpy as np
- __all__ = ['MerchantReader']
- import logging
- log = logging.getLogger('writer')
- class MerchantReader(DataReadStream):
- def __init__(self):
- file = '/var/www/html/data/stdata/merchant.hdf5'
- hfive = open_hdf5(file,True)
- super(MerchantReader,self).__init__(hfive)
- # def __del__(self):
- # self.close()
- # pass
- def read(self, path):
- pass
- pass
|