Metadata-Version: 2.3
Name: hostrange
Version: 0.1.0
Summary: Expand host range patterns like n[1-10] or c[01-05] into lists of hostnames
Keywords: hostrange,hostname,cluster,expand,hpc
Author: Toru Nakai
Author-email: Toru Nakai <nakai@scalewx.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.10
Project-URL: Homepage, https://github.com/nakai/hostrange
Project-URL: Repository, https://github.com/nakai/hostrange
Description-Content-Type: text/markdown

# hostrange

Expand host range patterns into lists of hostnames.

## Installation

```bash
pip install hostrange
```

## Usage

### Python API

```python
from hostrange import expand

hostlist = expand("n[1-10]")
```
