Metadata-Version: 2.4
Name: ipCalc-cli
Version: 0.1.0
Summary: IP address calculator — subnets, CIDR, ranges, conversions, and network info from the command line.
Author-email: Marcus <marcus.builds.things@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/marcusbuildsthings-droid/ipcalc
Project-URL: Issues, https://github.com/marcusbuildsthings-droid/ipcalc/issues
Keywords: ip,subnet,cidr,network,calculator,cli,devtools
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0
Dynamic: license-file

# ipCalc-cli

IP address calculator — subnets, CIDR, ranges, conversions, and network info from the command line.

## Install

```bash
pip install ipcalc-cli
```

## Usage

```bash
# Network info
ipcalc info 192.168.1.0/24

# Convert IP formats
ipcalc convert 192.168.1.1

# Subnet division
ipcalc subnet 10.0.0.0/16 -p 24

# Check if IP is in network
ipcalc contains 192.168.1.0/24 192.168.1.50

# IP range to CIDR
ipcalc range-to-cidr 192.168.0.0 192.168.3.255

# Merge overlapping CIDRs
ipcalc merge 192.168.0.0/25 192.168.0.128/25

# List hosts
ipcalc list 192.168.1.0/28
```

All commands support `--json` for machine-readable output.

## For AI Agents

See [SKILL.md](SKILL.md) for agent-optimized documentation.

## License

MIT
