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

Method __init__

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

Source from the content-addressed store, hash-verified

39
40class StockDownloaderProcess(multiprocessing.Process):
41 def __init__(self, stocks, downloader):
42 super().__init__()
43 self.stocks = stocks
44 self.downloader = downloader
45 def run(self):
46 self.downloader.download(self.stocks)
47

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected