Comment out cbirc.crawl call in main function to disable its execution
Browse files
main.py
CHANGED
@@ -31,7 +31,7 @@ def main():
|
|
31 |
Orchestrates the data collection process by calling the crawl functions of different sources.
|
32 |
"""
|
33 |
eastmoney.crawl(delta)
|
34 |
-
cbirc.crawl(delta)
|
35 |
csrc.crawl(delta)
|
36 |
stats.crawl(delta)
|
37 |
gov.crawl(delta)
|
|
|
31 |
Orchestrates the data collection process by calling the crawl functions of different sources.
|
32 |
"""
|
33 |
eastmoney.crawl(delta)
|
34 |
+
# cbirc.crawl(delta)
|
35 |
csrc.crawl(delta)
|
36 |
stats.crawl(delta)
|
37 |
gov.crawl(delta)
|