Skip to content

Instantly share code, notes, and snippets.

@ganigithub
Created June 27, 2022 10:38
Show Gist options
  • Select an option

  • Save ganigithub/80475c6828aa927feb7fbb204bc83b39 to your computer and use it in GitHub Desktop.

Select an option

Save ganigithub/80475c6828aa927feb7fbb204bc83b39 to your computer and use it in GitHub Desktop.
from pynse import *
quote = nse.get_quote('INFY')
interval_high = quote['high']
print(interval_high)
#output : 1610.7
interval_low = quote['low']
print(interval_low)
#output : 1592.05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment