-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaster_scraper.py
More file actions
48 lines (45 loc) · 909 Bytes
/
master_scraper.py
File metadata and controls
48 lines (45 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import news_scraper as ns
import index_scraper as ids
def main():
try:
ns.grow()
except:
print("Groww failed")
try:
ns.upstox_fo()
except:
print("Upstox F&O Failed")
try:
ns.upstox_mo()
except:
print("Upstox morning failed")
try:
ns.capital()
except:
print("Capital Market failed")
try:
ids.eqsis()
except:
print("Eqsis failed")
try:
ids.mc_cash()
except:
print("moneycontrol cash failed")
try:
ids.mc_fno()
except:
print("moneycontrol F&O failed")
try:
ids.nse_india()
except:
print("Nse India failed")
try:
ids.investing()
except:
print("Investing.com failed")
try:
ns.moneycontrol()
except:
print("moneycontrol news failed")
if __name__ == "__main__":
main()