ANN: psutil 5.1.0 with hardware sensors released

Giampaolo Rodola' g.rodola at gmail.com
Wed Feb 1 15:54:06 EST 2017


Hello all,
I'm glad to announce the release of psutil 5.1.1:
https://github.com/giampaolo/psutil
A detailed blog post about this release is available here:
http://grodola.blogspot.com/2017/02/psutil-510-temperatures-batteries-and.html

About
=====

psutil (process and system utilities) is a cross-platform library for
retrieving information on running processes and system utilization (CPU,
memory, disks, network) in Python. It is useful mainly for system
monitoring, profiling and limiting process resources and management of
running processes. It implements many functionalities offered by command
line tools such as: ps, top, lsof, netstat, ifconfig, who, df, kill, free,
nice, ionice, iostat, iotop, uptime, pidof, tty, taskset, pmap. It
currently supports Linux, Windows, OSX, Sun Solaris, FreeBSD, OpenBSD and
NetBSD, both 32-bit and 64-bit architectures, with Python versions from 2.6
to 3.5 (users of Python 2.4 and 2.5 may use 2.1.3 version). PyPy is also
known to work.

What's new
==========

*2017-02-01*

**Enhancements**

- #357: added psutil.Process.cpu_num() (what CPU a process is on).
- #371: added psutil.sensors_temperatures() (Linux only).
- #941: added psutil.cpu_freq() (CPU frequency).
- #955: added psutil.sensors_battery() (Linux, Windows, only).
- #956: cpu_affinity([]) can now be used as an alias to set affinity against
  all eligible CPUs.

**Bug fixes**

- #687: [Linux] pid_exists() no longer returns True if passed a process
thread
  ID.
- #948: cannot install psutil with PYTHONOPTIMIZE=2.
- #950: [Windows] Process.cpu_percent() was calculated incorrectly and
showed
  higher number than real usage.
- #951: [Windows] the uploaded wheels for Python 3.6 64 bit didn't work.
- #959: psutil exception objects could not be pickled.
- #960: Popen.wait() did not return the correct negative exit status if
process
  is ``kill()``ed by a signal.
- #961: [Windows] WindowsService.description() may fail with
  ERROR_MUI_FILE_NOT_FOUND.

Links
=====

- Home page: https://github.com/giampaolo/psutil
- Download: https://pypi.python.org/pypi/psutil
- Documentation: http://pythonhosted.org/psutil
- What's new: https://github.com/giampaolo/psutil/blob/master/HISTORY.rst

--

Giampaolo - http://grodola.blogspot.com


More information about the Python-announce-list mailing list