摘要:
原文:http://www.cnblogs.com/zqifa/p/python-7.html 阅读全文
摘要:
原文:http://blog.csdn.net/skykingf/article/details/50469466 FileTypesMan – 修改文件关联软件 FileTypesMan – 修改文件关联软件 一不小心勾选了某个文件类型的默认打开程序,假设是jsp文件,默认选择为IE,这样以后双击 阅读全文
摘要:
PySide 1.2.1 Reference http://pyside.github.io/docs/pyside/ 原文:http://blog.csdn.net/u011008379/article/details/55299371 PySide是Python下的一款GUI库,可惜Github 阅读全文
摘要:
python3.6 smtplib模块中的fqdn = socket.getfqdn()返回值是: TOMAS-PC.DHCP HOST 但是126邮件服务器认为"TOMAS-PC.DHCP HOST"不是主机名,也不是域名,所以出现使用python发邮件时,提示语法错误。 阅读全文
摘要:
# 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... 阅读全文
摘要:
# 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... 阅读全文
摘要:
#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... 阅读全文
摘要:
https://www.oschina.net/code/snippet_157181_13215 阅读全文
摘要:
转自:https://pastebin.com/nJyVDHPM 阅读全文