Video data crawling and data analysis based on python+django+mysql (including source code + documentation + deployment tutorial)

Video data crawling and data analysis are divided into two parts, namely administrators and users. The system is developed according to the actual needs of users and is close to life. The designated account number and password obtained from the administrator can be used to enter the system and use related system applications. Administrators have the greatest authority, followed by users. Administrators are generally responsible for the operation, maintenance and overall coordination of the entire system.

Recommended topics for computer graduation projects - a complete reference list for computer major graduation projects

Due to space limitations, if you want to get the complete article or source code, or do it on your behalf, scroll to the bottom of the article to see your personal VX.

The system structure is shown in the figure.

The administrator clicks User Management. Enter the user page and enter the user name to query, add or delete the user list, and view details, modify or delete user information as needed. as the picture shows:

The administrator clicks to jump to the board. Enter the dashboard page to view detailed data analysis on genre, rating, region, language, total number of movies and directors. as the picture shows:

The design of database tables is usually set up based on business logic. A database model is designed in the database and database tables are created based on the model .

user table

Field Name

type

length

Field description

primary key

Defaults

id

bigint

primary key

primary key

username

varchar

100

username

password

varchar

100

password

role

varchar

100

Role

administrator

addtime

timestamp

Add time

CURRENT_TIMESTAMP

Movie

Field Name

type

length

Field description

primary key

Defaults

id

bigint

primary key

primary key

addtime

timestamp

creation time

CURRENT_TIMESTAMP

daoyan

varchar

200

director

bianju

varchar

200

screenwriter

zhuyan

longtext

4294967295

Starring

leixing

varchar

200

type

Diqu

varchar

200

area

washing

varchar

200

language

shangyingriqi

varchar

200

Release date

pienchang

varchar

200

Length

pingfen

varchar

200

score

xiangqing

longtext

4294967295

Details

fengmian

longtext

4294967295

cover

mingcheng

varchar

200

movie title

laiyuan

varchar

200

source

Configuration file

Field Name

type

length

Field description

primary key

Defaults

id

bigint

primary key

primary key

name

varchar

100

Configuration parameter name

value

varchar

100

Configuration parameter values

Guess you like

Origin blog.csdn.net/xiejiachao/article/details/132621583