{"id":20292513,"url":"https://github.com/mauricelambert/tracert","last_synced_at":"2025-08-23T05:05:45.892Z","repository":{"id":158693043,"uuid":"634183428","full_name":"mauricelambert/Tracert","owner":"mauricelambert","description":"This package implements a traceroute tool faster than traceroute/tracert executable","archived":false,"fork":false,"pushed_at":"2023-04-29T10:08:03.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-23T05:04:45.429Z","etag":null,"topics":["debug","network","ping","pypi-package","python3","scapy","traceroute","tracert"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mauricelambert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null}},"created_at":"2023-04-29T10:07:30.000Z","updated_at":"2024-05-13T17:11:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"8fe8f110-676d-4484-99c2-f1a5a7a1ea53","html_url":"https://github.com/mauricelambert/Tracert","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mauricelambert/Tracert","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FTracert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FTracert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FTracert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FTracert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mauricelambert","download_url":"https://codeload.github.com/mauricelambert/Tracert/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FTracert/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271745472,"owners_count":24813499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"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":["debug","network","ping","pypi-package","python3","scapy","traceroute","tracert"],"created_at":"2024-11-14T15:17:35.865Z","updated_at":"2025-08-23T05:05:45.874Z","avatar_url":"https://github.com/mauricelambert.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Tracert logo](https://mauricelambert.github.io/info/python/code/Tracert_small.png \"Tracert logo\")\r\n\r\n# Tracert\r\n\r\n## Description\r\n\r\nThis package implements a traceroute tool faster than traceroute/tracert executable but less accurate for response and without hostname resolution.\r\n\r\n## Requirements\r\n\r\nThis package require :\r\n - python3\r\n - python3 Standard Library\r\n - Scapy\r\n - PythonToolsKit\r\n\r\n## Installation\r\n\r\n```bash\r\npip install Tracert\r\n```\r\n\r\n## Usages\r\n\r\n### Command lines\r\n\r\n```bash\r\npython3 -m Tracert 8.8.8.8\r\npython3 Tracert.pyz dns.google.com\r\nTracert 8.8.4.4\r\nTracert --help\r\nTracert -h\r\nTracert -6 -t 2 -r 5 -s 64 dns.google.com\r\n```\r\n\r\n### Python3\r\n\r\n```python\r\nfrom Tracert import tracert\r\n\r\ntracert(\"8.8.8.8\")\r\ntracert(\"dns.google.com\", 6, 64, 2, 5)\r\n```\r\n\r\n## Links\r\n\r\n - [Github Page](https://github.com/mauricelambert/Tracert)\r\n - [Pypi](https://pypi.org/project/Tracert/)\r\n - [Documentation](https://mauricelambert.github.io/info/python/code/Tracert.html)\r\n - [Executable](https://mauricelambert.github.io/info/python/code/Tracert.pyz)\r\n\r\n## Help\r\n\r\n```text\r\nusage: traceroute.py [-h] [-4 | -6] [--timeout TIMEOUT] [--retry RETRY] [--max-steps MAX_STEPS] destination\r\n\r\nFast tracert tool.\r\n\r\npositional arguments:\r\n  destination           IP or hostname you want to trace.\r\n\r\noptions:\r\n  -h, --help            show this help message and exit\r\n  -4                    Force IPv4.\r\n  -6                    Force IPv6.\r\n  --timeout TIMEOUT, -t TIMEOUT\r\n                        Timeout for each ping.\r\n  --retry RETRY, -r RETRY\r\n                        Number of retry for each steps.\r\n  --max-steps MAX_STEPS, -s MAX_STEPS\r\n                        Maximum steps to trace.\r\n```\r\n\r\n## Licence\r\n\r\nLicensed under the [GPL, version 3](https://www.gnu.org/licenses/).\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauricelambert%2Ftracert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmauricelambert%2Ftracert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauricelambert%2Ftracert/lists"}