Metadata-Version: 2.4
Name: umf.py
Version: 1.0.0
Summary: The Universal Metadata Format
Author: Self Hosting Media Group
License: MIT
Project-URL: Homepage, https://github.com/shmg-org/umf-python
Project-URL: Repository, https://github.com/shmg-org/umf-python.git
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# UMF Python Parser

The Python Implementation of the [Universal Media Format](https://github.com/shmg-org/umf-specification).

## Example

```python
from umf import parse

source = """UMF Python Parser

[ Github ]
Author: IceBrick
Language: Python"""

metadata = parse(source)

print(metadata.get('Github', 'Author'))
```

## Installation

The package is available on [PyPI](https://pypi.org/project/umf.py/). You can install it using pip:

```bash
pip install umf.py
```

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
