请教高人,python如何取得cpu和硬盘的唯一序列号?

请教高人,python如何取得cpu和硬盘的唯一序列号?

请高人指点。
最简单的办法,也是最实用的办法:
1用传统语言写上10行代码,从注册表中读出来,写成控制台程序,不要说你不会用。
2用b=os.popen('cpuinfo.exe')读出来,
就OK了。记住,Python是胶水,如果你状上python for win32也是可以的但,通用性就不强了。
我觉的那样不好。
多谢,我事半路出家的coder,以后还要大家多帮助。
POSIX系统可以直接访问/proc相关目录或文件
这是What's New in Python 2.3里面的一段话
The new platform module contains a number of functions that try to determine various properties of the platform you're running on. There are functions for getting the architecture, CPU type, the Windows OS version, and even the Linux distribution version. (Contributed by Marc-André Lemburg.)

这个platform module那里有,怎么用呢?