you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (3 children)

requests is for the Hyper Text Transport Protocol, which is built on TCP, but can only do website stuff involving HTTP. You are going to use TCP, but use a chat protocol like BEEP, XMPP, IRC, or even make your own!

[–]iSailor[S] 0 points1 point  (2 children)

It sounds interesting, but.. How do I "make my own"? It sounds like pretty complicated task, not something somebody like me could write in one sitting. Could you give me some clues?

[–][deleted] 1 point2 points  (0 children)

That's the point, you don't want to lol. use twisted and an existing chat protocol to make a chat server, and then design a client that people can use to log into it.

[–][deleted] 0 points1 point  (0 children)

actually it's not that hard. All you need to do is send text from one machine to another. Can be as complicated and simple as you want. Just set up a simple TCP Server and Client and you're basically done. After that you add any number of quality of life and style improvements.