├── README.md ├── RecSysInItem ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── analytics ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── cron.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_rec_items.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_rec_items.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── items ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ └── models.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── login ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_post.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_post.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── picture.png ├── recommend ├── ItemBasedCF.py ├── UserBasedCF.py ├── __pycache__ │ ├── ItemBasedCF.cpython-36.pyc │ ├── UserBasedCF.cpython-36.pyc │ ├── bpr.cpython-36.pyc │ ├── svdCF.cpython-36.pyc │ └── urils.cpython-36.pyc ├── bpr.py ├── svdCF.py └── urils.py ├── reptile ├── __pycache__ │ └── getItemInfo.cpython-36.pyc ├── dataToMysql.py ├── datasetprocessing.py ├── generateUserId.py ├── getItemInfo.py ├── getProxy.py ├── proxy.list.txt ├── test.py └── verified_proxies.json ├── run ├── __pycache__ │ └── rec_run.cpython-36.pyc └── rec_run.py ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── firstPage.css │ └── login.css └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── collector.js │ ├── jquery-3.2.1.js │ ├── jquery-3.2.1.min.js │ ├── jquery.raty.min.js │ └── npm.js └── templates ├── base.html ├── items └── index.html └── login ├── detail.html ├── index.html ├── login.html └── register.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/README.md -------------------------------------------------------------------------------- /RecSysInItem/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/RecSysInItem/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /RecSysInItem/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/RecSysInItem/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /RecSysInItem/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/RecSysInItem/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /RecSysInItem/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/RecSysInItem/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /RecSysInItem/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/RecSysInItem/settings.py -------------------------------------------------------------------------------- /RecSysInItem/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/RecSysInItem/urls.py -------------------------------------------------------------------------------- /RecSysInItem/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/RecSysInItem/wsgi.py -------------------------------------------------------------------------------- /analytics/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /analytics/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /analytics/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /analytics/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /analytics/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /analytics/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /analytics/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/apps.py -------------------------------------------------------------------------------- /analytics/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/cron.py -------------------------------------------------------------------------------- /analytics/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/migrations/0001_initial.py -------------------------------------------------------------------------------- /analytics/migrations/0002_rec_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/migrations/0002_rec_items.py -------------------------------------------------------------------------------- /analytics/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /analytics/migrations/__pycache__/0002_rec_items.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/migrations/__pycache__/0002_rec_items.cpython-36.pyc -------------------------------------------------------------------------------- /analytics/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /analytics/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/models.py -------------------------------------------------------------------------------- /analytics/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/tests.py -------------------------------------------------------------------------------- /analytics/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/urls.py -------------------------------------------------------------------------------- /analytics/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/analytics/views.py -------------------------------------------------------------------------------- /items/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /items/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /items/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /items/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /items/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/apps.py -------------------------------------------------------------------------------- /items/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/migrations/0001_initial.py -------------------------------------------------------------------------------- /items/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /items/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /items/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/models.py -------------------------------------------------------------------------------- /items/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/items/tests.py -------------------------------------------------------------------------------- /items/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url -------------------------------------------------------------------------------- /items/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /login/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /login/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /login/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /login/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /login/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /login/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /login/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/admin.py -------------------------------------------------------------------------------- /login/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/apps.py -------------------------------------------------------------------------------- /login/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/forms.py -------------------------------------------------------------------------------- /login/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/migrations/0001_initial.py -------------------------------------------------------------------------------- /login/migrations/0002_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/migrations/0002_post.py -------------------------------------------------------------------------------- /login/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /login/migrations/__pycache__/0002_post.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/migrations/__pycache__/0002_post.cpython-36.pyc -------------------------------------------------------------------------------- /login/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /login/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/models.py -------------------------------------------------------------------------------- /login/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/tests.py -------------------------------------------------------------------------------- /login/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/urls.py -------------------------------------------------------------------------------- /login/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/login/views.py -------------------------------------------------------------------------------- /picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/picture.png -------------------------------------------------------------------------------- /recommend/ItemBasedCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/ItemBasedCF.py -------------------------------------------------------------------------------- /recommend/UserBasedCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/UserBasedCF.py -------------------------------------------------------------------------------- /recommend/__pycache__/ItemBasedCF.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/__pycache__/ItemBasedCF.cpython-36.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/UserBasedCF.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/__pycache__/UserBasedCF.cpython-36.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/bpr.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/__pycache__/bpr.cpython-36.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/svdCF.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/__pycache__/svdCF.cpython-36.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/urils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/__pycache__/urils.cpython-36.pyc -------------------------------------------------------------------------------- /recommend/bpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/bpr.py -------------------------------------------------------------------------------- /recommend/svdCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/svdCF.py -------------------------------------------------------------------------------- /recommend/urils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/recommend/urils.py -------------------------------------------------------------------------------- /reptile/__pycache__/getItemInfo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/__pycache__/getItemInfo.cpython-36.pyc -------------------------------------------------------------------------------- /reptile/dataToMysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/dataToMysql.py -------------------------------------------------------------------------------- /reptile/datasetprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/datasetprocessing.py -------------------------------------------------------------------------------- /reptile/generateUserId.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/generateUserId.py -------------------------------------------------------------------------------- /reptile/getItemInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/getItemInfo.py -------------------------------------------------------------------------------- /reptile/getProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/getProxy.py -------------------------------------------------------------------------------- /reptile/proxy.list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/proxy.list.txt -------------------------------------------------------------------------------- /reptile/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/test.py -------------------------------------------------------------------------------- /reptile/verified_proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/reptile/verified_proxies.json -------------------------------------------------------------------------------- /run/__pycache__/rec_run.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/run/__pycache__/rec_run.cpython-36.pyc -------------------------------------------------------------------------------- /run/rec_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/run/rec_run.py -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/firstPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/css/firstPage.css -------------------------------------------------------------------------------- /static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/css/login.css -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/js/collector.js -------------------------------------------------------------------------------- /static/js/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/js/jquery-3.2.1.js -------------------------------------------------------------------------------- /static/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /static/js/jquery.raty.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/js/jquery.raty.min.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/items/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/templates/items/index.html -------------------------------------------------------------------------------- /templates/login/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/templates/login/detail.html -------------------------------------------------------------------------------- /templates/login/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/templates/login/index.html -------------------------------------------------------------------------------- /templates/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/templates/login/login.html -------------------------------------------------------------------------------- /templates/login/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HHHLLL1/ProductRecommendationPage/HEAD/templates/login/register.html --------------------------------------------------------------------------------