├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── app ├── __init__.py ├── controllers │ ├── __init__.py │ ├── auth.py │ ├── forms.py │ ├── indexer.py │ ├── routes.py │ └── stars.py ├── models │ ├── __init__.py │ └── tables.py ├── settings.py ├── static │ ├── css │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ ├── font-awesome.min.css │ │ ├── fonts.css │ │ └── main.css │ ├── fonts │ │ ├── CWB0XYA8bzo0kSThX0UTuA.woff2 │ │ ├── DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2 │ │ ├── FontAwesome.otf │ │ ├── Q_Z9mv4hySLTMoMjnk_rCfesZW2xOQ-xsNqO47m55DA.woff2 │ │ ├── cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2 │ │ ├── d-6IYplOFocCacKzxwXSOFtXRa8TVwTICgirnJhmVJw.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── images │ │ ├── Delta-logo.png │ │ ├── favicon.ico │ │ └── logo.png │ └── js │ │ ├── CircularLoader.js │ │ ├── custom.js │ │ ├── jquery.js │ │ └── jquery.min.js ├── templates │ ├── base.html │ ├── faq.html │ ├── file.html │ ├── home.html │ ├── login.html │ ├── notes.html │ ├── semester.html │ └── upload.html └── utils.py ├── bani.sh ├── index.py ├── manager.py ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/controllers/auth.py -------------------------------------------------------------------------------- /app/controllers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/controllers/forms.py -------------------------------------------------------------------------------- /app/controllers/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/controllers/indexer.py -------------------------------------------------------------------------------- /app/controllers/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/controllers/routes.py -------------------------------------------------------------------------------- /app/controllers/stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/controllers/stars.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- 1 | from tables import * 2 | -------------------------------------------------------------------------------- /app/models/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/models/tables.py -------------------------------------------------------------------------------- /app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/settings.py -------------------------------------------------------------------------------- /app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/css/custom.css -------------------------------------------------------------------------------- /app/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /app/static/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/css/fonts.css -------------------------------------------------------------------------------- /app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/css/main.css -------------------------------------------------------------------------------- /app/static/fonts/CWB0XYA8bzo0kSThX0UTuA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/CWB0XYA8bzo0kSThX0UTuA.woff2 -------------------------------------------------------------------------------- /app/static/fonts/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2 -------------------------------------------------------------------------------- /app/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/static/fonts/Q_Z9mv4hySLTMoMjnk_rCfesZW2xOQ-xsNqO47m55DA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/Q_Z9mv4hySLTMoMjnk_rCfesZW2xOQ-xsNqO47m55DA.woff2 -------------------------------------------------------------------------------- /app/static/fonts/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2 -------------------------------------------------------------------------------- /app/static/fonts/d-6IYplOFocCacKzxwXSOFtXRa8TVwTICgirnJhmVJw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/d-6IYplOFocCacKzxwXSOFtXRa8TVwTICgirnJhmVJw.woff2 -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/static/images/Delta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/images/Delta-logo.png -------------------------------------------------------------------------------- /app/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/images/favicon.ico -------------------------------------------------------------------------------- /app/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/images/logo.png -------------------------------------------------------------------------------- /app/static/js/CircularLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/js/CircularLoader.js -------------------------------------------------------------------------------- /app/static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/js/custom.js -------------------------------------------------------------------------------- /app/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/js/jquery.js -------------------------------------------------------------------------------- /app/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/static/js/jquery.min.js -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/templates/faq.html -------------------------------------------------------------------------------- /app/templates/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/templates/file.html -------------------------------------------------------------------------------- /app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/templates/home.html -------------------------------------------------------------------------------- /app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/templates/login.html -------------------------------------------------------------------------------- /app/templates/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/templates/notes.html -------------------------------------------------------------------------------- /app/templates/semester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/templates/semester.html -------------------------------------------------------------------------------- /app/templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/templates/upload.html -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/app/utils.py -------------------------------------------------------------------------------- /bani.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/bani.sh -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/index.py -------------------------------------------------------------------------------- /manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/manager.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta/NotesSharing/HEAD/run.py --------------------------------------------------------------------------------