From e6d40bd10575970d0b907d21384b8c797b6b6a7c Mon Sep 17 00:00:00 2001
From: dopdev-del <juniornova90@gmail.com>
Date: Sat, 4 Jul 2020 19:24:30 -0400
Subject: [PATCH] tercer commit

---
 spdtest.py | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/spdtest.py b/spdtest.py
index 76bfca9..e77b6dd 100644
--- a/spdtest.py
+++ b/spdtest.py
@@ -1,22 +1,25 @@
 import speedtest
+#first we need impot speedtest check it how you can do it in your OS
+
 st = speedtest.Speedtest()
 
-def opciones(option,optione,optiones):
+def testing(option,option1,option2):
 
-	if option == 1 and optione == 2 and optiones == 3:
-		#print(st.download(), 'b/s')
+	if option == 1 and option1 == 2 and option2 == 3:
 		mb=(st.download()*1.0E-6)
-		print("Velocidad de bajada:","{0:.2f}".format(mb),"mb")
-		#print(st.upload(), 'b/s')
+		print("Download speed:","{0:.2f}".format(mb),"mb")
+
 		mb2=(st.upload()*1.0E-6)
-		print("Velocidad de subida:","{0:.2f}".format(mb2),"mb")
+		print("Upload  speed:","{0:.2f}".format(mb2),"mb")
+
 		servernames =[]
 		st.get_servers(servernames)
 		print("Ping:",st.results.ping,'ms')
+
 	else:
 		print("Please enter the correct choice!")
 
 print("*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-")
-print("Haciendo prueba de velocidad en Python")
-opciones(1,2,3)
+print("Test in process please wait...")
+testing(1,2,3)
 print("*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-")
\ No newline at end of file
-- 
2.25.1