Skip to main content

A simple module for sending data across the internet!

Project description

ConnectIO

A simple module for sending data across the internet!

Use cases

  • Multiplayer pygame games (sending objects)
  • Chat server with clients
  • Transferring files over a network
  • Anything else you can think of!

Simple Example

Server

from connectIO import Server, threaded

class ExampleServer(Server):

    def __init__(self, ip='127.0.0.1', port=5555):
        super(ExampleServer, self).__init__(ip, port)
        self.func = self.threaded_conn

    @threaded
    def threaded_conn(self, conn, addr):
        raddr = conn.getpeername()

        greeting = 'hello client!'
        print(f'Server -> {raddr}: {greeting}')

        self.send(conn, greeting)
        print(f'{raddr} -> Server: {self.recieve(conn)}')

        response = 'great you?'
        print(f'Server -> {raddr}: {response}')

        resp2 = self.send(conn, response)
        print(f'{raddr} -> Server: {self.recieve(conn)}')


if __name__ == "__main__":
    ExampleServer().run()

Client

from connectIO import Client

def main():
    client = Client()
    client.connect()

    resp1 = client.recieve()
    resp2 = client.send('hi server! how are you?')
    resp3 = client.send('great thanks!')

    client.close()


if __name__ == "__main__":
    main()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

connectIO-0.0.1.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

connectIO-0.0.1-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page