# pydemo4pyles **Repository Path**: moyinzi/pydemo4pyles ## Basic Information - **Project Name**: pydemo4pyles - **Description**: py课设 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-12-10 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目文档 ## 目录说明 + venv/ 虚拟环境 + web/ 项目主体 + web/frontend/ 前端页面 + spider/ 爬虫模块(基于插件机制的简易框架) + spider/mod 爬虫插件入口 + spider/mod/sub_mod 爬虫插件核心代码 + requests + beautifulsoup4 + apscheduler + README.md 文档 ## django-webpack-loader 配置 + https://www.jianshu.com/p/fa0ae80d17d1 ## 跨域 ```bash pip install django-cors-headers ``` + https://www.jianshu.com/p/24945ee1ec05 ## 数据库连接 ```bash pip install pymysql # _init_.py import pymysql pymysql.install_as_MySQLdb() python manage.py makemigrations python manage.py migrate ``` + https://www.cnblogs.com/wcwnina/p/8719482.html + https://www.cnblogs.com/fengri/articles/django5.html ## 直接操作数据库 + http://www.runoob.com/python3/python3-mysql.html ## 动态模块载入 + https://www.cnblogs.com/zy6103/p/6943557.html + https://www.cnblogs.com/zh1164/p/6031464.html ## 分页查询 + https://blog.csdn.net/shirukai/article/details/81086272 ## 进度条 ```bash pip install tqdm ```