01 2021 档案
Django2.1集成xadmin管理后台所遇到的错误集锦,解决填坑
摘要:django默认是有一个admin的后台管理模块,但是丑,功能也不齐全,但是大神给我们已经集成好了xadmin后台,我们拿来用即可,但是呢,django已经升级到2.1版本了,xadmin貌似跟不上节奏,那么在集成过程中咱就一步一步填坑吧,这也是一种学习的过程,遇到错误,找到错误的地方,看看djan
阅读全文
ccleaner注册码
摘要:断网注册 1.断开网络 2.输入注册信息 名称:Registered User 密钥:CBB4-FJN4-EPC6-G5P6-QT4C
阅读全文
flask之flask_sqlalchemy安装
摘要:网址:http://docs.jinkan.org/docs/flask-sqlalchemy/ 1.安装:pip install flask-sqlalchemy 或者 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple flask-sq
阅读全文
flask 之 flask_wtf安装
摘要:1.pip install flask-wtf 或者 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple flask-wtf 2.表单使用 helloform.py from flask_wtf import FlaskForm #导入 F
阅读全文
flask之bootstrap
摘要:bootstrap中文网:https://www.bootcss.com/ 1.安装:pip install flask-bootstrap 或者 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple flask-bootstrap 2.初始
阅读全文
爬虫之安装 beautifulsoup4
摘要:1.安装:pip install beautifulsoup4 或者 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple beautifulsoup4
阅读全文
wordcloud的应用
摘要:使用图片遮罩实现文字显示 1.网址:http://amueller.github.io/word_cloud/auto_examples/simple.html 2.例子:http://amueller.github.io/word_cloud/auto_examples/wordcloud_cn.
阅读全文
echarts使用
摘要:1.官网:http://echarts.apache.org/zh/index.html 2.GitHub:https://github.com/apache/incubator-echarts 3.github:编译后可以直接用的js文件:https://github.com/apache/inc
阅读全文
flask安装
摘要:1.安装: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple flask 2.项目目录说明 static:存放css和js templates:存放html 3.启动命令: D:\Evns\myfirstflask\Scripts\pyt
阅读全文