├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── requirements.txt ├── src ├── cli.py └── nse.py └── test └── test_nse.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | bs4 3 | lxml 4 | cli 5 | -------------------------------------------------------------------------------- /src/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/src/cli.py -------------------------------------------------------------------------------- /src/nse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/src/nse.py -------------------------------------------------------------------------------- /test/test_nse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishdalvi3/niftytool/HEAD/test/test_nse.py --------------------------------------------------------------------------------