├── .gitignore ├── LICENSE ├── README.md ├── backend ├── __init__.py ├── admin.py ├── apps.py ├── crawler.py ├── helpers.py ├── migrations │ └── __init__.py ├── templates │ └── backend │ │ └── something.html ├── urls.py └── views.py ├── frontend ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── static │ ├── css │ │ ├── main.css │ │ └── semantic.min.css │ └── js │ │ ├── home.js │ │ └── libs │ │ └── jQuery.min.js ├── templates │ └── crawler │ │ └── home.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── requirements.txt └── web_crawler ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/backend/admin.py -------------------------------------------------------------------------------- /backend/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/backend/apps.py -------------------------------------------------------------------------------- /backend/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/backend/crawler.py -------------------------------------------------------------------------------- /backend/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/backend/helpers.py -------------------------------------------------------------------------------- /backend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/templates/backend/something.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/backend/templates/backend/something.html -------------------------------------------------------------------------------- /backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/backend/urls.py -------------------------------------------------------------------------------- /backend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/backend/views.py -------------------------------------------------------------------------------- /frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/admin.py -------------------------------------------------------------------------------- /frontend/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/apps.py -------------------------------------------------------------------------------- /frontend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/static/css/main.css -------------------------------------------------------------------------------- /frontend/static/css/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/static/css/semantic.min.css -------------------------------------------------------------------------------- /frontend/static/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/static/js/home.js -------------------------------------------------------------------------------- /frontend/static/js/libs/jQuery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/static/js/libs/jQuery.min.js -------------------------------------------------------------------------------- /frontend/templates/crawler/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/templates/crawler/home.html -------------------------------------------------------------------------------- /frontend/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/tests.py -------------------------------------------------------------------------------- /frontend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/urls.py -------------------------------------------------------------------------------- /frontend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/frontend/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/requirements.txt -------------------------------------------------------------------------------- /web_crawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_crawler/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/web_crawler/settings.py -------------------------------------------------------------------------------- /web_crawler/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/web_crawler/urls.py -------------------------------------------------------------------------------- /web_crawler/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sushantkumr/Django-Web-Crawler/HEAD/web_crawler/wsgi.py --------------------------------------------------------------------------------