Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #50367 > unrolled thread

ANN: psutil 1.0.0 released

Started by"Giampaolo Rodola'" <g.rodola@gmail.com>
First post2013-07-10 17:46 +0200
Last post2013-07-10 16:06 +0000
Articles 2 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  ANN: psutil 1.0.0 released "Giampaolo Rodola'" <g.rodola@gmail.com> - 2013-07-10 17:46 +0200
    Re: ANN: psutil 1.0.0 released Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-10 16:06 +0000

#50367 — ANN: psutil 1.0.0 released

From"Giampaolo Rodola'" <g.rodola@gmail.com>
Date2013-07-10 17:46 +0200
SubjectANN: psutil 1.0.0 released
Message-ID<mailman.4528.1373471557.3114.python-list@python.org>
Hi there folks,
I'm pleased to announce the 1.0.0 release of psutil:
http://code.google.com/p/psutil/

=== About ===

psutil is a module providing an interface for retrieving information
on all running processes and system utilization (CPU, memory, disks,
network, users) in a portable way by using Python.
It currently supports Linux, Windows, OSX, FreeBSD and Sun Solaris,
both 32-bit and 64-bit, with Python versions from 2.4 to 3.3 by using
a single code base.

=== New features ===

This new release finally includes support for Sun Solaris systems!
I wish to thank Justin Venus who first wrote a prototype in Cython
which I then converted in C (full story here:
https://code.google.com/p/psutil/issues/detail?id=18).
Complete list of bugfixes and enhancements is here:
https://psutil.googlecode.com/hg/HISTORY

=== Compatitility notes ===

There's a couple of things you may want to know in terms of backward
compatibility:

 * Process.get_connections() 'status' field is no longer a string but
a constant object (psutil.CONN_*)
 * Process.get_connections() 'local_address' and 'remote_address'
fields have been renamed to 'laddr' and 'raddr'
 * psutil.network_io_counters() has been renamed to psutil.net_io_counters()

There are still aliases for the old names. They will issue a
DeprecationWarning though.

=== Links ===

* Home page: http://code.google.com/p/psutil
* Source tarball: http://psutil.googlecode.com/files/psutil-1.0.0.tar.gz
* API Reference: http://code.google.com/p/psutil/wiki/Documentation

Please try out this new release and let me know if you experience any
problem by filing issues on the bug tracker.
Thanks in advance and hooray for the new Solaris support! ;-)

All the best,


--- Giampaolo Rodola'

http://code.google.com/p/pyftpdlib/
http://code.google.com/p/psutil/
http://code.google.com/p/pysendfile/

[toc] | [next] | [standalone]


#50374

FromSteven D'Aprano <steve+comp.lang.python@pearwood.info>
Date2013-07-10 16:06 +0000
Message-ID<51dd867c$0$9505$c3e8da3$5496439d@news.astraweb.com>
In reply to#50367
On Wed, 10 Jul 2013 17:46:13 +0200, Giampaolo Rodola' wrote:

> Hi there folks,
> I'm pleased to announce the 1.0.0 release of psutil:
> http://code.google.com/p/psutil/

Congratulations on the 1.0.0 release!



-- 
Steven

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web