Metadata-Version: 2.4
Name: net-strobe
Version: 1.0.0
Summary: A lightweight, high-performance network availability and latency strobe utility.
Author-email: Network Operations <ops@example.com>
Keywords: network,latency,monitoring,heartbeat,strobe
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: System :: Networking :: Monitoring
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0

# net-strobe

**net-strobe** is a minimal Python utility for high-frequency network endpoint monitoring.

## Installation
```bash
pip install net-strobe
```

## Quick Start
```python
from net_strobe import ping

# Rapidly strobe an endpoint
result = ping("google.com")
print(f"[{result['status']}] Latency: {result['latency_ms']}ms")
```
