├── .gitignore ├── .idea ├── BookRecommend.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── BookRecommend ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── README.en.md ├── README.md ├── __pycache__ └── manage.cpython-36.pyc ├── data ├── 2016-2018借书.xlsx ├── CF_user_calculate.py ├── __init__.py ├── admin.py ├── apps.py ├── data_cleansing.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── db.sqlite3 └── manage.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/BookRecommend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/.idea/BookRecommend.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /BookRecommend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/__init__.py -------------------------------------------------------------------------------- /BookRecommend/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /BookRecommend/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /BookRecommend/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /BookRecommend/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /BookRecommend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/asgi.py -------------------------------------------------------------------------------- /BookRecommend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/settings.py -------------------------------------------------------------------------------- /BookRecommend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/urls.py -------------------------------------------------------------------------------- /BookRecommend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/BookRecommend/wsgi.py -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/manage.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/__pycache__/manage.cpython-36.pyc -------------------------------------------------------------------------------- /data/2016-2018借书.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/2016-2018借书.xlsx -------------------------------------------------------------------------------- /data/CF_user_calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/CF_user_calculate.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/admin.py -------------------------------------------------------------------------------- /data/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/apps.py -------------------------------------------------------------------------------- /data/data_cleansing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/data_cleansing.py -------------------------------------------------------------------------------- /data/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/migrations/0001_initial.py -------------------------------------------------------------------------------- /data/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/models.py -------------------------------------------------------------------------------- /data/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/tests.py -------------------------------------------------------------------------------- /data/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/data/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Banner-Studio/BookRecommendationSystem/HEAD/manage.py --------------------------------------------------------------------------------