2019年10月31日

linux vt100 常用控制码

摘要: 详细可以man console_codes\033 同 \e \e[nG 光标移动到当前行的n列 同 \e[n\`\e[n\` 光标移动到当前行指n列 同\e[nG\e[d 光标移动到当前列指定行 \e[x;yH 光标移动x行y列 同\e[x;yf \e[xH: 光标移动到x行\e[x;yf 光标移 阅读全文

posted @ 2019-10-31 13:57 骑着蜗牛追太阳 阅读(1695) 评论(0) 推荐(0) 编辑

redhat 搭建yum 源

摘要: 搭建本地yummount -o loop rhel.iso /media/rhel-iso新建/etc/yum.repos.d/rhel.repo:[rhel]name=rhelbaseurl="file:///media/rhel-iso"gpgcheck=0 搭建网络yum新建/etc/yum. 阅读全文

posted @ 2019-10-31 09:53 骑着蜗牛追太阳 阅读(239) 评论(0) 推荐(0) 编辑

2019年10月28日

python ConfigParser 模块

摘要: 格式: [section]option = value import ConfigParser config=ConfigParser.ConfigParser() #读config.read('test.cfg')#with open('test.cfg','r') as f:# config.r 阅读全文

posted @ 2019-10-28 15:01 骑着蜗牛追太阳 阅读(674) 评论(0) 推荐(0) 编辑

python yaml 模块

摘要: yaml 文件规则1.区分大小写; 2.使用缩进表示层级关系; 3.使用空格键缩进,而非Tab键缩进 4.缩进的空格数目不固定,只需要相同层级的元素左侧对齐; 5.文件中的字符串不需要使用引号标注,但若字符串包含有特殊字符则需用引号标注; 6.注释标识为# 数据类型1.键值对user: rootpa 阅读全文

posted @ 2019-10-28 10:55 骑着蜗牛追太阳 阅读(1011) 评论(0) 推荐(0) 编辑

2019年10月25日

python xml文件处理

摘要: xml 文件: <Maple> <Job Name="Job.xml"> <Parameters> <Parameter Type="Single" Visible="True" ReadOnly="True" Name="Type" Value="Execution" /> <Parameter 阅读全文

posted @ 2019-10-25 10:37 骑着蜗牛追太阳 阅读(2001) 评论(0) 推荐(0) 编辑

2019年10月22日

py2exe 和pyinstaller打包

摘要: 两种方式:一 .py2exe (最好是在win7下面python2下去打包) 1.安装【Python3】 直接pip install py2exe,如果报ssl错误就pip install openpyxl -i http://pypi.douban.com/simple/ --trusted-ho 阅读全文

posted @ 2019-10-22 13:50 骑着蜗牛追太阳 阅读(2366) 评论(0) 推荐(0) 编辑

wxpython 学习之 --threading

摘要: 为了避免程序运行时,什么都干不了,甚至连移动窗口或者关闭的简单动作都会卡死,因此需要采用多线程。 class Mythread(threading.Thread): def __init__(self,window): super(Mythread,self).__init__() self.win 阅读全文

posted @ 2019-10-22 09:49 骑着蜗牛追太阳 阅读(468) 评论(0) 推荐(0) 编辑

2019年10月21日

wxpython 学习之 --文本框与Boxsizer布局管理器

摘要: 继上次窗口分割之后,初始化左右两个面板 运行结果: 在输出log的时候还可以加颜色显示 阅读全文

posted @ 2019-10-21 14:30 骑着蜗牛追太阳 阅读(1143) 评论(0) 推荐(0) 编辑

2019年9月30日

wxpython 学习之 --窗口分割

摘要: 运行结果: 在这里做了一些实验,总结如下: 1.在self.ParentWindow.SplitVertically(self.lpanel,self.rpanel,100)中,100即SashPosition=100,是指左边的窗口大小。 2.SashPosition=0:平均分割窗口;但是当设定 阅读全文

posted @ 2019-09-30 13:34 骑着蜗牛追太阳 阅读(1395) 评论(0) 推荐(0) 编辑

wxpython 学习之--panel

摘要: 一般控件是放在panel上的,当然控件也能放在Frame上,看下这两者的区别: 1.button放在panel上: 运行结果: 2.将button直接放在Frame上 运行结果: 阅读全文

posted @ 2019-09-30 10:31 骑着蜗牛追太阳 阅读(2425) 评论(0) 推荐(0) 编辑

导航