MCPcopy Create free account
hub / github.com/DVampire/FinAgent / StockProcessorProcess

Class StockProcessorProcess

tools/data_process.py:40–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38 return args
39
40class StockProcessorProcess(multiprocessing.Process):
41 def __init__(self, stocks, processor):
42 super().__init__()
43 self.stocks = stocks
44 self.processor = processor
45 def run(self):
46 self.processor.process(self.stocks)
47
48def main():
49 args = parse_args()

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected