Skip to main content

Simple socket server-client for interprocess communications without security

Project description

Unencrypted Socket

version license pyversions
donate powered made

Simple socket server-client for interprocess communications without security

Hierarchy

unencryptedsocket
|---- SS
'---- SC

Example

python

# You can transmit objects as long as
# both sides have access to their classes

from unencryptedsocket import *


# server
def test(data):
    return f"Data:\t{data}"
functions = dict(test=test)
SS(functions=functions).start()
print("test socket server started.", flush=True)
# # Nothing is printed, you must start it from an other thread

# client
sc = SC()
for i in range(5):
    print(sc.request(command="test", data=args(f"Hello, {i}!")))
for i in range(5):
    print(SC().request(command="test", data=args(f"Hello, {i}!")))
print("test socket client started.", flush=True)
# # both for loops produce same result
# # while the later one uses a new key in each loop
# Data:   Hello, 0!
# Data:   Hello, 1!
# Data:   Hello, 2!
# Data:   Hello, 3!
# Data:   Hello, 4!
# test socket client started.

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

unencryptedsocket-0.7.0.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

unencryptedsocket-0.7.0-py3-none-any.whl (16.3 kB view details)

Uploaded Python 3

File details

Details for the file unencryptedsocket-0.7.0.tar.gz.

File metadata

  • Download URL: unencryptedsocket-0.7.0.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.0

File hashes

Hashes for unencryptedsocket-0.7.0.tar.gz
Algorithm Hash digest
SHA256 e9440f48cf23483337cab7b9f85ff8ce63a628dc65fdecb6a88d08f7abccf85e
MD5 f52c8e2648bdcba3f9ef21f6a1e84961
BLAKE2b-256 10fa8eaa65bb719e74073a3149bbc3623a0e3b2f5ae75865016a9b5dbccc5f87

See more details on using hashes here.

File details

Details for the file unencryptedsocket-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: unencryptedsocket-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 16.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.0

File hashes

Hashes for unencryptedsocket-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fa16bef299d71bfe04a6f65606e615dce505e07914e784390e0e385608b15d06
MD5 46d4ed906953febec536c4b9737af28e
BLAKE2b-256 c2af4714f39a2b1fcdf472accabc1c05b99d7b3b9fe68a90b7e0e924e07c880e

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