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.5.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: supersockets-0.0.5.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.5.tar.gz
Algorithm Hash digest
SHA256 5d8e114fd3c5dd5aebf59b43658cb4844ab188c1755717cf2ff184df53adde97
MD5 6e512e977c110fbffee12ace089cd0ab
BLAKE2b-256 0fc42d1c53fe2a27060082ca67eec4280ac8974fbbff84e2242f1042b05cd732

See more details on using hashes here.

File details

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

File metadata

  • Download URL: supersockets-0.0.5-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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 585b8ad845e8c3e257bc90eec5e256dc3adcf73b798ed1bd40d43f955f3d986a
MD5 e07f8c94b99e9f558bddcabafee63ec9
BLAKE2b-256 604433b5b591352b5931f2fea42990e18b994c9c91d58d94303040760ceda100

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