You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
310 B
Python

#!/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)