├── .idea ├── BookRecommendSystem.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── BookRecommendSystem ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── DataBaseManagement ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── database.cpython-36.pyc │ └── mysqlDatabaseComment.cpython-36.pyc ├── database.py ├── mysqlDatabaseComment.py └── simfang.ttf ├── Pyemail ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── emailManger.cpython-36.pyc └── emailManger.py ├── Scheduler ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── scheduler.cpython-36.pyc ├── logaa.txt ├── logbb.txt ├── scheduler.py └── test.py ├── Spider ├── DouBanSpider.py ├── SchoolBookSystemSpider │ ├── SchoolBookSystemSpider │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── items.cpython-36.pyc │ │ │ └── pipelines.cpython-36.pyc │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ │ ├── BookSpider.py │ │ │ ├── CatalogueSpider.py │ │ │ ├── DouBanSpider.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── TestScrapy.py │ ├── a.txt │ ├── getHeader.py │ ├── getResult.py │ ├── ghostdriver.log │ ├── logaa.txt │ ├── logbb.txt │ ├── requestsTest.py │ ├── scrapy.cfg │ ├── seleniumTest.py │ ├── test.py │ └── test1.py ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── autoBarrowBookSpider.cpython-36.pyc │ ├── autoInformLibraryFreeBook.cpython-36.pyc │ ├── googleSpider.cpython-36.pyc │ └── loginSpider.cpython-36.pyc ├── a.mpeg ├── a.txt ├── abandoned │ ├── DouBanSpider.py │ ├── DouBanSpiderWithSelenium.py │ ├── MongoDbswitchMySql.py │ ├── __init__.py │ ├── a.mpeg │ ├── clearMongodb.py │ ├── douBanSpider.log │ ├── ghostdriver.log │ ├── test.py │ ├── test1.py │ ├── test2.py │ └── ttest.py ├── autoBarrowBookSpider.py ├── autoInformLibraryFreeBook.py ├── douBanSpider.log ├── getProxies.py ├── googleSpider.py ├── libraryCollectionSpider.py ├── loginSpider.py ├── models │ ├── Book.py │ └── __pycache__ │ │ └── Book.cpython-36.pyc ├── proxies.log └── test.py ├── a.jpg ├── bookRecommand ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ ├── views.cpython-36.pyc │ └── whoosh_cn_backend.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180516_1257.py │ ├── 0003_auto_20180516_1651.py │ ├── 0004_auto_20180516_1715.py │ ├── 0005_auto_20180516_1725.py │ ├── 0006_auto_20180516_1748.py │ ├── 0007_auto_20180516_1749.py │ ├── 0008_auto_20180516_1828.py │ ├── 0009_auto_20180516_1905.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20180516_1257.cpython-36.pyc │ │ ├── 0003_auto_20180516_1651.cpython-36.pyc │ │ ├── 0004_auto_20180516_1715.cpython-36.pyc │ │ ├── 0005_auto_20180516_1725.cpython-36.pyc │ │ ├── 0006_auto_20180516_1748.cpython-36.pyc │ │ ├── 0007_auto_20180516_1749.cpython-36.pyc │ │ ├── 0008_auto_20180516_1828.cpython-36.pyc │ │ ├── 0009_auto_20180516_1905.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── search_indexes.py ├── static │ └── bookRecommand │ │ ├── css │ │ ├── bookSystem.css │ │ ├── style_11_common.css │ │ ├── style_11_widthauto.css │ │ ├── styles.css │ │ └── test.css │ │ ├── images │ │ ├── avatar_man.png │ │ ├── avatar_woman.png │ │ ├── bg_head.jpg │ │ ├── bookImage.jpg │ │ ├── gt_favicon.png │ │ ├── guy.jpg │ │ ├── mac.jpg │ │ ├── s1.jpg │ │ ├── s2.jpg │ │ └── sample_clients.png │ │ └── js │ │ ├── html5shiv.js │ │ ├── jquery.min.js │ │ └── template.js ├── templatetags │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── bookRecommand_tags.cpython-36.pyc │ └── bookRecommand_tags.py ├── tests.py ├── urls.py ├── views.py └── whoosh_cn_backend.py ├── db.sqlite3 ├── externalInterface ├── __init__.py ├── __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 ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── modeles ├── Book.py └── __pycache__ │ └── Book.cpython-36.pyc ├── readme.md ├── templates ├── bookRecommand │ ├── bookDetail.html │ ├── bookSearch.html │ ├── detail.html │ ├── emailLogin.html │ ├── index.html │ ├── login.html │ ├── setup.html │ └── test.html └── search │ ├── indexes │ └── bookRecommand │ │ └── book_text.txt │ └── search.html └── test.py /.idea/BookRecommendSystem.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/.idea/BookRecommendSystem.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /BookRecommendSystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BookRecommendSystem/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/BookRecommendSystem/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /BookRecommendSystem/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/BookRecommendSystem/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /BookRecommendSystem/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/BookRecommendSystem/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /BookRecommendSystem/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/BookRecommendSystem/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /BookRecommendSystem/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/BookRecommendSystem/settings.py -------------------------------------------------------------------------------- /BookRecommendSystem/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/BookRecommendSystem/urls.py -------------------------------------------------------------------------------- /BookRecommendSystem/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/BookRecommendSystem/wsgi.py -------------------------------------------------------------------------------- /DataBaseManagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataBaseManagement/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/DataBaseManagement/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /DataBaseManagement/__pycache__/database.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/DataBaseManagement/__pycache__/database.cpython-36.pyc -------------------------------------------------------------------------------- /DataBaseManagement/__pycache__/mysqlDatabaseComment.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/DataBaseManagement/__pycache__/mysqlDatabaseComment.cpython-36.pyc -------------------------------------------------------------------------------- /DataBaseManagement/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/DataBaseManagement/database.py -------------------------------------------------------------------------------- /DataBaseManagement/mysqlDatabaseComment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/DataBaseManagement/mysqlDatabaseComment.py -------------------------------------------------------------------------------- /DataBaseManagement/simfang.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/DataBaseManagement/simfang.ttf -------------------------------------------------------------------------------- /Pyemail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pyemail/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Pyemail/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Pyemail/__pycache__/emailManger.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Pyemail/__pycache__/emailManger.cpython-36.pyc -------------------------------------------------------------------------------- /Pyemail/emailManger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Pyemail/emailManger.py -------------------------------------------------------------------------------- /Scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scheduler/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Scheduler/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Scheduler/__pycache__/scheduler.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Scheduler/__pycache__/scheduler.cpython-36.pyc -------------------------------------------------------------------------------- /Scheduler/logaa.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /Scheduler/logbb.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scheduler/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Scheduler/scheduler.py -------------------------------------------------------------------------------- /Scheduler/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Scheduler/test.py -------------------------------------------------------------------------------- /Spider/DouBanSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/DouBanSpider.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/__pycache__/items.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/__pycache__/items.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/__pycache__/pipelines.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/__pycache__/pipelines.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/items.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/middlewares.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/pipelines.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/settings.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/BookSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/BookSpider.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/CatalogueSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/CatalogueSpider.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/DouBanSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/DouBanSpider.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/__init__.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/SchoolBookSystemSpider/spiders/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/TestScrapy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/TestScrapy.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/getHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/getHeader.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/getResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/getResult.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/ghostdriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/ghostdriver.log -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/logaa.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/logbb.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/requestsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/requestsTest.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/scrapy.cfg -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/seleniumTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/seleniumTest.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/test.py -------------------------------------------------------------------------------- /Spider/SchoolBookSystemSpider/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/SchoolBookSystemSpider/test1.py -------------------------------------------------------------------------------- /Spider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Spider/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/__pycache__/autoBarrowBookSpider.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/__pycache__/autoBarrowBookSpider.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/__pycache__/autoInformLibraryFreeBook.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/__pycache__/autoInformLibraryFreeBook.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/__pycache__/googleSpider.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/__pycache__/googleSpider.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/__pycache__/loginSpider.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/__pycache__/loginSpider.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/a.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/a.mpeg -------------------------------------------------------------------------------- /Spider/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Spider/abandoned/DouBanSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/DouBanSpider.py -------------------------------------------------------------------------------- /Spider/abandoned/DouBanSpiderWithSelenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/DouBanSpiderWithSelenium.py -------------------------------------------------------------------------------- /Spider/abandoned/MongoDbswitchMySql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/MongoDbswitchMySql.py -------------------------------------------------------------------------------- /Spider/abandoned/__init__.py: -------------------------------------------------------------------------------- 1 | # 存放废弃方案 -------------------------------------------------------------------------------- /Spider/abandoned/a.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/a.mpeg -------------------------------------------------------------------------------- /Spider/abandoned/clearMongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/clearMongodb.py -------------------------------------------------------------------------------- /Spider/abandoned/douBanSpider.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/douBanSpider.log -------------------------------------------------------------------------------- /Spider/abandoned/ghostdriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/ghostdriver.log -------------------------------------------------------------------------------- /Spider/abandoned/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/test.py -------------------------------------------------------------------------------- /Spider/abandoned/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/test1.py -------------------------------------------------------------------------------- /Spider/abandoned/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/test2.py -------------------------------------------------------------------------------- /Spider/abandoned/ttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/abandoned/ttest.py -------------------------------------------------------------------------------- /Spider/autoBarrowBookSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/autoBarrowBookSpider.py -------------------------------------------------------------------------------- /Spider/autoInformLibraryFreeBook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/autoInformLibraryFreeBook.py -------------------------------------------------------------------------------- /Spider/douBanSpider.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/douBanSpider.log -------------------------------------------------------------------------------- /Spider/getProxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/getProxies.py -------------------------------------------------------------------------------- /Spider/googleSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/googleSpider.py -------------------------------------------------------------------------------- /Spider/libraryCollectionSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/libraryCollectionSpider.py -------------------------------------------------------------------------------- /Spider/loginSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/loginSpider.py -------------------------------------------------------------------------------- /Spider/models/Book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/models/Book.py -------------------------------------------------------------------------------- /Spider/models/__pycache__/Book.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/models/__pycache__/Book.cpython-36.pyc -------------------------------------------------------------------------------- /Spider/proxies.log: -------------------------------------------------------------------------------- 1 | 112.250.65.222 2 | 123.161.16.20 3 | -------------------------------------------------------------------------------- /Spider/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/Spider/test.py -------------------------------------------------------------------------------- /a.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookRecommand/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookRecommand/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/__pycache__/whoosh_cn_backend.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/__pycache__/whoosh_cn_backend.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/admin.py -------------------------------------------------------------------------------- /bookRecommand/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/apps.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0001_initial.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0002_auto_20180516_1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0002_auto_20180516_1257.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0003_auto_20180516_1651.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0003_auto_20180516_1651.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0004_auto_20180516_1715.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0004_auto_20180516_1715.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0005_auto_20180516_1725.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0005_auto_20180516_1725.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0006_auto_20180516_1748.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0006_auto_20180516_1748.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0007_auto_20180516_1749.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0007_auto_20180516_1749.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0008_auto_20180516_1828.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0008_auto_20180516_1828.py -------------------------------------------------------------------------------- /bookRecommand/migrations/0009_auto_20180516_1905.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/0009_auto_20180516_1905.py -------------------------------------------------------------------------------- /bookRecommand/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0002_auto_20180516_1257.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0002_auto_20180516_1257.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0003_auto_20180516_1651.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0003_auto_20180516_1651.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0004_auto_20180516_1715.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0004_auto_20180516_1715.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0005_auto_20180516_1725.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0005_auto_20180516_1725.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0006_auto_20180516_1748.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0006_auto_20180516_1748.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0007_auto_20180516_1749.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0007_auto_20180516_1749.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0008_auto_20180516_1828.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0008_auto_20180516_1828.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/0009_auto_20180516_1905.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/0009_auto_20180516_1905.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/models.py -------------------------------------------------------------------------------- /bookRecommand/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/search_indexes.py -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/css/bookSystem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/css/bookSystem.css -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/css/style_11_common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/css/style_11_common.css -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/css/style_11_widthauto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/css/style_11_widthauto.css -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/css/styles.css -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/css/test.css: -------------------------------------------------------------------------------- 1 | #Login{ 2 | float: right; 3 | border: solid 1px black; 4 | } 5 | -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/avatar_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/avatar_man.png -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/avatar_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/avatar_woman.png -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/bg_head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/bg_head.jpg -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/bookImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/bookImage.jpg -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/gt_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/gt_favicon.png -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/guy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/guy.jpg -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/mac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/mac.jpg -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/s1.jpg -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/s2.jpg -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/images/sample_clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/images/sample_clients.png -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/js/html5shiv.js -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/js/jquery.min.js -------------------------------------------------------------------------------- /bookRecommand/static/bookRecommand/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/static/bookRecommand/js/template.js -------------------------------------------------------------------------------- /bookRecommand/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bookRecommand/templatetags/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/templatetags/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/templatetags/__pycache__/bookRecommand_tags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/templatetags/__pycache__/bookRecommand_tags.cpython-36.pyc -------------------------------------------------------------------------------- /bookRecommand/templatetags/bookRecommand_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/templatetags/bookRecommand_tags.py -------------------------------------------------------------------------------- /bookRecommand/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/tests.py -------------------------------------------------------------------------------- /bookRecommand/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/urls.py -------------------------------------------------------------------------------- /bookRecommand/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/views.py -------------------------------------------------------------------------------- /bookRecommand/whoosh_cn_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/bookRecommand/whoosh_cn_backend.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /externalInterface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externalInterface/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /externalInterface/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /externalInterface/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /externalInterface/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /externalInterface/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /externalInterface/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/admin.py -------------------------------------------------------------------------------- /externalInterface/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/apps.py -------------------------------------------------------------------------------- /externalInterface/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externalInterface/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /externalInterface/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/models.py -------------------------------------------------------------------------------- /externalInterface/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/tests.py -------------------------------------------------------------------------------- /externalInterface/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/urls.py -------------------------------------------------------------------------------- /externalInterface/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/externalInterface/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/manage.py -------------------------------------------------------------------------------- /modeles/Book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/modeles/Book.py -------------------------------------------------------------------------------- /modeles/__pycache__/Book.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/modeles/__pycache__/Book.cpython-36.pyc -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/readme.md -------------------------------------------------------------------------------- /templates/bookRecommand/bookDetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/bookRecommand/bookDetail.html -------------------------------------------------------------------------------- /templates/bookRecommand/bookSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/bookRecommand/bookSearch.html -------------------------------------------------------------------------------- /templates/bookRecommand/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/bookRecommand/detail.html -------------------------------------------------------------------------------- /templates/bookRecommand/emailLogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/bookRecommand/emailLogin.html -------------------------------------------------------------------------------- /templates/bookRecommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/bookRecommand/index.html -------------------------------------------------------------------------------- /templates/bookRecommand/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/bookRecommand/login.html -------------------------------------------------------------------------------- /templates/bookRecommand/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/bookRecommand/setup.html -------------------------------------------------------------------------------- /templates/bookRecommand/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/bookRecommand/test.html -------------------------------------------------------------------------------- /templates/search/indexes/bookRecommand/book_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/search/indexes/bookRecommand/book_text.txt -------------------------------------------------------------------------------- /templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/templates/search/search.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripingit/BookRecommandSystemWeb-with-Django/HEAD/test.py --------------------------------------------------------------------------------