Snehadeep commited on
Commit
c994a1b
1 Parent(s): 197b717

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -15,7 +15,7 @@ from pytz import timezone
15
 
16
  def get_data():
17
  print('Hello')
18
- a=(nse_fno("BANKNIFTY"))
19
  print(a)
20
  last_prices=round(nse_quote_ltp("BANKNIFTY"))
21
  exp=list(set(a['expiryDates']))
@@ -126,6 +126,8 @@ df = pd.DataFrame({'x': [x], 'y': [y] , 'x + y': [x + y]}, index = ['addition ro
126
  # df = (get_data())
127
  st.write(df)
128
  result = get_data()
 
 
129
  st.write(result)
130
 
131
 
 
15
 
16
  def get_data():
17
  print('Hello')
18
+ a=nse_fno("BANKNIFTY")
19
  print(a)
20
  last_prices=round(nse_quote_ltp("BANKNIFTY"))
21
  exp=list(set(a['expiryDates']))
 
126
  # df = (get_data())
127
  st.write(df)
128
  result = get_data()
129
+ print(nse_fno("BANKNIFTY"))
130
+
131
  st.write(result)
132
 
133