Metadata-Version: 2.4
Name: traceviz
Version: 0.1.3
Summary: Traceroute visualization on a world map
Project-URL: Homepage, https://github.com/shixy96/traceviz
Project-URL: Repository, https://github.com/shixy96/traceviz
Project-URL: Issues, https://github.com/shixy96/traceviz/issues
Author: TraceViz Contributors
License-Expression: MIT
License-File: LICENSE
Keywords: map,network,traceroute,visualization
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet
Classifier: Topic :: System :: Networking
Requires-Python: >=3.12
Requires-Dist: flask>=3.0
Requires-Dist: requests>=2.31
Provides-Extra: dev
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.4; extra == 'dev'
Description-Content-Type: text/markdown

# TraceViz

**Visualize traceroute paths on a world map.**
Traceroute 路径可视化工具 —— 在世界地图上展示网络数据包的旅行路径。

[![PyPI](https://img.shields.io/pypi/v/traceviz)](https://pypi.org/project/traceviz/)
![Python](https://img.shields.io/badge/Python-3.12+-blue)
![License](https://img.shields.io/badge/License-MIT-green)
[![CI](https://github.com/shixy96/traceviz/actions/workflows/ci.yml/badge.svg)](https://github.com/shixy96/traceviz/actions/workflows/ci.yml)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)

<!-- TODO: Add screenshot -->

## Features / 功能特性

- Run traceroute and visualize each hop on an interactive world map
- Auto-detect Chinese ISP backbone segments (ChinaTelecom 163/CN2, ChinaUnicom CUNet, ChinaMobile CMI, etc.)
- Latency spike detection — automatically flag possible transoceanic hops
- Cross-platform: macOS / Linux / Windows
- ICMP and UDP probe modes
- Pure JSON output for scripting
- Built-in demo mode — try the frontend without running a real traceroute

## Installation / 安装

```bash
# Recommended: using uv
uv tool install traceviz

# Or using Homebrew
brew install shixy96/tap/traceviz

# Or using pip
pip install traceviz
```

## Usage / 使用

```bash
# Basic — trace to google.com and open the map in your browser
traceviz google.com

# ICMP mode (better penetration, requires sudo/admin)
sudo traceviz google.com --icmp

# JSON-only output
traceviz google.com --json

# Demo mode (simulated data)
traceviz --demo google.com

# Custom parameters
traceviz google.com --max-hops 20 --queries 3 --wait 3

# Use an ipinfo.io token for higher query limits
traceviz google.com --token YOUR_TOKEN
```

### CLI Options

| Option | Description | Default |
|--------|-------------|---------|
| `target` | Target domain or IP address | (required) |
| `--max-hops` | Maximum number of hops | 30 |
| `--port` | Local server port | 8890 |
| `--token` | ipinfo.io API token | — |
| `--icmp` | Use ICMP mode | off |
| `--wait` | Timeout per hop (seconds) | 2 |
| `-q, --queries` | Probes per hop | 2 |
| `--json` | JSON output only, no server | off |
| `--demo` | Use simulated demo data | off |

## How It Works / 工作原理

1. **Traceroute** — runs the system `traceroute` / `tracert` command and parses each hop's IP and RTT
2. **IP Lookup** — queries ipinfo.io for geolocation and ASN data; matches built-in backbone rules
3. **Analysis** — detects latency spikes (>100 ms jump → possible ocean crossing) and classifies network segments
4. **Visualization** — starts a local Flask server and renders the path on a Leaflet world map

## Requirements / 系统要求

- Python 3.12+
- `traceroute` (macOS / Linux) or `tracert` (Windows, built-in)
  - Ubuntu / Debian: `sudo apt install traceroute`

## Development / 开发

```bash
# Clone
git clone https://github.com/shixy96/traceviz.git
cd traceviz

# Install dev dependencies
uv sync --extra dev

# Install locally as a tool
uv tool install .

# Run tests
uv run pytest

# Lint
uv run ruff check traceviz/ tests/

# Format check
uv run ruff format --check traceviz/ tests/
```

To publish a new version:

1. Land the release changes on `main`, including the new value in `traceviz/__init__.py`.
2. Use a Conventional Commit PR title because squash merge will reuse it as the final commit subject.
3. Pull the latest clean `main` locally.
4. Run the release script from `main`.

```bash
git checkout main
git pull --ff-only origin main
./scripts/tag-release.sh
```

The script requires `git-cliff`, generates and commits `CHANGELOG.md`, creates `v<version>`, and pushes both the release commit and tag to `origin`.
GitHub Actions then builds the package, publishes to PyPI, updates the Homebrew tap, and creates the GitHub Release.

Release automation prerequisites:

1. PyPI Trusted Publishing is configured for repository `shixy96/traceviz`.
2. Create repository `shixy96/homebrew-tap`.
3. Add repository secret `HOMEBREW_TAP_TOKEN` in `shixy96/traceviz`.
4. The token needs `Contents: Read and write` on `shixy96/homebrew-tap`.
5. Install `git-cliff` on the machine that runs `./scripts/tag-release.sh`.

PyPI reference:
- [Publishing with a Trusted Publisher](https://docs.pypi.org/trusted-publishers/using-a-publisher/)

Homebrew install:

```bash
brew tap shixy96/tap
brew install traceviz
```

## License

[MIT](LICENSE)
