Metadata-Version: 2.1
Name: master-slave
Version: 1.0.2
Summary: package to communicate with infected devices trought a local network
Home-page: https://github.com/Skorii/Python-Henallux-Project-2019
Author: Arnaud "Skorii" Gony
License: MIT
Project-URL: Bug Reports, https://github.com/Skorii/Python-Henallux-Project-2019/issues
Project-URL: Source, https://github.com/Skorii/Python-Henallux-Project-2019
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.0.
Description-Content-Type: text/markdown
Requires-Dist: psutil
Requires-Dist: requests

# Python Henallux Project 2019
Usage informations about master.py and slave.py classes
## Class Master

Usage:
```python
from master-slave import Master

master = Master(address="", port=50000)
   # address = address to listen to (empty mean listenning on all addresses)
   # port = listening port 
master.start()
```

## Class Slave

Usage:
```python
from master-slave import Slave

slave = Slave(address="192.168.0.10", port=50000)  
   # address = address of master
   # port = listening port of master
slave.start()
```


