Metadata-Version: 2.1
Name: props2yaml
Version: 0.1.1
Summary: Convert .properties files into .yaml
Author-email: "Jorge F. Sánchez" <props2yaml@jfsanchez.net>
License: MIT
Project-URL: Homepage, https://github.com/jfsanchez91/props2yaml
Project-URL: Bug Tracker, https://github.com/jfsanchez91/props2yaml/issues
Keywords: yaml,properties,converter
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# props2yaml
Convert `.properties` files into `.yaml`

## install
```bash
pip install -U props2yaml
p2y --version
```

## usage
 - ```bash
   p2y -i config.properties -o config.yml            # (1)
   ```
 - ```bash
   p2y -i config.properties > config.yml             # (2)
   ```
 - ```bash
   cat config.properties | p2y -i - -o config.yml    # (3)
   ```
 - ```bash
   cat config.properties | p2y -i - > config.yml     # (4)
   ```
