Tagged Questions
0
votes
1answer
27 views
python plugin to monitoring linux system
Is there any famous python plugin/library to monitor linux system , such as :
Temperature
CPU usage
Memory Usage
Disk Usage
Network Usage
is there any?
thank you very much :D
1
vote
0answers
35 views
How to get the memory usage of Python object without importing any third party libraries like hpy or PySizer?
I'm writing Python test cases for testing a COM written in C++. Currently I re-write a recursion function of the COM to non-recursion in order to avoid the call stack overflow. Then I need to write a ...
1
vote
1answer
136 views
How to monitor events from workers in a Celery-Django application?
According to the celery tutorial regarding real-time monitoring of celery workers, one can also programmatically capture the events produced by the workers and take action accordingly.
My question is ...
0
votes
0answers
45 views
Issue with monitor using Python turtle module
I've been turtling around and did some circles and stuff with this module, and i've noticed a strange effect going on in my monitor, like a shade, and not processing well the pixels. Anybody knows why ...
0
votes
0answers
34 views
Is there a way to use Python to emulate a non visible external monitor, and capture the video data from it?
Beginning with the end in mind, I am looking into creating an Android app that would act like iDisplay, or AirDisplay.
Both of the aforementioned apps are used on an Android device to act like a ...
1
vote
1answer
83 views
Determine what script/module a python instance is executing?
I'm writing a program to monitor a python script running. There will be multiple instances of this script(which is a server) running from different locations on the computer. My program will be ...
2
votes
2answers
153 views
Monitor concurrency (sharing object across processes) in Python
I'm new here and I'm Italian (forgive me if my English is not so good).
I am a computer science student and I am working on a concurrent program project in Python.
We should use monitors, a class with ...
-2
votes
1answer
139 views
Benchmarking and Monitoring in Python
I am trying to run a benchmark and monitor the cpu frequency while the benchmark is running. What would be the best method to do this in the smallest footprint possible?
Basicly, I have a benchmark I ...
0
votes
1answer
274 views
Python watchdog for another Python process technique?
I have a realtime data grabber that runs indefinitely, grabbing data over HTTP and putting it in a MySQL database every few seconds.
In my program, I have a while True loop that spawns workers ...
0
votes
1answer
232 views
how to monitor the subprocess realtime
I am a newbie to python.
I am working on a project currently.
by clicking a button A, the command "adb shell getevent" will be executed in one subprocess.
the result will be write to a file.
There ...
5
votes
2answers
219 views
Python watching for process start up?
Is there any way to watch for a new process with name 'X' starting in python (ideally) or bash? I know that I can look at running processes, but that is not fast enough for my needs. The only think ...
0
votes
1answer
712 views
Django/Python: How can i monitor mysql database and trigger email when timestamp = NOW()?
If i want to make an alerting system. How can I implement those feature?
I have a MySQL database storing user's message and timestamp (or datetime). I want to trigger sending email out to that user ...
3
votes
2answers
667 views
Is there any libraris popular for Python to monitor Linux/Unix system?
In erlang, thare is a os_mon module responsible for monitoring system, but I haven't found the library like that for python,is there any?
thank you very much!
4
votes
1answer
1k views
How to query NATIVE hardware resolution of primary monitor in Windows?
I need to find the "best" or native resolution for an attached LCD monitor under Windows (which I'll then set programmatically and know how to do.) Let me repeat that I do not need the Current ...
2
votes
2answers
509 views
win32: get current DEVMODE of a monitor
How can I get the current resolution in win32? I know I can use GetMonitorInfo to get the current bounding rectangle of the monitor, but how can I also get the bit-depth? Pretty much, how do I get the ...
2
votes
4answers
461 views
Monitor ZIP File Extraction Python
I need to unzip a .ZIP archive. I already know how to unzip it, but it is a huge file and takes some time to extract. How would I print the percentage complete for the extraction? I would like ...
4
votes
3answers
1k views
How to continuously monitor rhythmbox for track change using python
I want to monitor the change of track in Rhythmbox using python. I want to continuously check for change of track and execute a set of functions if the track is changed. I have written a piece of code ...
1
vote
1answer
750 views
Monitor Synchronization: Implementing multiple condition variables
I am implementing monitor synchronization. I was wondering how does implementing multiple condition variables works.
So a condition variable has method wait() which puts it on the wait queue for a ...
1
vote
2answers
665 views
Getting Monitor resolution in Python on Ubuntu
Is there a equatable bit of code to GetSystemMetrics in win32api, for Ubuntu? I need to get the monitors width and height in pixels.
2
votes
3answers
243 views
Can this program damage my monitor? [closed]
I made a Python program that switches the entire monitor back and forth between random colours very quickly. I'm wondering if it can harm my monitor somehow.
Also on an unrelated note, it's tripy to ...
0
votes
1answer
4k views
get screen size in python [duplicate]
Possible Duplicate:
How do I get Monitor resolution in Python?
I was wondering if there was a way to get the screen size from a python script.
Similar Questions:
Getting monitor size in ...
3
votes
3answers
4k views
Monitor Process in Python?
I think this is a pretty basic question, but here it is anyway.
I need to write a python script that checks to make sure a process, say notepad.exe, is running. If the process is running, do nothing. ...
13
votes
8answers
10k views
How do I get Monitor resolution in Python?
What is the simplest way to get monitor resolution (Preferably in a tuple)?
5
votes
1answer
877 views
How to make a simple clipboard monitor in python
I was wondering how to make a simple Clipboard Monitor in python, for GUI I'm using PyGTK.
I found gtk.clipboard class and all that but I couldn't find any solution to get the "signals" to trigger the ...
2
votes
1answer
2k views
Getting monitor size in python
I am using python and want to create a fullscreen window. I know about the pygame.FULLSCREEN flag but when I use that there's areas of black around the screen. Is there any way to get the monitor size ...