├── .github └── workflows │ ├── github_latest_commits.yml │ └── github_registry.yml ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── __pycache__ ├── app.cpython-39.pyc └── forms.cpython-39.pyc ├── app.py ├── requirements.txt ├── run ├── static ├── css │ ├── index.css │ └── w3.css └── images │ ├── bg.png │ ├── scrappy-home.png │ └── scrappy.png └── templates └── index.html /.github/workflows/github_latest_commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/.github/workflows/github_latest_commits.yml -------------------------------------------------------------------------------- /.github/workflows/github_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/.github/workflows/github_registry.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/app.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/__pycache__/app.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/requirements.txt -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/run -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/css/w3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/static/css/w3.css -------------------------------------------------------------------------------- /static/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/static/images/bg.png -------------------------------------------------------------------------------- /static/images/scrappy-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/static/images/scrappy-home.png -------------------------------------------------------------------------------- /static/images/scrappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/static/images/scrappy.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elijahondiek/Simple-Web-Crawler/HEAD/templates/index.html --------------------------------------------------------------------------------