tags: Graduation Project django python Experience sharing reptile
Tourism recommendation systemDetailed function can be seen in the video link below
Video demonstrationhttps://www.bilibili.com/video/BV1J741127RG
This travel recommendation system is capturedWhere to goTourist attractions data and store the data tomysqlIn the database, then passMachine learningAnalyze the attraction data (including attractions and reviews) to analyze the clustering class to form a data model. Finally, through the form of a web website, recommend it to usersinterestedTourist attractions, realizationPersonalized recommendationIf there are students who want to learn or discuss, they can communicate privately, and the code can be expanded asGraduation Project。


pythonubuntu16.04Python2.7 has been installed by defaultpip$ sudo apt-get install python pip
$ sudo pip install --upgrade pip
mysqlNotice
mysqlThe default password is set to root, so as not to change the source code
$ sudo apt-get install mysql-server
$ sudo apt-get install mysql-client
$ sudo pip install django requests uniout bs4 image pandas lxml pandas
First generate database
CREATE DATABASE `tour` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
Generate data table
$ python manage.py migrate
Run reptile to get network data
$ python spider.py
Run website
$ python manager.py runserver
Visit website: 127.0.0.1:8000
$ python manager.py runserver
Visit website: 127.0.0.1:8000
forward from: Surprise In the modeling process of the recommendation system, we will use the python library.Surprise(Simple Python RecommendatIon System Engine)Is one of the scikit series (many studen...
Use the DJANGO framework background user certification to assist the front -end login page. Django code: The front -end Vue code is as follows: The login interface is shown in the figure: Previous-Cha...
1 Introduction Learning based on this articleRecommended System (1) -Early Recommended System Architecture 2 The common architecture of the recommendation system 2.1 Recommended system architecture de...
1. Template system (template) Fill the page with content. (1). Common symbols {{}} and {%%} in the template system If you need to resolve variables in the template, use {{}}. If you use logic related ...
Django routing system 1 basic URL format 2 differences between PATH and RE_PATH 3 Include method 4 URL routing analysis 5 Register Customized Regular Expression Path Converter 1 basic URL format 2 dif...
1.Transaction definition? A transaction is an indivisible logical unit of work. For example Transfers, deposits, orders, etc. can all be regarded as one transaction. 2. The four major characteristics ...
The tourism system design is divided into front and back websites and back-end management systems. The function points include the classified display of tourist attractions information, the details of...
FAQ:Frequently Asked Questions 1. How to set the date format in the JSON returned by the server? 1) JS side directly set (new Date (long integer).toLocaleDateString()) 2) Write a date conversion class...
Tourism system environment Project introduction 1.1 overview The travel ecosystem, the company's high-end user needs, the company decided to develop such a tourism system, this system includes tour e-...
Tourism management system Design requirements Design analysis system structure Attractions Hotel map Dining algorithm design Initialization information (deposit TXT text) code Precautions Design requi...