Error: No module named os.uname under python 2.7

Error: No module named os.uname under python 2.7

我正在 运行ning python 2.7.3 系统上安装 anaconda。我最近 pip 安装了 internetarchive,当我从命令行 运行 安装程序时,我看到:

AttributeError: 'module' object has no attribute 'uname'

我也在 python 的空闲命令行中尝试过这个。该模块加载正常,但我得到了同样的错误。显然 os.uname() 在我的安装中丢失了,因为它在 python 中被记录为 os 的一部分:https://docs.python.org/2/library/os.html#os.uname

我的安装:

>>> import os
>>> dir(os)

['F_OK', 'O_APPEND', 'O_BINARY', 'O_CREAT', 'O_EXCL', 'O_NOINHERIT', 'O_RANDOM', 'O_RDONLY', 'O_RDWR', 'O_SEQUENTIAL', 'O_SHORT_LIVED', 'O_TEMPORARY', 'O_TEXT', 'O_TRUNC', 'O_WRONLY', 'P_DETACH', 'P_NOWAIT', 'P_NOWAITO', 'P_OVERLAY', 'P_WAIT', 'R_OK', 'SEEK_CUR', 'SEEK_END', 'SEEK_SET', 'TMP_MAX', 'UserDict', 'W_OK', 'X_OK', '_Environ', 'all', 'builtins', 'doc', 'file', 'name', 'package', '_copy_reg', '_execvpe', '_exists', '_exit', '_get_exports_list', '_make_stat_result', '_make_statvfs_result', '_pickle_stat_result', '_pickle_statvfs_result', 'abort', 'access', 'altsep', 'chdir', 'chmod', 'close', 'closerange', 'curdir', 'defpath', 'devnull', 'dup', 'dup2', 'environ', 'errno'、'error'、'execl'、'execle'、'execlp'、'execlpe'、'execv'、'execve'、'execvp', 'execvpe', 'extsep', 'fdopen', 'fstat', 'fsync', 'getcwd', 'getcwdu', 'getenv', 'getpid', 'isatty', 'kill', 'linesep', 'listdir', 'lseek', 'lstat', 'makedirs', 'mkdir', 'name', 'open', 'pardir', 'path', 'pathsep', 'pipe', 'popen', 'popen2', 'popen3', 'popen4', 'putenv', 'read', 'remove', 'removedirs', 'rename', 'renames', 'rmdir', 'sep', 'spawnl', 'spawnle', 'spawnv', 'spawnve', 'startfile', 'stat', 'stat_float_times', 'stat_result', 'statvfs_result', 'strerror', 'sys', 'system', 'tempnam', 'times', 'tmpfile', 'tmpnam', 'umask', 'unlink', 'unsetenv', 'urandom', 'utime', 'waitpid', 'walk', 'write']

python 中的其他一切似乎都很好而且一直如此。我哪里做错了? python.os 是否有缺少 uname 的版本?我在 windows 机器上;这是个问题吗?

这是模块中的相关代码(session.py in internetarchive):

 def _get_user_agent_string(self):
    """Generate a User-Agent string to be sent with every request."""
    uname = os.uname()
    try:
        lang = locale.getlocale()[0][:2]
    except:
        lang = ''
    py_version = '{0}.{1}.{2}'.format(*sys.version_info)
    return 'internetarchive/{0} ({1} {2}; N; {3}; {4}) Python/{5}'.format(
        __version__, uname[0], uname[-1], lang, self.access_key, py_version)

... <elsewhere> ...
self.headers['User-Agent'] = self._get_user_agent_string()

所以看起来(正如下面的答案中提到的)编码器很懒惰并且没有使这个 windows 兼容。他们为 API 提供了一个可选的 'self.headers['User-Agent']',它应该可以与我提供的任何字符串一起使用。所以我可以破解这个。

是的,在 windows 机器上是个问题(此处):os.uname 仅在类 unix 系统上可用。 来自文档:

os.uname()

Return a 5-tuple containing information identifying the current operating system. The tuple contains 5 strings: (sysname, nodename, release, version, machine). Some systems truncate the nodename to 8 characters or to the leading component; a better way to get the hostname is socket.gethostname() or even socket.gethostbyaddr(socket.gethostname()).

Availability: recent flavors of Unix.

正如医生所说:

a better way to get the hostname is socket.gethostname() or even socket.gethostbyaddr(socket.gethostname())

获取有关系统的一些信息的便携方法是 sys.platformplatform package

这个答案有点 post 特设,但我会推荐以下内容:

import platform
unameinfo = platform.uname()

这在 Windows 下工作正常,因为 uname 在文档 https://docs.python.org/3/library/platform.html 的跨平台下列出,我希望也能带到其他平台。由于这个问题被标记为 python2。7 我应该提到它已经可用于 python2,但这些文档现在是 oldskool。