Python Project With Source - Speed Test
Speed Test
Speed Test using python
Dependencies:
*youtube_dl*
```
pip3 install speedtest-cli
```
Source Code:
import subprocess
returned_text = subprocess.check_output("speedtest-cli", shell=True,
universal_newlines=True)
print("The Result of Speed Test")
print(returned_text)
0 Comments