背景 作为SRE,我们有很多很多自动化的工具,大部分都是自动运行的,还有一部分是CLI,我们一直苦于没有一个自己的管理后台网站,受限于前端能力薄弱,开发出来的网页只能说凑活能用,但是不好用。 现在我们有了Streamlit这个神奇,可以仅使用Python就开发一个简单的后台管理网站,同时也可以作为我 ...
分类:
编程语言 时间:
2021-06-03 18:01:32
阅读次数:
0
常用参数和函数 fill = 'xxx' # 填充xxx颜色 width = 'xxx' # 设置宽度或边框宽度 outline = 'orange' # 设置边框的颜色 canvas.itemcget(name, 'xxx') # 获取组件name的xxx属性 canvas.coords(name ...
分类:
其他好文 时间:
2021-06-03 17:57:11
阅读次数:
0
阅文时长 | 0.26分钟 字数统计 | 419.2字符 主要内容 | 1、引言&背景 2、深度思考&后续学习 3、异常情况 4、声明与参考资料 『Python·一键安装项目所需依赖包』 编写人 | SCscHero 编写时间 | 2021/6/2 AM1:19 文章类型 | 系列 完成度 | 已完 ...
分类:
编程语言 时间:
2021-06-03 17:45:18
阅读次数:
0
JavaScript 用来与浏览器交互。(CSS、HTML使用浏览器解析) 分类:解释性语言(编译一行执行一行),动态类型语言(eg:执行中可以改变某个变量的数据类型(let name='test'; name=123)),灵活,但是不安全(容易出错) JavaScript包括:ECMAScript ...
分类:
编程语言 时间:
2021-06-03 17:36:52
阅读次数:
0
作用: JAVA语言-(编译器)->字节码指令-(JVM)->机器码 JVM指令: 指令 详情 描述 数据交换指令 内存区域之间的传递和交换 JVM内存包括:操作数栈、局部变量表、Java堆、常量池、方法区。 JVM执行逻辑运算在操作数栈中,不管数据是在堆栈中还是常量池,最终都会将数据传送到操作数栈 ...
分类:
其他好文 时间:
2021-06-02 20:56:39
阅读次数:
0
<template> <div> </div> </template> <script> var self = this; export default { }; </script> // scoped 样式只在本组件使用 <style scoped> /** * 导入css样式组件 * @impo ...
分类:
其他好文 时间:
2021-06-02 20:55:34
阅读次数:
0
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:
其他好文 时间:
2021-06-02 20:39:46
阅读次数:
0
静态定位 <style> .parent{ width: 300px; height: 300px; background-color: aqua; } .child{ width: 100px; height: 100px; background-color: pink; /* 静态定位 posi ...
分类:
其他好文 时间:
2021-06-02 20:33:41
阅读次数:
0
html 1 <div class="parentBox"> 2 <div class="leftbox"></div> 3 <div class="rightbox"></div> 4 </div> 浮动布局 1 .parentBox{ 2 width: 100%; 3 height: 600px ...
分类:
其他好文 时间:
2021-06-02 20:16:12
阅读次数:
0
1.直接上代码 <el-table :data="data" border stripe style="width: 100%;" class="tableLimit" :height="height"> <el-table-column label="排序" type="index" align= ...
分类:
其他好文 时间:
2021-06-02 20:01:44
阅读次数:
0