Re: psutil

2018-02-28 Thread Larry Martell
On Tue, Feb 27, 2018 at 8:30 PM, Matt Wheeler wrote: > > > On Wed, 28 Feb 2018, 00:49 Larry Martell, wrote: >> >> On Tue, Feb 27, 2018 at 7:36 PM, José María Mateos >> wrote: >> > On Tue, Feb 27, 2018 at 07:29:50PM -0500, Larry Martell wrote: >> >

Re: psutil

2018-02-27 Thread Wildman via Python-list
On Tue, 27 Feb 2018 19:29:50 -0500, Larry Martell wrote: > Trying to install psutil (with pip install psutil) on Red Hat EL 7. > It's failing with: > > Python.h: No such file or directory > > Typically that means the python devel libs are not installed, but they are: &

Re: psutil

2018-02-27 Thread Matt Wheeler
On Wed, 28 Feb 2018, 00:49 Larry Martell, wrote: > On Tue, Feb 27, 2018 at 7:36 PM, José María Mateos > wrote: > > On Tue, Feb 27, 2018 at 07:29:50PM -0500, Larry Martell wrote: > >> Trying to install psutil (with pip install psutil) on Red Hat EL 7. > >> It'

Re: psutil

2018-02-27 Thread Larry Martell
On Tue, Feb 27, 2018 at 7:36 PM, José María Mateos wrote: > On Tue, Feb 27, 2018 at 07:29:50PM -0500, Larry Martell wrote: >> Trying to install psutil (with pip install psutil) on Red Hat EL 7. >> It's failing with: >> >> Python.h: No such file or directory &

Re: psutil

2018-02-27 Thread Larry Martell
On Tue, Feb 27, 2018 at 7:37 PM, Chris Angelico wrote: > On Wed, Feb 28, 2018 at 11:29 AM, Larry Martell > wrote: >> Trying to install psutil (with pip install psutil) on Red Hat EL 7. >> It's failing with: >> >> Python.h: No such file or directory >>

Re: psutil

2018-02-27 Thread José María Mateos
On Tue, Feb 27, 2018 at 07:29:50PM -0500, Larry Martell wrote: > Trying to install psutil (with pip install psutil) on Red Hat EL 7. > It's failing with: > > Python.h: No such file or directory Two questions come to my mind: - Does it work if you try to install some other packa

Re: psutil

2018-02-27 Thread Chris Angelico
On Wed, Feb 28, 2018 at 11:29 AM, Larry Martell wrote: > Trying to install psutil (with pip install psutil) on Red Hat EL 7. > It's failing with: > > Python.h: No such file or directory > > Typically that means the python devel libs are not installed, but they are: > >

psutil

2018-02-27 Thread Larry Martell
Trying to install psutil (with pip install psutil) on Red Hat EL 7. It's failing with: Python.h: No such file or directory Typically that means the python devel libs are not installed, but they are: [root@liszt ~]# yum install python-devel Package python-devel-2.7.5-58.el7.x86_64 al

Re: ANN: psutil 5.3.0 with full unicode support is out

2017-09-04 Thread Giampaolo Rodola'
ters processes with a funky name which works > > with both Python 2 > > and 3: > > > > import psutil, sys > > > > PY3 = sys.version_info[0] == 2 > > LOOKFOR = u"ƒőő.exe" > > for proc in psutil.process_iter(attrs=['name

Re: ANN: psutil 5.3.0 with full unicode support is out

2017-09-03 Thread eryk sun
On Sun, Sep 3, 2017 at 11:09 PM, Giampaolo Rodola' wrote: > > This is an example which filters processes with a funky name which works > with both Python 2 > and 3: > > import psutil, sys > > PY3 = sys.version_info[0] == 2 > LOOKFOR = u"ƒőő.exe&q

Re: ANN: psutil 5.3.0 with full unicode support is out

2017-09-03 Thread Giampaolo Rodola'
psutil. Other than _winreg I can't recall other APIs returning Unicode by default unless explicitly asked (e.g os.getcwdu() or os.listdir(u'.')) and I didn't want to duplicate psutil APIs in the same fashion. It must be noted that many stdlib APIs in Python 2 are "broken"

Re: ANN: psutil 5.3.0 with full unicode support is out

2017-09-03 Thread eryk sun
x27;mbcs' encoding, i.e. ANSI. Using the 'replace' handler will make a mess with best-fit replacements and question marks. For example, _winreg in Python 2 has to return unicode strings and always has, which should be the precedent for psutil. Python 2 code that supports Windows has

ANN: psutil 5.3.0 with full unicode support is out

2017-09-03 Thread Giampaolo Rodola'
Hello all, I'm glad to announce the release of psutil 5.3.0: https://github.com/giampaolo/psutil A blogpost describing the main changes is available here: http://grodola.blogspot.com/2017/09/psutil-530-with-full-unicode-support-is.html About ===== psutil (process and system utilities) is a

Re: ANN: psutil 5.1.0 with hardware sensors released

2017-02-02 Thread Hans-Peter Jansen
On Mittwoch, 1. Februar 2017 21:54:06 Giampaolo Rodola' wrote: > Hello all, > I'm glad to announce the release of psutil 5.1.1: ^ Guess, you meant to say 5.1.0 here, or probably your time machine broke ;) Cheers, Pete -- https:/

ANN: released psutil 5.0.0, introducing a 2x speedup for process methods

2016-11-06 Thread Giampaolo Rodola'
Hello all, I'm glad to announce the release of psutil 5.0.0: https://github.com/giampaolo/psutil This release introduces important speedups making psutil from 2x to 6x faster depending on what platform you're on. A full blog post can be found here: http://grodola.blogspot.com/2016/11/psu

ANN: psutil 4.2.0 with Windows service support is out

2016-05-15 Thread Giampaolo Rodola'
Full blog post: http://grodola.blogspot.com/2016/05/psutil-420-windows-services-and-python.html -- Giampaolo - http://grodola.blogspot.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: psutil 4.2.0 with Windows service support is out

2016-05-15 Thread Giampaolo Rodola'
Full blog post: http://grodola.blogspot.com/2016/05/psutil-420-windows-services-and-python.html -- Giampaolo - http://grodola.blogspot.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: psutil 4.0.0 released - how to get "real" process memory and environ in Python

2016-02-17 Thread Giampaolo Rodola'
Full blog post: http://grodola.blogspot.com/2016/02/psutil-4-real-process-memory-and-environ.html -- Giampaolo - http://grodola.blogspot.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: released psutil 3.3.0 with OpenBSD support

2015-11-24 Thread Giampaolo Rodola'
Full story here: http://grodola.blogspot.com/2015/11/openbsd-support-for-psutil.html -- Giampaolo - http://grodola.blogspot.com -- https://mail.python.org/mailman/listinfo/python-list

ANN: psutil 3.0.0 is out

2015-06-13 Thread Giampaolo Rodola'
Hi there folks, I'm pleased to announce release 3.0.0 release of psutil: http://grodola.blogspot.com/2015/06/psutil-30.html === About === psutil (python system and process utilities) is a cross-platform library for retrieving information on running processes and system utilization (CPU, m

ANN: psutil 2.2.0 released

2015-01-06 Thread Giampaolo Rodola'
Hello all, I'm glad to announce the release of psutil 2.2.0. In this new release I decided to drop support for Python 2.4 and 2.5 for good. Whoever is still on Python 2.4 and 2.5 can use old 2.1.3 version: https://pypi.python.org/pypi?name=psutil&version=2.1.3&:action=files Main

ANN: psutil 2.0.0 released

2014-03-10 Thread Giampaolo Rodola'
Hi there folks, I'm pleased to announce the 2.0.0 release of psutil: http://code.google.com/p/psutil/ === About === psutil (python system and process utilities) is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, networ

ANN: psutil 1.1.0 released

2013-09-28 Thread Giampaolo Rodola'
Hi there folks, I'm pleased to announce the 1.1.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

Re: ANN: psutil 1.0.0 released

2013-07-11 Thread Dotan Cohen
Thanks, this looks really nice. I was duplicating some of this for my CLI-based webserver control panel: https://github.com/dotancohen/burton As soon as I integrate psutil into Burton I'll add it to the README and such. How would you like me to mention attribution exactly? -- Dotan Cohen

Re: ANN: psutil 1.0.0 released

2013-07-11 Thread 88888 Dihedral
for Python 3.2 > > > (http://code.google.com/p/psutil/downloads/list), but the version for Python > > > 3.3 is not there. > > > > Unfortunately I'm having troubles with Visual Studio 64-bit I still > > haven't managed to fix. > > Hope I will get

Re: ANN: psutil 1.0.0 released

2013-07-11 Thread Giampaolo Rodola'
> Congratulations on the 1.0.0 release! Thanks a lot. =) > Btw. any change you can put up a prebuilt installer for a 64-bit built > with Python 3.3? You have one for Python 3.2 > (http://code.google.com/p/psutil/downloads/list), but the version for Python > 3.3 is not there. Un

Re: ANN: psutil 1.0.0 released

2013-07-10 Thread Jurko Gospodnetić
Hi. I'm pleased to announce the 1.0.0 release of psutil: http://code.google.com/p/psutil/ Great! :-) Btw. any change you can put up a prebuilt installer for a 64-bit built with Python 3.3? You have one for Python 3.2 (http://code.google.com/p/psutil/downloads/list), but the ve

Re: ANN: psutil 1.0.0 released

2013-07-10 Thread Steven D'Aprano
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 -- http://mail.python.org/mailman/listinfo/python-list

ANN: psutil 1.0.0 released

2013-07-10 Thread Giampaolo Rodola'
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

Re: ANN: psutil 0.7.0 released

2013-04-12 Thread Stefan Behnel
Roy Smith, 12.04.2013 17:33: > Giampaolo Rodol� wrote: > >> Hi there folks, >> I'm pleased to announce the 0.7.0 release of psutil: >> http://code.google.com/p/psutil/ > > I see a lot of these types of announcements. May I suggest that people > add a sho

Re: ANN: psutil 0.7.0 released

2013-04-12 Thread Roy Smith
In article , Giampaolo Rodolà wrote: > Hi there folks, > I'm pleased to announce the 0.7.0 release of psutil: > http://code.google.com/p/psutil/ I see a lot of these types of announcements. May I suggest that people add a short description of what that package is. From the

ANN: psutil 0.7.0 released

2013-04-12 Thread Giampaolo Rodolà
Hi there folks, I'm pleased to announce the 0.7.0 release of psutil: http://code.google.com/p/psutil/ This is mainly a bugfix release addressing a couple of high priority issues on Linux and FreeBSD. Complete list of bugfixes and enhancements is here: https://psutil.googlecode.com/hg/HI

ANN: psutil 0.6.0 released

2012-08-13 Thread Giampaolo Rodolà
Hi folks, I'm pleased to announce the 0.6.0 release of psutil: http://code.google.com/p/psutil/ This is one of the best releases so far as it addresses two important issues: system memory functions management and permission errors occurring on Windows and OSX. === Memory func

Re: ANN: psutil 0.5.0 released

2012-06-29 Thread Giampaolo Rodolà
2012/6/27 Giampaolo Rodolà : > Hi folks, > I'm pleased to announce the 0.5.0 release of psutil: > http://code.google.com/p/psutil/ > > === Major new features === > > - system users > - (Linux, Windows) process CPU affinity (get and set) > - (POSIX) process n

ANN: psutil 0.5.0 released

2012-06-27 Thread Giampaolo Rodolà
Hi folks, I'm pleased to announce the 0.5.0 release of psutil: http://code.google.com/p/psutil/ === Major new features === - system users - (Linux, Windows) process CPU affinity (get and set) - (POSIX) process number of opened file descriptors. - (Windows) process number of opened ha

ANN: psutil 0.4.0 released

2011-10-29 Thread Giampaolo Rodolà
Hi folks, I'm pleased to announce the 0.4.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, disk, memory, network) in a portable way by using P

ANN: psutil 0.3.0 released

2011-07-08 Thread Giampaolo Rodolà
Hi folks, I'm pleased to announce the 0.3.0 release of psutil: http://code.google.com/p/psutil === Major enhancements === * disk usage * mounted disk partitions * system per-cpu percentage utilization and times * per-process terminal * physical and virtual memory usage including perce

ANN: psutil (python process utilities) 0.2.1 released

2011-03-20 Thread Giampaolo Rodolà
Hi, I'm pleased to announce the 0.2.1 release of psutil: http://code.google.com/p/psutil === About === psutil is a module providing an interface for retrieving information on running processes and system utilization (CPU, memory) in a portable way by using Python, implementing

ANN: psutil 0.2.0 released

2010-11-12 Thread Giampaolo Rodolà
Hi, I'm pleased to announce the 0.2.0 release of psutil: http://code.google.com/p/psutil === About === psutil is a module providing an interface for retrieving information on running processes and system utilization (CPU, memory) in a portable way by using Python, implementing

ANN: psutil 0.1.3 released

2010-03-04 Thread Giampaolo Rodola'
Hi, I'm pleased to announce the 0.1.3 release of psutil: http://code.google.com/p/psutil === About === psutil is a module providing an interface for retrieving information on running processes and system utilization (CPU, memory) in a portable way by using Python, implementing

Re: ANN: Python process utility (psutil) 0.1.2 released

2009-05-10 Thread Giampaolo Rodola'
On 9 Mag, 11:30, Nick Craig-Wood wrote: > Giampaolo Rodola' wrote: > >  psutil is a module providing an interface for retrieving information > >  on running processes and system utilization (CPU, memory) in a > >  portable way by using Python, implementing many funct

Re: ANN: Python process utility (psutil) 0.1.2 released

2009-05-09 Thread Piet van Oostrum
>>>>> "Giampaolo Rodola'" (GR) wrote: >GR> Hi, >GR> I'm pleased to announce the 0.1.2 release of psutil: >GR> http://code.google.com/p/psutil Very nice. I was just contemplating writing some python code to get information from ps (a

Re: ANN: Python process utility (psutil) 0.1.2 released

2009-05-09 Thread Nick Craig-Wood
Giampaolo Rodola' wrote: > psutil is a module providing an interface for retrieving information > on running processes and system utilization (CPU, memory) in a > portable way by using Python, implementing many functionalities > offered by tools like ps, top and Windows ta

ANN: Python process utility (psutil) 0.1.2 released

2009-05-07 Thread Giampaolo Rodola'
Hi, I'm pleased to announce the 0.1.2 release of psutil: http://code.google.com/p/psutil === About === psutil is a module providing an interface for retrieving information on running processes and system utilization (CPU, memory) in a portable way by using Python, implementing