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

Class StockDownloaderProcess

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

Source from the content-addressed store, hash-verified

38 return args
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
48def main():
49 args = parse_args()

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected