借鉴代码来自:https://github.com/hgoldfish/quickpanel实现代码: 1 # -*- coding:utf-8 -*- 2 from __future__ import print_function 3 from __future__ import unico...
分类:
其他好文 时间:
2015-04-20 12:36:54
阅读次数:
218
今天初次使用了PyQt5,感觉不错。
注意的问题是,PyQt5貌似只支持Python 3 。
碰到的问题记录如下。...
分类:
其他好文 时间:
2015-04-17 13:55:52
阅读次数:
214
转载于http://blog.chinaunix.net/uid-200142-id-4018863.htmlpython的string和PyQt的QString的区别 python string和PyQt的QString的区别 以下在Python2.6和PyQt4.4.4 for Python2,...
分类:
编程语言 时间:
2015-04-17 13:37:05
阅读次数:
257
1.下载PyQt
官方网站:http://www.riverbankcomputing.com/software/pyqt/download5
我的操作系统是64位的,安装的是Python3.4.3,所以我选择下载:PyQt5-5.4.1-gpl-Py3.4-Qt5.4.1-x64.exe
单击安装即可。
2.配置PyCharm
1)打开PyCharm,执行快捷键ct...
分类:
编程语言 时间:
2015-04-16 15:52:59
阅读次数:
2361
----------------------------install --------------------------------------1.下载pyqt http://www.riverbankcomputing.co.uk/software/pyqt/download2. pip in...
分类:
其他好文 时间:
2015-04-03 23:54:27
阅读次数:
193
背景介绍
pyqt 客户端方案
C 和python 混合编程方案
纯python服务器解决方案由于对服务器开发熟悉程度不高暂时未想到应用程序服务器的开发应用求指点
网络快速测试方案
学术研究
技术规划
反思
问题背景介绍
三年的C++ windows 客户端的开发经验, 接触python也快有两年了。 记得最开始会选择接触python的原因是因为李开复老师的强烈推荐。 接触以后一直对python...
分类:
编程语言 时间:
2015-04-03 21:06:57
阅读次数:
252
从Pyqt的examples中看到一段截图代码, (路径:examplas\desktop\screenshot.py) 所以想自己UI下界面,手动练习下通过UI生成的: Screenshot.py 1 # -*- coding: utf-8 -*- 2 3 # Form implement...
分类:
其他好文 时间:
2015-03-31 10:40:40
阅读次数:
171
因为想要学习python界面和串口通信。所以在github上面找到了这个一个程序 地址是http://eli.thegreenplace.net/2009/08/07/a-live-data-monitor-with-python-pyqt-and-pyserial我使用git将代码clone出来之...
分类:
其他好文 时间:
2015-03-15 00:35:41
阅读次数:
337
#-*-coding:cp936-*-fromPyQt4importQtCore,QtGui,QtclassRotatePage(QtGui.QFrame):def__init__(self,img,x_pos,y_pos,direction=1,speed=30,step=10):super(Ro...
分类:
其他好文 时间:
2015-03-13 20:17:34
阅读次数:
203
一.smtplib 的介绍 smtplib.SMTP([host[, port[, local_hostname[, timeout]]]]) SMTP类构造函数,表示与SMTP服务器之间的连接,通过这个连接可以向smtp服务器发送指令,执行相关操作(如:登陆、发送邮件)。所有参数都是可选的。h.....
分类:
其他好文 时间:
2015-03-12 16:58:03
阅读次数:
204