Metadata-Version: 2.1
Name: Sockets-connection
Version: 0.0.7
Summary: Connect the Multiple devices using Python Sockets with simple ways
Home-page: https://git.selfmade.ninja/SRIDHARDSCV/sockets-python
Author: Sridhar
Author-email: sridhardscv@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: sockets

<h1>Socket Connection</h1>
<p>Implement a simple Socket connections with the help of Python Sockets module</P>


#### Usage

Start the Server using the function `server_Connection()`
```
> from Sockets_connection.Socket import *
> soc = Socket()
> soc.server_Connection("localhost",5005)

```

Start the Client using the function `Client_Connection`
```
> from Sockets_connection.Socket import *
> soc = Socket()
> soc.Client_Connection("localhost",5005)

```


