https://github.com/matheusccouto/network-stability
Network connectivity and speed test.
https://github.com/matheusccouto/network-stability
network speedtest
Last synced: 3 months ago
JSON representation
Network connectivity and speed test.
- Host: GitHub
- URL: https://github.com/matheusccouto/network-stability
- Owner: matheusccouto
- License: mit
- Created: 2019-10-07T02:27:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-08T22:47:57.000Z (over 2 years ago)
- Last Synced: 2025-09-25T10:43:43.992Z (9 months ago)
- Topics: network, speedtest
- Language: Python
- Size: 24.4 KB
- Stars: 4
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Network Stability
Python module for network connectivity and speed test.
### Prerequisites
```
Python 3.6+
```
### Installing
Use the package manager pip to install the package.
```bash
pip install network_stability
```
## Usage
```python
import network_stability
net = network_stability.NetworkTest()
# Run connectivity test.
net.connection_test_interval(hours=0.5)
net.export_connection_results('connection.csv')
net.report_connection('connection.png')
# Run speed test.
net.speed_test_interval(minutes=30)
net.export_speed_results('speed.csv')
net.report_speed('speed.png')
```
## Author
* **Matheus Couto** - [Linkedin](https://www.linkedin.com/in/matheusccouto/)
## License
This project is licensed under the [MIT](https://choosealicense.com/licenses/mit/) License.
## Acknowledgments
* This project inspiration came after struggles to watch The Office in my TV. I had a wifi extender that I was
distrusting. I needed some tests to check if it was messing with my network stability.