03 2020 档案

摘要:解决pureftp目录无法显示的问题 # pureftp账号登录后发现很多目录无法显示,通过查看配置文件发现是 LimitRecursion 10000 8 # 这个限制,最多能列出10000个文件 # public_html 这个目录下有10917,修改这个参数并且重启pureftp即可 root 阅读全文
posted @ 2020-03-27 18:48 reblue520 阅读(574) 评论(0) 推荐(0) 编辑
摘要:在django中使用celery Django版本1.9.8 pip install django-celery Redis要指定版本,默认的3.x版本有问题 Pip uninstall redis pip install redis==2.10.6 创建django的app celery_cour 阅读全文
posted @ 2020-03-14 00:27 reblue520 阅读(861) 评论(1) 推荐(0) 编辑
摘要:Django创建站点的基本步骤 下载css样式文件 https://semantic-ui.com/introduction/getting-started.html 使用django创建项目 D:\python\mooc_uinversity_songtian\python_web>django- 阅读全文
posted @ 2020-03-14 00:16 reblue520 阅读(376) 评论(0) 推荐(0) 编辑
摘要:mail_receive_monitor05.py import zmail from tkinter import * import tkinter.messagebox server = zmail.server('reblue520@163.com', 'reblue.520') mail = 阅读全文
posted @ 2020-03-13 23:59 reblue520 阅读(430) 评论(0) 推荐(0) 编辑
摘要:import smtplib from smtplib import SMTP_SSL from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.header impo 阅读全文
posted @ 2020-03-13 23:50 reblue520 阅读(666) 评论(0) 推荐(0) 编辑
摘要:import xlrd import xlwt # 需求:拷贝excel中的内容到另外一个excel中 flile_name = "7月下旬入库表.xlsx" # 读取源excel xlsx = xlrd.open_workbook(flile_name) # xlsx = xlrd.open_wo 阅读全文
posted @ 2020-03-13 23:47 reblue520 阅读(6365) 评论(0) 推荐(0) 编辑
摘要:centos7环境通过rpm包安装mysql8.0.19mysql的rpm包下载地址:http://mirrors.ustc.edu.cn/mysql-ftp/Downloads/MySQL-8.0/ # 下载mysql8.0.19版本mysql-community-client-8.0.19-1. 阅读全文
posted @ 2020-03-13 23:34 reblue520 阅读(631) 评论(0) 推荐(0) 编辑
摘要:centos7环境编译安装python3.7.7 # 安装基本的基础源和epel源为阿里云的mirrors wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo wget -O / 阅读全文
posted @ 2020-03-13 23:32 reblue520 阅读(803) 评论(0) 推荐(0) 编辑
摘要:app名:sysmonitor sysmonitor/apps.py #_*_ coding:utf-8 _*_ from __future__ import unicode_literals from django.apps import AppConfig class SysmonitorCon 阅读全文
posted @ 2020-03-06 17:53 reblue520 阅读(477) 评论(0) 推荐(0) 编辑
摘要:创建一个app,并且把这个app拖入到统一的apps 作为root的包中 D:\>cd D:\python\mxonline D:\python\mxonline>python manage.py start app firstapp 搭建基本的静态文件images/css/html框架 Css文件 阅读全文
posted @ 2020-03-05 18:17 reblue520 阅读(262) 评论(0) 推荐(0) 编辑