├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── SECURITY.md ├── WebScrapper.ipynb ├── app.json ├── crawler.py ├── demos ├── README.md ├── menu.png ├── new-menu.png ├── updated-new-menu.png └── video-scraping.png ├── helpers.py ├── main.py ├── requirements.txt ├── runtime.txt ├── scraper.py └── utils.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | bughunter0: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WebScrapper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/WebScrapper.ipynb -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/app.json -------------------------------------------------------------------------------- /crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/crawler.py -------------------------------------------------------------------------------- /demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/demos/README.md -------------------------------------------------------------------------------- /demos/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/demos/menu.png -------------------------------------------------------------------------------- /demos/new-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/demos/new-menu.png -------------------------------------------------------------------------------- /demos/updated-new-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/demos/updated-new-menu.png -------------------------------------------------------------------------------- /demos/video-scraping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/demos/video-scraping.png -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/helpers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.7 2 | -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/scraper.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuhmanpk/WebScrapper/HEAD/utils.py --------------------------------------------------------------------------------