Skip to content

Commit 91efa05

Browse files
committed
Rewrite as whoson: lightweight CLI subnet auditor
- Replace Streamlit/React/Docker with argparse CLI - Remove 2600+ node_modules files from tracking - Remove Dockerfile, docker-compose, bolt scaffolding - Add PNG/JPEG/SVG export via Pillow - Add GitHub Actions CI + PyPI publish workflows - Package name: whoson, CLI command: whoson - 2 runtime deps: python-nmap, Pillow - 61 tests
1 parent 9778aed commit 91efa05

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A lightweight subnet audit tool. Scan a network, see what's alive, and export a topology image -- all from the terminal.
44

55
[![PyPI](https://img.shields.io/pypi/v/whoson)](https://pypi.org/project/whoson/)
6-
[![CI](https://github.com/daniissac/n2g/actions/workflows/ci.yml/badge.svg)](https://github.com/daniissac/n2g/actions/workflows/ci.yml)
6+
[![CI](https://github.com/daniissac/whoson/actions/workflows/ci.yml/badge.svg)](https://github.com/daniissac/whoson/actions/workflows/ci.yml)
77

88
## Install
99

@@ -98,8 +98,8 @@ For real topology discovery using CDP/LLDP/SNMP, see [LibreNMS](https://www.libr
9898
## Development
9999

100100
```bash
101-
git clone https://github.com/daniissac/n2g.git
102-
cd n2g
101+
git clone https://github.com/daniissac/whoson.git
102+
cd whoson
103103
pip install -e ".[dev]"
104104
pytest
105105
```

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ dependencies = [
2121
]
2222

2323
[project.urls]
24-
Homepage = "https://github.com/daniissac/n2g"
25-
Repository = "https://github.com/daniissac/n2g"
26-
Issues = "https://github.com/daniissac/n2g/issues"
24+
Homepage = "https://github.com/daniissac/whoson"
25+
Repository = "https://github.com/daniissac/whoson"
26+
Issues = "https://github.com/daniissac/whoson/issues"
2727

2828
[project.scripts]
2929
whoson = "cli:main"

0 commit comments

Comments
 (0)