An open API service indexing awesome lists of open source software.

https://github.com/aasmpro/simplesocket

simple implementation of python socket for creating server/client based programs supporting threading.
https://github.com/aasmpro/simplesocket

client hacktoberfest network-programming python python3 server socket socket-programming

Last synced: 3 months ago
JSON representation

simple implementation of python socket for creating server/client based programs supporting threading.

Awesome Lists containing this project

README

        

# simplesocket
simple implementation of python socket for creating server/client based programs supporting threading.

## Installation
```bash
pip3 install simplesocket
```

## Usage
in Server script import:

```python 3
from simplesocket import SimpleServer
```

and in Client script import:

```python 3
from simplesocket import SimpleClient
```