新军's profileIns'PhotosBlogListsMore ![]() | Help |
|
January 02 开机设置ie标题写了一个脚本,每次开机设置IE标题栏,显示当前天气.因人在武汉,所以只显示了武汉的天气.将代码保存为脚本设置为开机自启动即可.
没有做过多的异常处理,看着用就可以.
代码:
[Python Code]
#!/usr/bin/env python
#-*-coding:utf-*- import win32api import win32con import datetime import urllib import re socket = urllib.urlopen('http://mimg.126.com/tianqi/city_share/57494.html') content = socket.read() socket.close() pattern = re.compile('<p>(.*)</p>') m = pattern.findall(content) title = m[0] + ' ' + m[1] keyname = 'Software\\Microsoft\\Internet Explorer\Main' try: key = win32api.RegOpenKey(win32con.HKEY_CURRENT_USER, keyname, 0, win32con.KEY_ALL_ACCESS) win32api.RegSetValueEx(key, 'Window Title', 0, win32con.REG_SZ, title) win32api.RegCloseKey(key) except: pass TrackbacksThe trackback URL for this entry is: http://atizu.spaces.live.com/blog/cns!770045E52BB97DD2!228.trak Weblogs that reference this entry
|
|
|