From 0e0058f62aba3efc7f017e58d76badffff2f47f5 Mon Sep 17 00:00:00 2001 From: sanderjo Date: Tue, 24 May 2016 18:36:20 +0200 Subject: [PATCH] Better output --- fast_com_example_usage.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fast_com_example_usage.py b/fast_com_example_usage.py index cbd7e6c..e040943 100755 --- a/fast_com_example_usage.py +++ b/fast_com_example_usage.py @@ -1,6 +1,8 @@ +#!/usr/bin/env python + import fast_com -print "Start speedtest against fast.com ...", -print fast_com.fast_com() +print "Start speedtest against fast.com ..." +print "Result:", fast_com.fast_com(), "Mbps" print "... Done"