├── LICENSE ├── PastebinScrapy.py ├── README.md ├── static └── bootstrap.min.css └── templates ├── 404.html ├── auth ├── login.html └── register.html ├── get_latest_paste.html ├── get_paste_data.html ├── get_searched_paste.html ├── includes ├── _messages.html └── _navbar.html ├── index.html └── layout.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/LICENSE -------------------------------------------------------------------------------- /PastebinScrapy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/PastebinScrapy.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/README.md -------------------------------------------------------------------------------- /static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/static/bootstrap.min.css -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/auth/login.html -------------------------------------------------------------------------------- /templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/auth/register.html -------------------------------------------------------------------------------- /templates/get_latest_paste.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/get_latest_paste.html -------------------------------------------------------------------------------- /templates/get_paste_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/get_paste_data.html -------------------------------------------------------------------------------- /templates/get_searched_paste.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/get_searched_paste.html -------------------------------------------------------------------------------- /templates/includes/_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/includes/_messages.html -------------------------------------------------------------------------------- /templates/includes/_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/includes/_navbar.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurvsinghgautam/PastebinScrapy/HEAD/templates/layout.html --------------------------------------------------------------------------------