Python 【已解决】virtualenv报错AssertionError virtualenv新建环境时报错: AssertionError: Filename D:\Python34\Lib\os.py does not start with any of these p... 10月28日 阅读 5,312 views 发表评论 阅读全文
Python 【经验分享】解决Python socket recv()数据为空 不久之前,我曾经把Linux下Socket与windows下python socket自定义协议通信完成,但是后来使用过程中发现一些bug,当接收发送数据的缓冲区足够大时,python作为客户端接收数... 09月30日 阅读 18,367 views 发表评论 阅读全文
Python 【整理】python操作mongodb Python操作mongodb,通过pymongo进行操作。 首先通过pip安装pymongo: pip install pymongo 其次就是pymongo的一些简单操作了,如下: # codin... 09月14日 阅读 2,576 views 发表评论 阅读全文
Python 【整理】Qt/PyQt QLineEdit自动补全 直接贴码: #coding=utf-8 import sys from PyQt4.QtCore import Qt from PyQt4.QtGui import QApplication, QCo... 09月14日 阅读 6,068 views 发表评论 阅读全文
Python 【已解决】TypeError: qRegisterResourceData(int, str, str, str): argument 2 has unexpected type ‘str’ 今天拿到一个PyQt的程序,运行之后,发现无法执行,报错: TypeError: qRegisterResourceData(int, str, str, str): argument 2 has u... 09月05日 阅读 12,449 views 发表评论 阅读全文
Python 【整理】mongo shell 增删改查命令快速预览 mongodb shell命令 1:浏览数据库(数据库名字:library) use library 查看可用的数据库和集合 show dbs show collections 2:在集合中插入数据(... 08月10日 阅读 3,184 views 发表评论 阅读全文
Python 【原创】Eric 6进行PyQt开发 打开Eric,菜单选择Project->New: 输入项目名字,项目语言,项目类型(我们安装的是PyQt4,故选择PyQt4,因为是图形界面开发,所以是PyQt4 GUI),项目目录...如下图... 08月09日 阅读 4,905 views 发表评论 阅读全文
Python 【原创】PyQt4-4.11.4-gpl-Py3.4-Qt4.8.7-x32开发环境搭建 安装PyQt4之前,确保Python安装,python安装参考:http://www.jyguagua.com/?p=2246 PyQt4下载地址: https://riverbankcomputin... 08月09日 阅读 9,760 views 1 阅读全文
Python 【原创】python 3.4.3 32位和pycharm搭建 1:开发工具包获取 pycharm:python开发工具,在pycharm里面写代码,调试; 下载地址:http://www.jetbrains.com/pycharm/download/ pytho... 08月09日 阅读 18,918 views 1 阅读全文