python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
executing a Unix utility from Python
I have a Unix utility, which is called hex2bin which gets a hex file and generates a bin file. I have a python code that generates the hex file and I want my python code after generating the hex file ...

TJ1
Votes: 0
Answers: 1
Executing console commands, Python
I have a tricky problem that I can't seem to figure out on my own.
[Goal]
I have an automation script that has a button. When that button is pressed I run Blender in background mode, use a custom scri...

Aleks K.
Votes: 0
Answers: 0
Why does subprocess stdout only produce one line when the process is killed with os.kill()?
I have a piece of code that opens a subprocess and writes the output to a file:
logPath = '/path/to/some/directory/'
log = open(logPath + 'log', 'a')
guipid = subprocess.Popen(SomeGuiApplication, ...

Daniel Klisiewicz
Votes: 0
Answers: 1
Keep a class running in a python subprocess or thread or process
I am using Squish to automate a Qt-based GUI application. I look up qt objects in the application recursively. Since it's time-intensive, I would like to cache objects once found for later reuse. I ha...

shashank singh
Votes: 0
Answers: 2