{"id":25981416,"url":"https://github.com/tameronline/speed_net","last_synced_at":"2026-07-03T05:02:32.954Z","repository":{"id":280662994,"uuid":"942733776","full_name":"TamerOnLine/speed_net","owner":"TamerOnLine","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-04T17:33:18.000Z","size":148,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-21T14:50:28.414Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TamerOnLine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-04T15:31:25.000Z","updated_at":"2025-03-04T17:33:21.000Z","dependencies_parsed_at":"2025-03-04T17:23:28.023Z","dependency_job_id":"715b935a-125a-4d29-9f34-19840c2de705","html_url":"https://github.com/TamerOnLine/speed_net","commit_stats":null,"previous_names":["tameronline/speed_net"],"tags_count":0,"template":false,"template_full_name":"TamerOnLine/venv","purl":"pkg:github/TamerOnLine/speed_net","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fspeed_net","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fspeed_net/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fspeed_net/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fspeed_net/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TamerOnLine","download_url":"https://codeload.github.com/TamerOnLine/speed_net/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TamerOnLine%2Fspeed_net/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35072845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-03T02:00:05.635Z","response_time":110,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-05T08:33:15.993Z","updated_at":"2026-07-03T05:02:32.906Z","avatar_url":"https://github.com/TamerOnLine.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TamerOnline Speed Net\n\n## Overview\nTamerOnline Speed Net is a Python-based internet speed test tool that automates speed measurements and stores the results in an SQLite database. The project supports cross-platform virtual environment setup and integrates seamlessly with VS Code.\n\n## 🖼 Screenshots\n![web Streamlit](img/screenshot01.png)\n\n\n## Features\n- **Cross-platform compatibility**: Works on Windows, Linux, and macOS.\n- **Automated virtual environment setup**: Easily create and activate a Python virtual environment.\n- **Internet speed test**: Measures download speed, upload speed, and ping.\n- **Results storage**: Saves test results in an SQLite database.\n- **Command-line execution**: Run tests with a simple command.\n- **Unit Testing**: Includes test cases to validate database functionality.\n\n## Prerequisites\n- **Python 3.6+** installed.\n- **Git (optional)** for cloning the repository.\n- **VS Code (optional)** for an optimized development experience.\n\n## Installation and Setup\n\n### Clone the Repository\nEnsure Git is installed and clone the project:\n```bash\ngit clone https://github.com/TamerOnLine/speed_net.git\ncd speed_net\n```\n\n### Setting Up the Virtual Environment\n#### Windows (Command Prompt):\n```cmd\nactivate_project.bat\n```\n#### Windows (PowerShell):\n```powershell\n.\\activate_project.ps1\n```\n#### Linux/macOS:\n```bash\nchmod +x activate_project.sh\n./activate_project.sh\n```\n\n### Installing Dependencies\nAfter activating the virtual environment:\n```bash\npip install -r requirements.txt\n```\n\n## Running the Speed Test\nTo execute the speed test, run:\n```bash\npython src/main.py\n```\nThis will measure your internet speed and store the results in `speed_results.db`.\n\n## Viewing Previous Test Results\nTo retrieve the last 5 speed test results:\n```bash\npython src/main.py\n```\nThe output will display previous test results, including download speed, upload speed, ping, and timestamp.\n\n## File Structure\n```\ntameronline-speed_net/\n├── .github/                 # GitHub workflows\n├── img/                     # Image assets\n├── src/                     # Source code\n│   ├── __init__.py          # Init file for Python package\n│   ├── main.py              # Speed test script\n│   └── runner.py            # Script runner\n├── tests/                   # Unit tests\n│   ├── __init__.py\n│   └── test_speedtest.py    # Test cases\n├── activate_project.bat     # Windows CMD activation script\n├── activate_project.ps1     # Windows PowerShell activation script\n├── activate_project.sh      # Linux/macOS activation script\n├── LICENSE                  # License file\n├── README.md                # Documentation\n├── requirements.txt         # Python dependencies\n├── runtime.txt              # Python runtime version\n├── speed_results.db         # SQLite database storing results\n└── workspace.code-workspace # VS Code workspace file\n```\n\n## Running Tests\nTo validate database and speed test functionality, run:\n```bash\npytest tests/\n```\n\n## Troubleshooting\n- **Python not found**: Ensure Python 3.6+ is installed and added to the system path.\n- **Activation failure**: Delete the `venv` folder and rerun the activation script.\n- **Permission issues (Linux/macOS)**: Use `chmod +x activate_project.sh` to grant execution permissions.\n\n## Contribution\nSubmit pull requests or report issues on the [GitHub repository](https://github.com/TamerOnLine/speed_net).\n\n## License\nThis project is licensed under the MIT License. See [LICENSE](LICENSE) for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftameronline%2Fspeed_net","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftameronline%2Fspeed_net","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftameronline%2Fspeed_net/lists"}