1
vote
1answer
60 views

Python: Classes that “talk” to each other

I'm a college student. I'm in my second comp sci class and we haven't got much past simply making classes and functions within them so I haven't really been able to make much use of the complicated ...
0
votes
1answer
44 views

execute commands from another program from a python script

Unable to communicate from a python script with java program. I have a java program that reads from standard input. Logic is: public static void main(String[] args) { ... BufferedReader in = new ...
0
votes
0answers
57 views

Python os.pipe vs multiprocessing.Pipe

Recently I'm studying parallel programming tools in Python.And here is two major differences between os.pipe and multiprocessing.Pipe.(despite the ocasion they are used) os.pipe is ...
-2
votes
2answers
126 views

How to make two Python scripts communicate over the internet? [closed]

I'm looking for a way to make two Python scripts communicate over the internet. Something like what Socket.IO does with NodeJS, but without a browser, and in Python. A constant connection (socket?) ...
0
votes
0answers
120 views

Message passing between processes using multiprocessing module

What's the recommended way of sending message from a worker process to another randomly selected (worker or master) process? One approach that I can think of is using Pipes, but since it can only ...
0
votes
1answer
163 views

Python inter-process communication, getting pid of an independent process (not child) started from another Python process

I have a problem that feels like it ought to be simple. As a side-note, I'm already using the multiprocessing module, so I'm somewhat reluctant to use the subprocess module. Anyway, I have a Python ...
1
vote
3answers
353 views

Efficient Python IPC

I'm making an application in Python3, which will be divided in batch and gui parts. Batch is responsible for processing logic and gui is responsible for displaying it. Which inter-process ...
3
votes
1answer
165 views

Detecting serial port settings

From time to time I suddenly have a need to connect to a device's console via its serial port. The problem is, I never remember what port settings (baud rate, data bits, stop bits, etc...) to use with ...
4
votes
4answers
306 views

Handle communication in multi layer application

I am creating an application using Python. I first designed an API, that is working fine. I am now designing my GUI. The GUI starts a Thread that is used to perform tasks against the API. Up to ...
0
votes
1answer
521 views

C# client Python server : Connection refused

I'm working on a basic socket communication between C# (client) and Python (server), and I don't understand the reason why I've this error from the client: [ERROR] FATAL UNHANDLED EXCEPTION: ...
2
votes
2answers
174 views

interprocess C# python real time

I'm working on a project where I'll have one application in C# and another one in Python. The C# application will continuously analyse stream of data and raise a flag each time something interesting ...
6
votes
2answers
151 views

Connect two daemons in python

What is the best way to connect two daemons in Python? I have daemon A and B. I'd like to receive data generated by B in A's module (maybe bidirectional). Both daemons support plugins, so I'd like to ...
0
votes
4answers
113 views

C++ to python communication. Multiple io streams?

A python program opens a new process of the C++ program and is reading the processes stdout. No problem so far. But is it possible to have multiple streams like this for communication? I can get two ...
1
vote
1answer
250 views

PyQT4 - communication between 2 windows

I've got problem with communication between 2 windows in PyQt. main window = UI_Form (class MyForm) additional window = UI_Employee (class Employee) I'd like, when i clicked AddTextButton ...
4
votes
4answers
166 views

Is there any project/set of libraries that make it easy to comunicate between various programming languages/platforms? [closed]

I'm just finishing a relatively big project in scala and will start another related one soon. I haven't chosen the language yet and would like my decision to be based more on features of the language ...
1
vote
2answers
210 views

All-to-All thread communication in Python

Thanks for your attention I am writing a simulation engine in python using "threading" module in python. One of the things that my simulator has to do is to be able to do all-to-all communication. ...
3
votes
1answer
369 views

How to create a communication between browser and application

I have a big problem, and I am having a hard time solving it. I have a custom made game controller, which outputs some data from it's sensors via serial communication and is connected to PC via serial ...
0
votes
1answer
353 views

Communication between a C# and Python application hosted on the same machine

We're working on a project that requires us to interface with a specific set of hardware; one set can be controlled very easily using C#, the other of which is natively programmed using Python. Part ...
0
votes
1answer
139 views

Python Java Cross communication Servers

+-------------------+ +-------------------+ | Wowza | | Django | |-------------------| |-------------------| ...
0
votes
1answer
277 views

better way to communicate between python script and android application

In my android project I am reading a xml file which are continuously updated by one python script. and for update data I am continuosly reading the xml file and whenever the data is updated in xml ...
1
vote
2answers
904 views

web2py: how to copy a python array into a javascript one

I'm currently having an issue with getting javascript and python to communicate in web2py. controller: def testDB(): a=[] a.append('a') a.append('b') a.append('c') ...
6
votes
3answers
200 views

Communicating between applications?

I am very new to programming, and have had no formal training in it before so please bear with me if this is a vague question. I was just curious: how do different programs on the same computer ...
1
vote
2answers
70 views

Sending failure messages between classes

Ok, so this is really just a conceptual question I'm having a bit of trouble with rather than a coding problem. I'm building a simple, weekly time tracker to automate some admin in a game. So, I have ...
2
votes
5answers
3k views

interprocess communication in python

What is a clean and elegant way to do interprocess communication between two different python processes? I currently use named pipes in the OS, but it feels a bit hacky. I rewrote my stuff with dbus ...
0
votes
2answers
813 views

One server vs. multiple clients with data communication

I have a question on how to implement a server and multiple clients with data communication. They share the same dataset for each step. That is, a server gets the same step's data for each client. I ...
0
votes
1answer
2k views

Communication with usb device using pyusb

I am using a module called pyusb vs 1.6 http://bleyer.org/pyusb/ and am trying to communicate to a sensor. I have set up connecting and can read the rom on the sensor. The sensor when connected has a ...
-1
votes
1answer
203 views

Faster Port Forwarding [closed]

I wrote an application in Pyhon that needs to ocmmunicate with a server for almost everything. The problem is, when the request is sent to the server, and the response sent back, it takes way too ...
0
votes
2answers
156 views

What is best pythonic way to communicate between spreaded services/unix machines?

Mornink! I need to design, write and implement wide system consisting of multiple unix servers performing different roles and running different services. The system must be bullet proof, robust and ...
2
votes
2answers
506 views

Python subprocess produced output or not

This question is in relation to: python, subprocess: reading output from subprocess If P is a subprocess started with a command along the lines of import subprocess P = subprocess.Popen ...
1
vote
2answers
803 views

Making two scripts communicate

I have to make two programs (for example a "script A" (.py) and "script B"(.exe)) communicate. Both programs are on a infinite loop: Script A needs to write to the stdin of script B and afterwards ...
5
votes
1answer
688 views

Communicating multiple times with a subprocess

I'm trying to pipe input to a program opened as a subprocess in Python. Using communicate() does what I want, but it only does so once, then waits for the subprocess to terminate before allowing ...
0
votes
2answers
474 views

Communication from arduino to a browser extension all run locally

I am trying to figure out how I would go about taking serial information from an Arduino which controls a Javascript browser extension I have running in an open browser locally on a computer. It ...
0
votes
2answers
282 views

Can python share info like .net remoting?

I known python can use pipe to communicate between two process of py. But, data and functions of this method are not clear. I like .net remoting better. So, can python realize that approach?
2
votes
2answers
249 views

python intercepting communication

lets say you run third party program on your computer whitch create a process named example.exe how do i determinate if this process is running and how many windows does he open? How do i intercept ...
2
votes
2answers
2k views

Calling Java app with “subprocess” from Python and reading the Java app output

What is the nicest way to read the output (i.e. via System.out.println) of a Java app which is called from Python with subprocess.Popen("java MyClass", shell=True) without writing and reading a ...
0
votes
2answers
3k views

Multiple programs using the same UDP port? Possible?

I currently have a small Python script that I'm using to spawn multiple executables, (voice chat servers), and in the next version of the software, the servers have the ability to receive heartbeat ...
0
votes
3answers
621 views

Communication between Windows Client and Linux Server

I want to provide my colleagues with an interface (using Windows Forms or WPF) to control the states of virtual machines (KVM based) on a linux host. On the command line of this server, I'm using a ...
9
votes
1answer
4k views

TkInter Invoke Event in Main Loop

How do you invoke a tKInter event from a separate object? I'm looking for something like wxWidgets wx.CallAfter. For example, If I create a child object and pass it my root Tkinter.Tk() and then try ...