Skip to content

A Python package to fetch data from the National Stock Exchange (NSE) of India, including market data, IPOs, indices, and more.

Notifications You must be signed in to change notification settings

Prasad1612/NseKit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

NseKit

A Python package to fetch data from the National Stock Exchange (NSE) of India, including market data, IPOs, indices, and more.

Installation

pip install NseKit

Useage (Useage.py)

from NseKit import Nse

get = Nse()

# Fetch trading holidays
holidays = get.nse_trading_holidays()
print(holidays)

# Fetch live market turnover
turnover = get.nse_live_market_turnover()
print(turnover)

# Fetch historical index data
nifty_data = get.index_historical_data("NIFTY 50", period="1M")
print(nifty_data)

Requirements

  • Python 3.7+

License

MIT License

About

A Python package to fetch data from the National Stock Exchange (NSE) of India, including market data, IPOs, indices, and more.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages