开发者

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 connec开发者_运维问答t 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 .


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.


Also take a look at pyro

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜