Created
June 27, 2022 10:38
-
-
Save ganigithub/80475c6828aa927feb7fbb204bc83b39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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