shahronak47 / bsetools

Get BSE Quotes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bsetools

Helps to get bse quotes from bseindia.com. Available on PyPI now at : https://pypi.python.org/pypi/bsetools/

Blog here - Bsetools - BSE share prices

Instalation

pip install bsetools

Python 2.7+

from bsetools import bsetools

obj = bsetools()
print(obj.get_quote('Infosys'))

#[1] 1103.80

Python 3.5+

from bsetools import bsetools

obj = bsetools.bsetools()
print(obj.get_quote('Infosys'))

#[1] 1103.80

In case if wrong stock names are given which does not match it returns the message accordingly.

print(obj.get_quote("acdfssklmkfv"))

#No relevant share price found for acdfssklmkfv

About

Get BSE Quotes

License:MIT License


Languages

Language:Python 100.0%