摘要:
模块图 代码 或者加入到两个handler处理 #!/usr/bin/env python3 # -*- coding: utf-8 -*- # import logging # 【简单日志】 # logging.basicConfig(filename='log1.txt',level=loggi 阅读全文
摘要:
1.新特性 2. re_path正则形式 阅读全文
摘要:
init文件将类导入即可 测试makemigrations 阅读全文
摘要:
当网站达到一定的规模时,网站的各种优化是必须要进行的。 而网站的优化中,针对数据库各种优化是最重点的了。 mysql数据库中的查询语句有关limit语句的优化。 一般limit是用在分页的程序的分页上的,当应用数据量够小时,也许感觉不到limit语句的任何问题,但当查询数据量达到一定程度时,limi 阅读全文
摘要:
下载安装 github地址 https://github.com/sshwsfc/xadmin/tree/django2 venv> pip install xadmin-django2.zip (期间会自动安装依赖包) 源码放入project目录下。这里整理到extra_apps目录下 (放入后可 阅读全文
摘要:
安装与路径 进入退出venv wrapper 已有项目pycharm设置 addlocal 新项目使用venv。 检查上一步中的设置,可能也需要设置。 运行项目命令时,也需要切换到虚拟环境下 阅读全文
摘要:
model Foreignkey 反向操作 Admin管理后台 后台注册由grade添加student (不实用,条目多时比较乱) from django.contrib import admin # Register your models here. from .models import Gr 阅读全文
摘要:
1. 安装 环境 centos7.4 zabbix3.0 安装页,参考 https://www.zabbix.com/documentation/3.0/manual/installation/install_from_packages/repository_installation https:/ 阅读全文
摘要:
编写dockerfile Dockerfile内容 1个run为1层文件层,注意清理不必要的安装包。 创建image 阅读全文
摘要:
npm install -g cnpm --registry=https://registry.npm.taobao.org npm install -g vue-cli到djangoproject 根目录下 vue-init webpack appfront 阅读全文
摘要:
基本功能 镜像 下载镜像 查看本地镜像 安装与commit,每次commit变化images名。 由此,生成了新的镜像 learn/ping 在本地仓库 container 查看 启停 删除 仓库 公有仓库 docker pull a docker tag a b docker login dock 阅读全文
摘要:
pip3 install -r requirements.txt pip freeze # 生成 paramiko 基础使用 import paramiko def testSSH(): ssh = paramiko.SSHClient() ssh.set_missing_host_key_poli 阅读全文
摘要:
url 阅读全文
摘要:
sourcetree key 操作 在终端中打开 生成key 上传到码云 个人 设置 测试 配置sourcetree 码云创建项目 sourcetree克隆 填入上图ssh值 和本地路径 获取目录后,到该目录创建项目 如果是导入方式pycharm设置django运行 阅读全文
摘要:
os.system 执行的命令为打印,返回值为0或1 os.popen 可以保存返回值,无法保存返回值 subprocess subprocess.run 涉及到管道 用shell=True,此时返回值returncode=0 即不用列表形式,需要指定shell=True。 stdout与stder 阅读全文
摘要:
shutil.make_archive(base_name, format,...) 创建压缩包并返回文件路径,例如:zip、tar 创建压缩包并返回文件路径,例如:zip、tar base_name: 压缩包的文件名,也可以是压缩包的路径。只是文件名时,则保存至当前目录,否则保存至指定路径, 如: 阅读全文
摘要:
目录 功能 os.path 阅读全文
摘要:
洗牌 阅读全文
摘要:
1. time模块 1.1测试 1.2转换 time.localtime() 可以传入参数, time.time()不行 >>> time.mktime(tl)1523784410.0 1.3格式化 可以对time.localtime()格式化,不能对time.time()格式化 或者直接对当前时间 阅读全文