Metadata-Version: 2.1
Name: xml-encoder
Version: 1.0.0
Summary: A package for reading Jenkinsfile-like pipeline files
Home-page: https://github.com/jfcarter2358/xml-encoder
Author: John Carter
Author-email: jfcarter2358@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/jfcarter2358/xml-encoder/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# XML Encoder

## Examples

### Encoding a file

```Python
import xml_encoder

path_in  = '/foo/bar.xml'
path_out = '/foo/bar.exml'

xml_encoder.encode(path_in, path_out)
```

### Decoding a file
```Python
import xml_encoder

path_in  = '/foo/bar.exml'
path_out = '/foo/bar.xml'

xml_encoder.decode(path_in, path_out)
```

## Contact

If you have any questions or concerns, please reach out to me (John Carter) at jfcarter2358@gmail.com

