├── Dockerfile ├── Procfile ├── __pycache__ ├── jsons.cpython-37.pyc └── webscraper.cpython-37.pyc ├── a.png ├── aaa.py ├── app.py ├── b.png ├── chest-x-ray.ipynb ├── corona-data.json ├── jsons.py ├── metadata.csv ├── model.h5 ├── requirements.txt ├── static ├── css │ ├── .DS_Store │ ├── aos.css │ ├── bootstrap-datepicker.css │ ├── bootstrap.min.css │ ├── bootstrap │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-reboot.css │ │ └── bootstrap.css │ ├── fancybox.min.css │ ├── jquery-ui.css │ ├── magnific-popup.css │ ├── mediaelementplayer.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── style.css │ └── style.css.map ├── fonts │ ├── .DS_Store │ ├── flaticon │ │ ├── backup.txt │ │ ├── font │ │ │ ├── Flaticon.eot │ │ │ ├── Flaticon.svg │ │ │ ├── Flaticon.ttf │ │ │ ├── Flaticon.woff │ │ │ ├── Flaticon.woff2 │ │ │ ├── _flaticon.scss │ │ │ ├── flaticon.css │ │ │ └── flaticon.html │ │ └── license │ │ │ └── license.pdf │ └── icomoon │ │ ├── Read Me.txt │ │ ├── demo-files │ │ ├── demo.css │ │ └── demo.js │ │ ├── demo.html │ │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ │ ├── selection.json │ │ └── style.css ├── images │ ├── a.png │ ├── b.png │ ├── chest-x-ray.jpg │ ├── favicon.ico │ ├── icon-death.png │ ├── icon-inactive.png │ ├── icon-infected.png │ ├── img_9.jpg │ └── pre.gif ├── js │ ├── aos.js │ ├── bootstrap-datepicker.min.js │ ├── bootstrap.min.js │ ├── jquery-3.3.1.min.js │ ├── jquery-migrate-3.0.1.min.js │ ├── jquery-ui.js │ ├── jquery.countdown.min.js │ ├── jquery.easing.1.3.js │ ├── jquery.fancybox.min.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.stellar.min.js │ ├── main.js │ ├── mediaelement-and-player.min.js │ ├── owl.carousel.min.js │ ├── popper.min.js │ ├── slick.min.js │ └── typed.js └── scss │ ├── .DS_Store │ ├── _site-base.scss │ ├── _site-blocks.scss │ ├── _site-navbar.scss │ ├── bootstrap │ ├── .DS_Store │ ├── _alert.scss │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _custom-forms.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _functions.scss │ ├── _grid.scss │ ├── _images.scss │ ├── _input-group.scss │ ├── _jumbotron.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _print.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _root.scss │ ├── _tables.scss │ ├── _tooltip.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── bootstrap-grid.scss │ ├── bootstrap-reboot.scss │ ├── bootstrap.scss │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ └── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ └── style.scss ├── templates └── index.html └── webscraper.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /__pycache__/jsons.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/__pycache__/jsons.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/webscraper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/__pycache__/webscraper.cpython-37.pyc -------------------------------------------------------------------------------- /a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/a.png -------------------------------------------------------------------------------- /aaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/aaa.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/app.py -------------------------------------------------------------------------------- /b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/b.png -------------------------------------------------------------------------------- /chest-x-ray.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/chest-x-ray.ipynb -------------------------------------------------------------------------------- /corona-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/corona-data.json -------------------------------------------------------------------------------- /jsons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/jsons.py -------------------------------------------------------------------------------- /metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/metadata.csv -------------------------------------------------------------------------------- /model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/model.h5 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/.DS_Store -------------------------------------------------------------------------------- /static/css/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/aos.css -------------------------------------------------------------------------------- /static/css/bootstrap-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/bootstrap-datepicker.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /static/css/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /static/css/fancybox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/fancybox.min.css -------------------------------------------------------------------------------- /static/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/jquery-ui.css -------------------------------------------------------------------------------- /static/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/magnific-popup.css -------------------------------------------------------------------------------- /static/css/mediaelementplayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/mediaelementplayer.css -------------------------------------------------------------------------------- /static/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/owl.carousel.min.css -------------------------------------------------------------------------------- /static/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/owl.theme.default.min.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/css/style.css.map -------------------------------------------------------------------------------- /static/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/.DS_Store -------------------------------------------------------------------------------- /static/fonts/flaticon/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/backup.txt -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/font/Flaticon.eot -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/font/Flaticon.svg -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/font/Flaticon.ttf -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/font/Flaticon.woff -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/font/Flaticon.woff2 -------------------------------------------------------------------------------- /static/fonts/flaticon/font/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/font/_flaticon.scss -------------------------------------------------------------------------------- /static/fonts/flaticon/font/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/font/flaticon.css -------------------------------------------------------------------------------- /static/fonts/flaticon/font/flaticon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/font/flaticon.html -------------------------------------------------------------------------------- /static/fonts/flaticon/license/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/flaticon/license/license.pdf -------------------------------------------------------------------------------- /static/fonts/icomoon/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/Read Me.txt -------------------------------------------------------------------------------- /static/fonts/icomoon/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/demo-files/demo.css -------------------------------------------------------------------------------- /static/fonts/icomoon/demo-files/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/demo-files/demo.js -------------------------------------------------------------------------------- /static/fonts/icomoon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/demo.html -------------------------------------------------------------------------------- /static/fonts/icomoon/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/fonts/icomoon.eot -------------------------------------------------------------------------------- /static/fonts/icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /static/fonts/icomoon/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/fonts/icomoon.ttf -------------------------------------------------------------------------------- /static/fonts/icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /static/fonts/icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/selection.json -------------------------------------------------------------------------------- /static/fonts/icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/fonts/icomoon/style.css -------------------------------------------------------------------------------- /static/images/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/a.png -------------------------------------------------------------------------------- /static/images/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/b.png -------------------------------------------------------------------------------- /static/images/chest-x-ray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/chest-x-ray.jpg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/icon-death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/icon-death.png -------------------------------------------------------------------------------- /static/images/icon-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/icon-inactive.png -------------------------------------------------------------------------------- /static/images/icon-infected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/icon-infected.png -------------------------------------------------------------------------------- /static/images/img_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/img_9.jpg -------------------------------------------------------------------------------- /static/images/pre.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/images/pre.gif -------------------------------------------------------------------------------- /static/js/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/aos.js -------------------------------------------------------------------------------- /static/js/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /static/js/jquery-migrate-3.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/jquery-migrate-3.0.1.min.js -------------------------------------------------------------------------------- /static/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/jquery-ui.js -------------------------------------------------------------------------------- /static/js/jquery.countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/jquery.countdown.min.js -------------------------------------------------------------------------------- /static/js/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/jquery.easing.1.3.js -------------------------------------------------------------------------------- /static/js/jquery.fancybox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/jquery.fancybox.min.js -------------------------------------------------------------------------------- /static/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /static/js/jquery.stellar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/jquery.stellar.min.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/mediaelement-and-player.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/mediaelement-and-player.min.js -------------------------------------------------------------------------------- /static/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/owl.carousel.min.js -------------------------------------------------------------------------------- /static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/popper.min.js -------------------------------------------------------------------------------- /static/js/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/slick.min.js -------------------------------------------------------------------------------- /static/js/typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/js/typed.js -------------------------------------------------------------------------------- /static/scss/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/.DS_Store -------------------------------------------------------------------------------- /static/scss/_site-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/_site-base.scss -------------------------------------------------------------------------------- /static/scss/_site-blocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/_site-blocks.scss -------------------------------------------------------------------------------- /static/scss/_site-navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/_site-navbar.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/.DS_Store -------------------------------------------------------------------------------- /static/scss/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_alert.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_badge.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_button-group.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_card.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_close.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_code.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_custom-forms.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_forms.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_functions.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_grid.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_images.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_input-group.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_media.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_modal.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_nav.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_popover.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_print.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_progress.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_root.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_tables.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_type.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/_variables.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/bootstrap-grid.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/bootstrap-reboot.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_alert.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_background-variant.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_badge.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_caret.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_float.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_hover.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_lists.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_text-hide.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_transition.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/mixins/_visibility.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_align.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_background.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_borders.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_clearfix.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_display.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_embed.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_flex.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_float.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_position.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_shadows.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_sizing.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_spacing.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_text.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/bootstrap/utilities/_visibility.scss -------------------------------------------------------------------------------- /static/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/static/scss/style.scss -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/templates/index.html -------------------------------------------------------------------------------- /webscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksdkamesh99/Corona-X-Ray-Prediction/HEAD/webscraper.py --------------------------------------------------------------------------------