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

Method __init__

tools/data_process.py:41–44  ·  view source on GitHub ↗
(self, stocks, processor)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected