Questions tagged [speed-test]

Command line interface for testing internet bandwidth using speedtest.net. Speedtest on pypi.org

103 questions
0
votes
1 answer

Using speedtest-cli within a Python3 script to measure internet speed - getting error message 'No module named speedtest'

My vacation home loses the internet connection from time to time which means I cannot access that locations' home network remotely. I am using a wireless Bell service as my ISP. When I am at the vacation home, I have a program within my home…
Gary
  • 571
  • 1
  • 4
  • 9
0
votes
0 answers

: 'NoneType' object has no attribute 'group'

New to python, so it's probably something simple. Raspberry Pi 4, with apache running and CGI wired up. Speedtest-cli is installed and working fine. I can run the script below in Putty with no issues. But when I try to run it in cgi-bin for a…
Greg
  • 747
  • 9
  • 23
0
votes
1 answer

Use fast.com API with Angular

I'm new to angular. I'm building a speedtest website as a side project and decided to use fast.com API. In my component.ts I've included the following: constructor() { const FastSpeedtest = require('fast-speedtest-api'); const speedtest =…
Carlos Daniel
  • 449
  • 4
  • 14
0
votes
1 answer

Problem with ethernet cable after some time - Uplink only

I have an ethernet cable (cat5e), connecting my PC and router through an on board ethernet port. My ISP data speed is 120Mbps/120Mbps Down/Up. Testing through www.speedtest.net I get exactly above speeds since the beginning of the test. No problems …
0
votes
0 answers

Userside Network Consuming

Currently, I'm working on speed test CLI and I successfully implement CLI with java with Jython. But I got an issue that every time calculate server-side internet speed and I want to consume user side network resources. so anybody knows what is the…
Aakash
  • 1
  • 1
0
votes
1 answer

Speedtest Cli with flutter

It says here as Use Speedtest in your programs by wrapping it in the programming language of your choice in the official speedtest cli site. What does this mean? Can I use this results to generate in my flutter application?
Sankha Jayalath
  • 385
  • 1
  • 6
  • 11
0
votes
0 answers

Child Process Exec Failed Electron App Calling nodejs SpeedTest

I tried to execute a nodejs command inside electron. const { execFile } = require('child_process'); const child = execFile('node', ['--version'], (error, stdout, stderr) => { if (error) { throw error; } console.log(stdout); }); That one…
gumuruh
  • 2,544
  • 4
  • 33
  • 56
0
votes
1 answer

How to fix the leverage browser caching not working in the wordpress site hosted in AWS?

I have added all the header for leverage browser caching but it does not work for me1. That header works fine for my other site but not for this site. it may be because it is hosted in AWS. Is there any way to fix the issue. I have tried out some…
0
votes
0 answers

Writing speedtest csv data to csv file using python

import speedtest import time import csv def test(): servers = [] s = speedtest.Speedtest() s.get_servers(servers) s.get_best_server() s.download() s.upload() s.results.share() results_csv = s.results.csv() #…
0
votes
2 answers

Proving GWT Code Splitting

i think u all know about GWT Code Splitting because I have been programming on GWT about a month and I've recently know it, lol I want to prove that a seperate file is going to be downloaded when there is a need for the code inside the…
Noor
  • 19,638
  • 38
  • 136
  • 254
0
votes
1 answer

How to compare file upload and download speed at varying time in my application?

I would like to compare data read/write speed (i.e.; the file upload and download speed) with my application between various servers (like machineA, machineB and machineC) at varying times. Just have tried to automate download with the help of curl…
user7946343
0
votes
1 answer

C#.Net Bandwidth Computation VS Speedtest.net Speed

We are working on Windows Desktop application in which we need to capture current internet Bandwidth. We are downloading a ZIP file multiple times sequentially but our results are not matching with Speed Test. We are capturing bytes received on…
D Deshmane
  • 1,125
  • 4
  • 15
  • 27
0
votes
1 answer

Implementing Speed Test Android

I have implemented speed test by downloading a specific file from the net and calculating it by dividing size of the file by the time taken to download. But the results do not match either with speedtest.net nor TRAI app. Even the results of…
0
votes
1 answer

C# Downloading a file gives different result WebClient - Browser

I have been trying to create a network-monitor like application. To do this, I would like to use the speedtest.net api. The idea is simple, you download a csv file containing your best results.…
Sander_Blaadjes
  • 159
  • 1
  • 1
  • 10
0
votes
1 answer

Schedule Speed Tests

I want a way to test our network speed every 10 mins automatically and record the output, I found this python https://pypi.python.org/pypi/speedtest-cli and wanted to know if there is a way I could make a program that will run the command sleep for…
Sam Collins
  • 443
  • 5
  • 13