SYMBOL INDEX (42 symbols across 6 files) FILE: easyhistory/api.py function init (line 11) | def init(dtype='D', export='csv', path='history'): function update_single_code (line 15) | def update_single_code(dtype='D', stock_code=None, path='history', expor... function update (line 21) | def update(dtype='D', export='csv', path='history'): function history (line 25) | def history(stock_code, market=None, bundle_path='~/.rqalpha/bundle'): FILE: easyhistory/day.py class Day (line 16) | class Day: method __init__ (line 21) | def __init__(self, path='history', export='csv'): method init (line 24) | def init(self): method update (line 29) | def update(self): method update_single_code (line 35) | def update_single_code(self, stock_code): method get_update_day_history (line 48) | def get_update_day_history(self, stock_code, latest_date): method init_stock_history (line 75) | def init_stock_history(self, stock_code): method get_all_history (line 81) | def get_all_history(self, stock_code): method get_year_history (line 90) | def get_year_history(self, stock_code, year): method get_stock_time (line 102) | def get_stock_time(self, stock_code): method get_quarter_history (line 113) | def get_quarter_history(self, stock_code, year, quarter): method handle_quarter_history (line 146) | def handle_quarter_history(self, rep_html): method convert_stock_data_type (line 170) | def convert_stock_data_type(self, day_data): FILE: easyhistory/helpers.py function get_quarter (line 5) | def get_quarter(month): FILE: easyhistory/history.py class Indicator (line 8) | class Indicator(object): method __init__ (line 9) | def __init__(self, stock_code, history): method load_csv_files (line 14) | def load_csv_files(self, path): method __getattr__ (line 21) | def __getattr__(self, item): class History (line 35) | class History(object): method __init__ (line 36) | def __init__(self, dtype='D', path='history', stock=None): method load_csv_files (line 41) | def load_csv_files(self, path, stock=None): method __getitem__ (line 57) | def __getitem__(self, item): FILE: easyhistory/store.py function use (line 10) | def use(export='csv', **kwargs): class Store (line 15) | class Store: method load (line 16) | def load(self, stock_data): method write (line 19) | def write(self, stock_code, data): class CSVStore (line 23) | class CSVStore(Store): method __init__ (line 24) | def __init__(self, path, dtype): method write (line 30) | def write(self, stock_code, updated_data): method get_his_stock_date (line 55) | def get_his_stock_date(self, stock_code): method write_summary (line 62) | def write_summary(self, stock_code, date): method write_factor_his (line 74) | def write_factor_his(self, stock_code, his): method init_stock_codes (line 81) | def init_stock_codes(self): method update_stock_codes (line 90) | def update_stock_codes(self): FILE: test_history.py class TestHistory (line 7) | class TestHistory(unittest.TestCase): method test_get_history (line 8) | def test_get_history(self): method test_get_quarter_history (line 15) | def test_get_quarter_history(self): method test_day_data_type_convert (line 79) | def test_day_data_type_convert(self):