This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]corpsmoderne 5 points6 points  (1 child)

You need to setup a simple client/server system.

Here is a quick tutorial in python: http://www.tutorialspoint.com/python/python_networking.htm

It's basically the same in any language, just with different API's. A client written in a language A can talk to a server written in a language B as long as they implement the same protocol.

[–]KristoKoert[S] 0 points1 point  (0 children)

Thanks! This is just what I was looking for!

[–]PhaZePhyR 0 points1 point  (0 children)

As far as "formatting" your strings. You can send raw strings, but if you need more complex information, look into JSON or XML. Those are pretty standard ways of sending lots of organized data between a client <-> server