diff --git a/fast_com.py b/fast_com.py index 4f676b1..23abe85 100644 --- a/fast_com.py +++ b/fast_com.py @@ -214,7 +214,8 @@ if __name__ == "__main__": print fast_com(verbose=True, maxtime=18, forceipv4=True) print "\nSpeed test, IPv6:" print fast_com(maxtime=12, forceipv6=True) - #fast_com(verbose=True, maxtime=25) + print "\n30 second speed test:" + fast_com(verbose=True, maxtime=30) print "\ndone" diff --git a/fast_com.pyc b/fast_com.pyc new file mode 100644 index 0000000..3b66781 Binary files /dev/null and b/fast_com.pyc differ diff --git a/sab_proto.py b/sab_proto.py new file mode 100755 index 0000000..5f7d23a --- /dev/null +++ b/sab_proto.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +from fast_com import fast_com + +print "Starting Speed test against fast.com" + + +print "Speed test [Mbps]:", +print fast_com(maxtime=7) +print "Speed test, IPv4 [Mbps]:", +print fast_com(maxtime=7, forceipv4=True) +print "Speed test, IPv6 [Mbps]:", +print fast_com(maxtime=7, forceipv6=True) +