Skip to main content

Easy to use implementation of the built in 'socket' library

Project description

SuperSockets

Easy to use implementation of python3's built in 'socket' library



Example Use

Server Configuration

#Create connection
server = connect(ip="0.0.0.0", port="1001", connection_type="server", RSA=True)

server.send("Can you here me?")
print(server.recv())

'''Not required to close the connection, but it's good practice. Close server connections only
if you don't plan on connecting to any more clients'''
server.close_connection()

Client Configuration

#Connect to server
client = connect(ip="0.0.0.0", port="1001", connection_type="client", RSA=True)

print(server.recv())
client.send("Loud and clear!")

#Not required to close the connection, but it's good practice
client.close_connection()

Required Dependences From PyPi

pycryptodome == 3.14.1

listcrypt == 0.1.8

rapidrsa == 0.0.5


Documentation

'''
Module to simplify the process of creating servers and clients, with seamless built in encryption options
Classes:
    connect(self, ip:str, port:int, connection_type:str, key=None, RSA=None, socket_timeout=3)
        Class for easily creating socket connections, with built in encryption options. It's pointless
        to set the RSA parameter when connection_type='client', since the server decides whether or not to use RSA.
    Methods:
        create_secure_connection(self, rsa_enabled: bool) -> bool
            Uses RSA cryptography to automatically share a key between the server and client,
            for use in symmetric encryption for any future messages
        send(self, data: any) -> bool
            Sends the data
        recv() -> any
            Ensures successful receival of data sent from the 'send' method            

        close_connection(self) -> bool
            Close the connection between the client and server. Both sides can use this method.
            This isn't always necessary, but it's good practice to close connections you're no
            longer using
'''

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

supersockets-0.0.4.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

supersockets-0.0.4-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file supersockets-0.0.4.tar.gz.

File metadata

  • Download URL: supersockets-0.0.4.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10

File hashes

Hashes for supersockets-0.0.4.tar.gz
Algorithm Hash digest
SHA256 cd5dc0b1a8dcb267e812c268f2c8fef356b42db0f301019d77b62ddb9b23ffbe
MD5 accc8af53136ddf379b3a633dbd20cb6
BLAKE2b-256 24839addfdb3c827ce20b4e786d3c15f03bec2dfa6fd06cb12b4a4481f526535

See more details on using hashes here.

File details

Details for the file supersockets-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: supersockets-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 7.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10

File hashes

Hashes for supersockets-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 cc94f43155fd715990b77c2923f228b13f7e1e2c5b6209f67706e938cc9db28a
MD5 76c203a74474b60d6c67f6518af08999
BLAKE2b-256 87dffc41b77563fee10075115fcb37b1ec9d8b6ba473c28d88de3aabb94ad1a8

See more details on using hashes here.

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