└── ImageScrapper ├── Procfile ├── WebScraping(Image).pdf ├── app.py ├── imagescrapper ├── ImageScrapper.py └── __pycache__ │ └── ImageScrapper.cpython-36.pyc ├── imagescrapperservice ├── ImageScrapperService.py └── __pycache__ │ └── ImageScrapperService.cpython-36.pyc ├── imagescrapperutils ├── ImageScrapperUtils.py └── __pycache__ │ └── ImageScrapperUtils.cpython-36.pyc ├── requirements.txt ├── static ├── style.css ├── tata0.jpg ├── tata1.jpg ├── tata2.jpg ├── tata3.jpg ├── tata4.jpg └── tata5.jpg └── templates ├── index.html └── showImage.html /ImageScrapper/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /ImageScrapper/WebScraping(Image).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/WebScraping(Image).pdf -------------------------------------------------------------------------------- /ImageScrapper/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/app.py -------------------------------------------------------------------------------- /ImageScrapper/imagescrapper/ImageScrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/imagescrapper/ImageScrapper.py -------------------------------------------------------------------------------- /ImageScrapper/imagescrapper/__pycache__/ImageScrapper.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/imagescrapper/__pycache__/ImageScrapper.cpython-36.pyc -------------------------------------------------------------------------------- /ImageScrapper/imagescrapperservice/ImageScrapperService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/imagescrapperservice/ImageScrapperService.py -------------------------------------------------------------------------------- /ImageScrapper/imagescrapperservice/__pycache__/ImageScrapperService.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/imagescrapperservice/__pycache__/ImageScrapperService.cpython-36.pyc -------------------------------------------------------------------------------- /ImageScrapper/imagescrapperutils/ImageScrapperUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/imagescrapperutils/ImageScrapperUtils.py -------------------------------------------------------------------------------- /ImageScrapper/imagescrapperutils/__pycache__/ImageScrapperUtils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/imagescrapperutils/__pycache__/ImageScrapperUtils.cpython-36.pyc -------------------------------------------------------------------------------- /ImageScrapper/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/requirements.txt -------------------------------------------------------------------------------- /ImageScrapper/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/static/style.css -------------------------------------------------------------------------------- /ImageScrapper/static/tata0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/static/tata0.jpg -------------------------------------------------------------------------------- /ImageScrapper/static/tata1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/static/tata1.jpg -------------------------------------------------------------------------------- /ImageScrapper/static/tata2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/static/tata2.jpg -------------------------------------------------------------------------------- /ImageScrapper/static/tata3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/static/tata3.jpg -------------------------------------------------------------------------------- /ImageScrapper/static/tata4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/static/tata4.jpg -------------------------------------------------------------------------------- /ImageScrapper/static/tata5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/static/tata5.jpg -------------------------------------------------------------------------------- /ImageScrapper/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/templates/index.html -------------------------------------------------------------------------------- /ImageScrapper/templates/showImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iNeuronai/imageScrapper/HEAD/ImageScrapper/templates/showImage.html --------------------------------------------------------------------------------