├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── rateMyProf ├── .gitignore ├── __init__.py ├── config-template.ini ├── manage.py ├── rateMyProf │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── webview │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_subject.py │ ├── 0003_finalratings_rating.py │ ├── 0004_auto_20181230_0310.py │ ├── 0005_auto_20181230_0324.py │ ├── 0006_auto_20181230_1102.py │ ├── 0007_auto_20181230_1105.py │ └── __init__.py │ ├── models.py │ ├── src │ ├── __init__.py │ ├── database.py │ └── utility.py │ ├── static │ └── webview │ │ ├── css │ │ ├── all.min.css │ │ ├── bootstrap.min.css │ │ ├── loading.css │ │ ├── responsive.css │ │ └── style.css │ │ ├── favicon │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ │ ├── images │ │ ├── apple-touch-icon.png │ │ ├── bg_01.jpg │ │ ├── favicon.ico │ │ ├── logo.png │ │ ├── ps72B.tmp │ │ ├── purpleStarEmpty.png │ │ └── purpleStartFull.png │ │ ├── js │ │ ├── bootstrap.min.js │ │ ├── index.js │ │ ├── jquery.min.js │ │ └── particles.min.js │ │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── templates │ └── webview │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py └── scripts ├── Database.ipynb └── test.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/README.md -------------------------------------------------------------------------------- /rateMyProf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/.gitignore -------------------------------------------------------------------------------- /rateMyProf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rateMyProf/config-template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/config-template.ini -------------------------------------------------------------------------------- /rateMyProf/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/manage.py -------------------------------------------------------------------------------- /rateMyProf/rateMyProf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rateMyProf/rateMyProf/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/rateMyProf/settings.py -------------------------------------------------------------------------------- /rateMyProf/rateMyProf/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/rateMyProf/urls.py -------------------------------------------------------------------------------- /rateMyProf/rateMyProf/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/rateMyProf/wsgi.py -------------------------------------------------------------------------------- /rateMyProf/webview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rateMyProf/webview/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/admin.py -------------------------------------------------------------------------------- /rateMyProf/webview/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/apps.py -------------------------------------------------------------------------------- /rateMyProf/webview/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/migrations/0001_initial.py -------------------------------------------------------------------------------- /rateMyProf/webview/migrations/0002_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/migrations/0002_subject.py -------------------------------------------------------------------------------- /rateMyProf/webview/migrations/0003_finalratings_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/migrations/0003_finalratings_rating.py -------------------------------------------------------------------------------- /rateMyProf/webview/migrations/0004_auto_20181230_0310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/migrations/0004_auto_20181230_0310.py -------------------------------------------------------------------------------- /rateMyProf/webview/migrations/0005_auto_20181230_0324.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/migrations/0005_auto_20181230_0324.py -------------------------------------------------------------------------------- /rateMyProf/webview/migrations/0006_auto_20181230_1102.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/migrations/0006_auto_20181230_1102.py -------------------------------------------------------------------------------- /rateMyProf/webview/migrations/0007_auto_20181230_1105.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/migrations/0007_auto_20181230_1105.py -------------------------------------------------------------------------------- /rateMyProf/webview/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rateMyProf/webview/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/models.py -------------------------------------------------------------------------------- /rateMyProf/webview/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rateMyProf/webview/src/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/src/database.py -------------------------------------------------------------------------------- /rateMyProf/webview/src/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/src/utility.py -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/css/all.min.css -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/css/bootstrap.min.css -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/css/loading.css -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/css/responsive.css -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/css/style.css -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/apple-icon.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/browserconfig.xml -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/favicon.ico -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/manifest.json -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/images/apple-touch-icon.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/images/bg_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/images/bg_01.jpg -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/images/favicon.ico -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/images/logo.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/images/ps72B.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/images/purpleStarEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/images/purpleStarEmpty.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/images/purpleStartFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/images/purpleStartFull.png -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/js/bootstrap.min.js -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/js/index.js -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/js/jquery.min.js -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/js/particles.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/js/particles.min.js -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /rateMyProf/webview/static/webview/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/static/webview/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /rateMyProf/webview/templates/webview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/templates/webview/index.html -------------------------------------------------------------------------------- /rateMyProf/webview/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/tests.py -------------------------------------------------------------------------------- /rateMyProf/webview/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/urls.py -------------------------------------------------------------------------------- /rateMyProf/webview/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/rateMyProf/webview/views.py -------------------------------------------------------------------------------- /scripts/Database.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/scripts/Database.ipynb -------------------------------------------------------------------------------- /scripts/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefCon-007/rateMyProfessor/HEAD/scripts/test.ipynb --------------------------------------------------------------------------------