摘要: 原文:http://www.cnblogs.com/zqifa/p/python-7.html 阅读全文
posted @ 2017-08-26 20:43 未命名blogs 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 原文:http://blog.csdn.net/skykingf/article/details/50469466 FileTypesMan – 修改文件关联软件 FileTypesMan – 修改文件关联软件 一不小心勾选了某个文件类型的默认打开程序,假设是jsp文件,默认选择为IE,这样以后双击 阅读全文
posted @ 2017-08-18 07:31 未命名blogs 阅读(558) 评论(0) 推荐(0) 编辑
摘要: PySide 1.2.1 Reference http://pyside.github.io/docs/pyside/ 原文:http://blog.csdn.net/u011008379/article/details/55299371 PySide是Python下的一款GUI库,可惜Github 阅读全文
posted @ 2017-08-17 21:47 未命名blogs 阅读(300) 评论(0) 推荐(0) 编辑
摘要: python3.6 smtplib模块中的fqdn = socket.getfqdn()返回值是: TOMAS-PC.DHCP HOST 但是126邮件服务器认为"TOMAS-PC.DHCP HOST"不是主机名,也不是域名,所以出现使用python发邮件时,提示语法错误。 阅读全文
posted @ 2017-08-16 18:13 未命名blogs 阅读(6125) 评论(0) 推荐(0) 编辑
摘要: # coding=utf-8 #!/usr/bin/env python from PyQt5.QtCore import QPoint, QRect, QSize, Qt from PyQt5.QtWidgets import (QApplication, QLayout, QPushButton, QSizePolicy,QVBoxLayout, QWidget) fr... 阅读全文
posted @ 2017-08-15 18:44 未命名blogs 阅读(533) 评论(0) 推荐(0) 编辑
摘要: # The most useful windows datatypes import ctypes BYTE = ctypes.c_byte WORD = ctypes.c_ushort DWORD = ctypes.c_ulong #UCHAR = ctypes.c_uchar CHAR = ctypes.c_char WCHAR = ctypes.c_wchar UINT = ctype... 阅读全文
posted @ 2017-08-09 22:44 未命名blogs 阅读(557) 评论(0) 推荐(0) 编辑
摘要: #coding=utf-8 from ctypes import *; from platform import *; cdll_names = { 'Linux' :'libc.so.6', 'Windows':'msvcrt.dll' } system_name = system() #libc = cdll.LoadLibrary( cdll_names[sy... 阅读全文
posted @ 2017-08-09 14:58 未命名blogs 阅读(223) 评论(0) 推荐(0) 编辑
摘要: https://www.oschina.net/code/snippet_157181_13215 阅读全文
posted @ 2017-08-07 01:53 未命名blogs 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 转自:https://pastebin.com/nJyVDHPM 阅读全文
posted @ 2017-08-05 15:42 未命名blogs 阅读(380) 评论(0) 推荐(0) 编辑
摘要: https://docs.python.org/3/library/index.html 阅读全文
posted @ 2017-08-04 09:41 未命名blogs 阅读(85) 评论(0) 推荐(0) 编辑