├── .gitignore ├── .pypirc ├── LICENSE ├── MANIFEST ├── README.md ├── __init__.py ├── docs ├── Makefile ├── __init__.py ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── nsepy ├── __init__.py ├── cli.py ├── commons.py ├── constants.py ├── debt │ └── __init__.py ├── derivatives │ ├── __init__.py │ └── archives.py ├── history.py ├── live.py ├── liveurls.py ├── nselist.py ├── symbols.py └── urls.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── sym_count.txt ├── tests ├── __init__.py ├── htmls │ └── __init__.py ├── test_archives.py ├── test_commons.py ├── test_history.py ├── test_live.py ├── test_liveurls.py ├── test_symbols.py └── test_urls.py └── zip.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/.pypirc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /nsepy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/__init__.py -------------------------------------------------------------------------------- /nsepy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/cli.py -------------------------------------------------------------------------------- /nsepy/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/commons.py -------------------------------------------------------------------------------- /nsepy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/constants.py -------------------------------------------------------------------------------- /nsepy/debt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nsepy/derivatives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/derivatives/__init__.py -------------------------------------------------------------------------------- /nsepy/derivatives/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/derivatives/archives.py -------------------------------------------------------------------------------- /nsepy/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/history.py -------------------------------------------------------------------------------- /nsepy/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/live.py -------------------------------------------------------------------------------- /nsepy/liveurls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/liveurls.py -------------------------------------------------------------------------------- /nsepy/nselist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/nselist.py -------------------------------------------------------------------------------- /nsepy/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/symbols.py -------------------------------------------------------------------------------- /nsepy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/nsepy/urls.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/setup.py -------------------------------------------------------------------------------- /sym_count.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/sym_count.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/htmls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/tests/htmls/__init__.py -------------------------------------------------------------------------------- /tests/test_archives.py: -------------------------------------------------------------------------------- 1 | # from nsepy.history import 2 | -------------------------------------------------------------------------------- /tests/test_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/tests/test_commons.py -------------------------------------------------------------------------------- /tests/test_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/tests/test_history.py -------------------------------------------------------------------------------- /tests/test_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/tests/test_live.py -------------------------------------------------------------------------------- /tests/test_liveurls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/tests/test_liveurls.py -------------------------------------------------------------------------------- /tests/test_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/tests/test_symbols.py -------------------------------------------------------------------------------- /tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/tests/test_urls.py -------------------------------------------------------------------------------- /zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swapniljariwala/nsepy/HEAD/zip.zip --------------------------------------------------------------------------------