primer commit
authordopdev-del <juniornova90@gmail.com>
Sat, 4 Jul 2020 21:16:15 +0000 (17:16 -0400)
committerdopdev-del <juniornova90@gmail.com>
Sat, 4 Jul 2020 21:16:15 +0000 (17:16 -0400)
spdtest.py [new file with mode: 0644]

diff --git a/spdtest.py b/spdtest.py
new file mode 100644 (file)
index 0000000..76bfca9
--- /dev/null
@@ -0,0 +1,22 @@
+import speedtest
+st = speedtest.Speedtest()
+
+def opciones(option,optione,optiones):
+
+       if option == 1 and optione == 2 and optiones == 3:
+               #print(st.download(), 'b/s')
+               mb=(st.download()*1.0E-6)
+               print("Velocidad de bajada:","{0:.2f}".format(mb),"mb")
+               #print(st.upload(), 'b/s')
+               mb2=(st.upload()*1.0E-6)
+               print("Velocidad de subida:","{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("*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-")
\ No newline at end of file