Test speed net (download/upload)

testspeednet is tool for test speed net (download/upload).
Developed in python code.
The README is used to introduce the modules and provide instructions on how to install the modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.
Table of Contents
- 🚀 Installation
- 📦 Dependencies
- 📁 Tool structure
- 📊 Code coverage
- 🛠 Usage
- 📚 Docs
- 👥 Contributing
- 📄 Copyright and licence
🚀 Installation
Used next development environment

Currently there are three ways to install package
- Install process based on using pip mechanism
- Install process based on build mechanism
- Install process based on setup.py mechanism
- Install process based on docker mechanism
Install using pip
testspeednet is located at pypi.org.
You can install by using pip
# python3
pip3 install testspeednet
Install using build
Navigate to release page download and extract release archive.
To install testspeednet type the following
tar xvzf testspeednet-x.y.z.tar.gz
cd testspeednet-x.y.z/
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install ./dist/testspeednet-*-py3-none-any.whl
rm -f get-pip.py
chmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/testspeednet_run.py
ln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/testspeednet_run.py /usr/local/bin/testspeednet_run.py
Install using py setup
Navigate to release page download and extract release archive.
To install testspeednet locate and run setup.py with arguments
tar xvzf testspeednet-x.y.z.tar.gz
cd testspeednet-x.y.z
# python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_egg_info
Install using docker
You can use Dockerfile to create image/container.
📦 Dependencies
testspeednet requires next modules and libraries
📁 Tool structure
testspeednet is based on OOP.
Tool structure
Click to expand framework structure</summary>
testspeednet/
├── core/
│ ├── __init__.py
│ ├── model/
│ │ ├── __init__.py
│ │ ├── speed_test_result.py
│ │ ├── speed_test_server.py
│ │ └── speed_test_stat.py
│ └── service/
│ ├── engine.py
│ ├── ijson_exporter.py
│ ├── inetwork_speed_tester.py
│ ├── __init__.py
│ ├── iserver_repository.py
│ ├── iservice.py
│ └── isubprocessor.py
├── engine.py
├── infrastructure/
│ ├── cli/
│ │ ├── engine.py
│ │ ├── icli.py
│ │ ├── __init__.py
│ │ └── setup/
│ │ ├── bundle.py
│ │ ├── dep_validator.py
│ │ ├── dependencies.py
│ │ ├── factory.py
│ │ ├── __init__.py
│ │ ├── keys.py
│ │ ├── opt_validator.py
│ │ ├── options.py
│ │ ├── registry.py
│ │ └── validator.py
│ ├── command/
│ │ ├── command.py
│ │ ├── download_command_definition.py
│ │ ├── download_command_executor.py
│ │ ├── fetch_command_definition.py
│ │ ├── fetch_command_executor.py
│ │ ├── history_command_definition.py
│ │ ├── history_command_executor.py
│ │ ├── icommand_definition.py
│ │ ├── icommand_executor.py
│ │ ├── __init__.py
│ │ ├── speed_command_definition.py
│ │ ├── speed_command_executor.py
│ │ ├── upload_command_definition.py
│ │ └── upload_command_executor.py
│ ├── config/
│ │ ├── apis.yaml
│ │ ├── testspeednet.cfg
│ │ ├── testspeednet.logo
│ │ └── testspeednet_util.cfg
│ ├── database/
│ │ ├── __init__.py
│ │ └── server_repository.py
│ ├── __init__.py
│ ├── json_exporter.py
│ ├── network_speed_tester.py
│ └── subprocessor.py
├── __init__.py
├── py.typed
└── setup/
├── bundle.py
├── dep_validator.py
├── dependencies.py
├── factory.py
├── __init__.py
├── keys.py
├── opt_validator.py
├── options.py
├── registry.py
└── validator.py
11 directories, 62 files
</details>
✨ Features
- Comprehensive network speed testing for download, upload, ping, and overall bandwidth.
- Provides a modular and extensible architecture based on OOP and SOLID principles.
- Includes command line interface (CLI) support via a command/executor structure.
- Robust validation of project bundles, dependencies, and options.
- Automatic persistence of measurement results and available test servers in local SQLite database.
- Optional JSON export capability for programmatic processing and reporting (
--json).
- History inspection with configurable record limit (
--limit).
- High code quality with full type checking and quality gates compliance.
📊 Code coverage
Click to expand code coverage</summary>
Name
Stmts
Miss
Cover
testspeednet/__init__.py
9
0
100%
testspeednet/core/__init__.py
9
0
100%
testspeednet/core/model/__init__.py
9
0
100%
testspeednet/core/model/speed_test_result.py
18
0
100%
testspeednet/core/model/speed_test_server.py
24
0
100%
testspeednet/core/model/speed_test_stat.py
20
0
100%
testspeednet/core/service/__init__.py
9
0
100%
testspeednet/core/service/engine.py
92
0
100%
testspeednet/core/service/ijson_exporter.py
15
0
100%
testspeednet/core/service/inetwork_speed_tester.py
18
0
100%
testspeednet/core/service/iserver_repository.py
20
0
100%
testspeednet/core/service/iservice.py
24
0
100%
testspeednet/core/service/isubprocessor.py
14
0
100%
testspeednet/engine.py
59
0
100%
testspeednet/infrastructure/__init__.py
9
0
100%
testspeednet/infrastructure/cli/__init__.py
9
0
100%
testspeednet/infrastructure/cli/engine.py
39
0
100%
testspeednet/infrastructure/cli/icli.py
14
0
100%
testspeednet/infrastructure/cli/setup/__init__.py
9
0
100%
testspeednet/infrastructure/cli/setup/bundle.py
22
0
100%
testspeednet/infrastructure/cli/setup/dep_validator.py
36
0
100%
testspeednet/infrastructure/cli/setup/dependencies.py
18
0
100%
testspeednet/infrastructure/cli/setup/factory.py
56
0
100%
testspeednet/infrastructure/cli/setup/keys.py
26
0
100%
testspeednet/infrastructure/cli/setup/opt_validator.py
36
0
100%
testspeednet/infrastructure/cli/setup/options.py
15
0
100%
testspeednet/infrastructure/cli/setup/registry.py
24
0
100%
testspeednet/infrastructure/cli/setup/validator.py
43
0
100%
testspeednet/infrastructure/command/__init__.py
9
0
100%
testspeednet/infrastructure/command/command.py
16
0
100%
testspeednet/infrastructure/command/download_command_definition.py
24
0
100%
testspeednet/infrastructure/command/download_command_executor.py
34
0
100%
testspeednet/infrastructure/command/fetch_command_definition.py
24
0
100%
testspeednet/infrastructure/command/fetch_command_executor.py
31
0
100%
testspeednet/infrastructure/command/history_command_definition.py
24
0
100%
testspeednet/infrastructure/command/history_command_executor.py
36
0
100%
testspeednet/infrastructure/command/icommand_definition.py
14
0
100%
testspeednet/infrastructure/command/icommand_executor.py
14
0
100%
testspeednet/infrastructure/command/speed_command_definition.py
24
0
100%
testspeednet/infrastructure/command/speed_command_executor.py
33
0
100%
testspeednet/infrastructure/command/upload_command_definition.py
24
0
100%
testspeednet/infrastructure/command/upload_command_executor.py
34
0
100%
testspeednet/infrastructure/database/__init__.py
9
0
100%
testspeednet/infrastructure/database/server_repository.py
85
0
100%
testspeednet/infrastructure/json_exporter.py
55
0
100%
testspeednet/infrastructure/network_speed_tester.py
99
0
100%
testspeednet/infrastructure/subprocessor.py
48
0
100%
testspeednet/setup/__init__.py
9
0
100%
testspeednet/setup/bundle.py
23
0
100%
testspeednet/setup/dep_validator.py
36
0
100%
testspeednet/setup/dependencies.py
19
0
100%
testspeednet/setup/factory.py
55
0
100%
testspeednet/setup/keys.py
27
0
100%
testspeednet/setup/opt_validator.py
34
0
100%
testspeednet/setup/options.py
12
0
100%
testspeednet/setup/registry.py
32
0
100%
testspeednet/setup/validator.py
48
0
100%
Total
1628
0
100%
</details>
🛠 Usage
Install package
pip3 install testspeednet
Prepare main entry point by downloading main.py or create your own.
wget -O main.py https://raw.githubusercontent.com/vroncevic/testspeednet/main/main.py
Running tool for checking network speed
python3 main.py speed
Running tool for fetching speed test servers
python3 main.py fetch
Running tool for viewing measurement history
python3 main.py history --limit 10
📚 Docs
More documentation and info at
👥 Contributing
📄 Copyright and licence
Copyright (C) 2016 - 2026 by vroncevic.github.io/testspeednet
testspeednet is free software; you can redistribute it and/or modify
it under the same terms as Python itself, either Python version 3.x or,
at your option, any later version of Python 3 you may have available.
Lets help and support PSF.
testspeednet/
├── core/
│ ├── __init__.py
│ ├── model/
│ │ ├── __init__.py
│ │ ├── speed_test_result.py
│ │ ├── speed_test_server.py
│ │ └── speed_test_stat.py
│ └── service/
│ ├── engine.py
│ ├── ijson_exporter.py
│ ├── inetwork_speed_tester.py
│ ├── __init__.py
│ ├── iserver_repository.py
│ ├── iservice.py
│ └── isubprocessor.py
├── engine.py
├── infrastructure/
│ ├── cli/
│ │ ├── engine.py
│ │ ├── icli.py
│ │ ├── __init__.py
│ │ └── setup/
│ │ ├── bundle.py
│ │ ├── dep_validator.py
│ │ ├── dependencies.py
│ │ ├── factory.py
│ │ ├── __init__.py
│ │ ├── keys.py
│ │ ├── opt_validator.py
│ │ ├── options.py
│ │ ├── registry.py
│ │ └── validator.py
│ ├── command/
│ │ ├── command.py
│ │ ├── download_command_definition.py
│ │ ├── download_command_executor.py
│ │ ├── fetch_command_definition.py
│ │ ├── fetch_command_executor.py
│ │ ├── history_command_definition.py
│ │ ├── history_command_executor.py
│ │ ├── icommand_definition.py
│ │ ├── icommand_executor.py
│ │ ├── __init__.py
│ │ ├── speed_command_definition.py
│ │ ├── speed_command_executor.py
│ │ ├── upload_command_definition.py
│ │ └── upload_command_executor.py
│ ├── config/
│ │ ├── apis.yaml
│ │ ├── testspeednet.cfg
│ │ ├── testspeednet.logo
│ │ └── testspeednet_util.cfg
│ ├── database/
│ │ ├── __init__.py
│ │ └── server_repository.py
│ ├── __init__.py
│ ├── json_exporter.py
│ ├── network_speed_tester.py
│ └── subprocessor.py
├── __init__.py
├── py.typed
└── setup/
├── bundle.py
├── dep_validator.py
├── dependencies.py
├── factory.py
├── __init__.py
├── keys.py
├── opt_validator.py
├── options.py
├── registry.py
└── validator.py
11 directories, 62 files
--json).--limit).
Click to expand code coverage</summary>
Name
Stmts
Miss
Cover
testspeednet/__init__.py
9
0
100%
testspeednet/core/__init__.py
9
0
100%
testspeednet/core/model/__init__.py
9
0
100%
testspeednet/core/model/speed_test_result.py
18
0
100%
testspeednet/core/model/speed_test_server.py
24
0
100%
testspeednet/core/model/speed_test_stat.py
20
0
100%
testspeednet/core/service/__init__.py
9
0
100%
testspeednet/core/service/engine.py
92
0
100%
testspeednet/core/service/ijson_exporter.py
15
0
100%
testspeednet/core/service/inetwork_speed_tester.py
18
0
100%
testspeednet/core/service/iserver_repository.py
20
0
100%
testspeednet/core/service/iservice.py
24
0
100%
testspeednet/core/service/isubprocessor.py
14
0
100%
testspeednet/engine.py
59
0
100%
testspeednet/infrastructure/__init__.py
9
0
100%
testspeednet/infrastructure/cli/__init__.py
9
0
100%
testspeednet/infrastructure/cli/engine.py
39
0
100%
testspeednet/infrastructure/cli/icli.py
14
0
100%
testspeednet/infrastructure/cli/setup/__init__.py
9
0
100%
testspeednet/infrastructure/cli/setup/bundle.py
22
0
100%
testspeednet/infrastructure/cli/setup/dep_validator.py
36
0
100%
testspeednet/infrastructure/cli/setup/dependencies.py
18
0
100%
testspeednet/infrastructure/cli/setup/factory.py
56
0
100%
testspeednet/infrastructure/cli/setup/keys.py
26
0
100%
testspeednet/infrastructure/cli/setup/opt_validator.py
36
0
100%
testspeednet/infrastructure/cli/setup/options.py
15
0
100%
testspeednet/infrastructure/cli/setup/registry.py
24
0
100%
testspeednet/infrastructure/cli/setup/validator.py
43
0
100%
testspeednet/infrastructure/command/__init__.py
9
0
100%
testspeednet/infrastructure/command/command.py
16
0
100%
testspeednet/infrastructure/command/download_command_definition.py
24
0
100%
testspeednet/infrastructure/command/download_command_executor.py
34
0
100%
testspeednet/infrastructure/command/fetch_command_definition.py
24
0
100%
testspeednet/infrastructure/command/fetch_command_executor.py
31
0
100%
testspeednet/infrastructure/command/history_command_definition.py
24
0
100%
testspeednet/infrastructure/command/history_command_executor.py
36
0
100%
testspeednet/infrastructure/command/icommand_definition.py
14
0
100%
testspeednet/infrastructure/command/icommand_executor.py
14
0
100%
testspeednet/infrastructure/command/speed_command_definition.py
24
0
100%
testspeednet/infrastructure/command/speed_command_executor.py
33
0
100%
testspeednet/infrastructure/command/upload_command_definition.py
24
0
100%
testspeednet/infrastructure/command/upload_command_executor.py
34
0
100%
testspeednet/infrastructure/database/__init__.py
9
0
100%
testspeednet/infrastructure/database/server_repository.py
85
0
100%
testspeednet/infrastructure/json_exporter.py
55
0
100%
testspeednet/infrastructure/network_speed_tester.py
99
0
100%
testspeednet/infrastructure/subprocessor.py
48
0
100%
testspeednet/setup/__init__.py
9
0
100%
testspeednet/setup/bundle.py
23
0
100%
testspeednet/setup/dep_validator.py
36
0
100%
testspeednet/setup/dependencies.py
19
0
100%
testspeednet/setup/factory.py
55
0
100%
testspeednet/setup/keys.py
27
0
100%
testspeednet/setup/opt_validator.py
34
0
100%
testspeednet/setup/options.py
12
0
100%
testspeednet/setup/registry.py
32
0
100%
testspeednet/setup/validator.py
48
0
100%
Total
1628
0
100%
</details>
🛠 Usage
Install package
pip3 install testspeednet
Prepare main entry point by downloading main.py or create your own.
wget -O main.py https://raw.githubusercontent.com/vroncevic/testspeednet/main/main.py
Running tool for checking network speed
python3 main.py speed
Running tool for fetching speed test servers
python3 main.py fetch
Running tool for viewing measurement history
python3 main.py history --limit 10
📚 Docs
More documentation and info at
👥 Contributing
📄 Copyright and licence
Copyright (C) 2016 - 2026 by vroncevic.github.io/testspeednet
testspeednet is free software; you can redistribute it and/or modify
it under the same terms as Python itself, either Python version 3.x or,
at your option, any later version of Python 3 you may have available.
Lets help and support PSF.
testspeednet/__init__.pytestspeednet/core/__init__.pytestspeednet/core/model/__init__.pytestspeednet/core/model/speed_test_result.pytestspeednet/core/model/speed_test_server.pytestspeednet/core/model/speed_test_stat.pytestspeednet/core/service/__init__.pytestspeednet/core/service/engine.pytestspeednet/core/service/ijson_exporter.pytestspeednet/core/service/inetwork_speed_tester.pytestspeednet/core/service/iserver_repository.pytestspeednet/core/service/iservice.pytestspeednet/core/service/isubprocessor.pytestspeednet/engine.pytestspeednet/infrastructure/__init__.pytestspeednet/infrastructure/cli/__init__.pytestspeednet/infrastructure/cli/engine.pytestspeednet/infrastructure/cli/icli.pytestspeednet/infrastructure/cli/setup/__init__.pytestspeednet/infrastructure/cli/setup/bundle.pytestspeednet/infrastructure/cli/setup/dep_validator.pytestspeednet/infrastructure/cli/setup/dependencies.pytestspeednet/infrastructure/cli/setup/factory.pytestspeednet/infrastructure/cli/setup/keys.pytestspeednet/infrastructure/cli/setup/opt_validator.pytestspeednet/infrastructure/cli/setup/options.pytestspeednet/infrastructure/cli/setup/registry.pytestspeednet/infrastructure/cli/setup/validator.pytestspeednet/infrastructure/command/__init__.pytestspeednet/infrastructure/command/command.pytestspeednet/infrastructure/command/download_command_definition.pytestspeednet/infrastructure/command/download_command_executor.pytestspeednet/infrastructure/command/fetch_command_definition.pytestspeednet/infrastructure/command/fetch_command_executor.pytestspeednet/infrastructure/command/history_command_definition.pytestspeednet/infrastructure/command/history_command_executor.pytestspeednet/infrastructure/command/icommand_definition.pytestspeednet/infrastructure/command/icommand_executor.pytestspeednet/infrastructure/command/speed_command_definition.pytestspeednet/infrastructure/command/speed_command_executor.pytestspeednet/infrastructure/command/upload_command_definition.pytestspeednet/infrastructure/command/upload_command_executor.pytestspeednet/infrastructure/database/__init__.pytestspeednet/infrastructure/database/server_repository.pytestspeednet/infrastructure/json_exporter.pytestspeednet/infrastructure/network_speed_tester.pytestspeednet/infrastructure/subprocessor.pytestspeednet/setup/__init__.pytestspeednet/setup/bundle.pytestspeednet/setup/dep_validator.pytestspeednet/setup/dependencies.pytestspeednet/setup/factory.pytestspeednet/setup/keys.pytestspeednet/setup/opt_validator.pytestspeednet/setup/options.pytestspeednet/setup/registry.pytestspeednet/setup/validator.pypip3 install testspeednet
wget -O main.py https://raw.githubusercontent.com/vroncevic/testspeednet/main/main.py
python3 main.py speed
python3 main.py fetch
python3 main.py history --limit 10

