Rahul
Rahul

Reputation: 11679

Python Program to use the resources of systems over internet?

i am fairly new to python , was wondering if i could remotely connect to another system over net , both the systems have different ISPs . can i write a program to connect to that system and use it resources , ofcourse with that systems permission.

PS: it kinda sounds like hacking into system without permission , but i have no intention of doing so .

Upvotes: 0

Views: 110

Answers (2)

lalli
lalli

Reputation: 6303

Also take a look at pyro

EDIT: I recommend you read about RPC and tell us is this what YOU want.

Upvotes: 0

Mike DeSimone
Mike DeSimone

Reputation: 42825

What you're describing sounds a lot like RPC (Remote Procedure Calls). Python has libraries that handle RPC using XML to pass parameters and results (which frees you from dealing with binary format issues), which are xmlrpclib on the client side and SimpleXMLRPCServer or DocXMLRPCServer on the server end.

It's only one solution out of many, but it can be a starting point.

Upvotes: 1

Related Questions