Questions tagged [rpyc]

A transparent python library for symmetrical remote procedure calls, clustering and distributed-computing.

RPyC (IPA: /ɑɹ paɪ siː/, pronounced like are-pie-see), or Remote Python Call, is a transparent python library for symmetrical remote procedure calls, clustering and distributed-computing. RPyC makes use of object-proxying, a technique that employs python’s dynamic nature, to overcome the physical boundaries between processes and computers, so that remote objects can be manipulated as if they were local.

96 questions
0
votes
1 answer

Start a server process and connect to it as soon as possible

In my python program I am trying to use rpyc library to start a server as a separate process. As soon as I do that, I want to be able to connect to that server. Since it takes some time for the process to start, I need to delay connecting to it. I…
Aviral Goel
  • 308
  • 1
  • 3
  • 13
0
votes
0 answers

How to call pywin32 via RPyC from the Linux box

Intro: I have a Linux box with Python 2.7 and RPyC on it. Additionally I have a Windows (Server 2008) box installed with the same Python version, RPyC and pywin32. Windows box runs RPyC classic_server and Linux box is used to run RPyC client.…
NetBear
  • 642
  • 1
  • 7
  • 7
0
votes
0 answers

how from service RPyC server refer to the Service specific client

CORE The server part - Core, which is responsible for the registration of modules and the interaction between them. Core runs as ThreadedServer. CoreService provides registration modules. When registering I keep a list of Connections, then to use…
0
votes
1 answer

Redirecting Standard Input/Output in RPyC 3

As explained here, redirecting the stdio/stdin is very simple with RPyC 2. This means that 'print' commands executed in the server, will display the printed string on the client side. RPyC 2, as explained here, is un-secured and is not recommended,…
speller
  • 1,641
  • 2
  • 20
  • 27
0
votes
0 answers

Run in Wndows Server remote exchange commands via Python rpyc

I'm trying to execute a Microsoft Exchange command using Powershell under a Python RPyC server. In my MS Windows 2012 Server, works fine, but in 2008 version, doesn't work. This is part of my code: ... try: conn =…
Junix
  • 195
  • 2
  • 13
-2
votes
1 answer

Redirect rpyc remote stdio to stream

It is possible to redirect remote stdio with rpyc to local stdio, but is that possible to do that with an custom stream, and react to it ? Finally i want to redirect rpyc stdio and an serial port stream to the same stream class and handle it with…
C. Ulrich
  • 1
  • 2
1 2 3 4 5 6
7