是否可以使用Python返回当前的系统日历格式?例如非公历日历格式,例如泰国佛教日历。
答案 0 :(得分:1)
在Windows下?...对于这种方法,您需要获取win32api package from here,这是一个快速脚本,用于读取包含系统默认日历类型的注册表项,但每个用户都有自己的密钥也是如此,因此您可能需要动态检查。
This gets the iCalendarType key value which you find out more about here...
以下是获取值的一些代码:
import win32api
import win32con
def ReadRegistryValue(hiveKey, key, name=""):
data = typeId = None
try:
keyHandle = win32api.RegOpenKeyEx(hiveKey, key, 0, win32con.KEY_ALL_ACCESS)
data, typeId = win32api.RegQueryValueEx(keyHandle, name)
win32api.RegCloseKey(keyHandle)
except Exception, e:
print "ReadRegistryValue failed:", hiveKey, key, name, e
return "Registry Key Value is: " + data
print ReadRegistryValue(win32con.HKEY_USERS,".DEFAULT\\Control Panel\\International","iCalendarType")
现在....除了一个(1)之外,这个值意味着什么?我找不到任何地方,但希望这能让你走上正确的道路......