Metadata-Version: 2.1
Name: llbase
Version: 1.3.0
Summary: Base Linden Lab Python modules
Home-page: https://github.com/secondlife/python-llbase
License: MIT
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# Linden Lab Base

[![codecov](https://codecov.io/gh/secondlife/python-llbase/branch/main/graph/badge.svg?token=GUB4VX1OSG)](https://codecov.io/gh/secondlife/python-llbase)

Vintage python utility modules used by Linden Lab, the creators of
[Second Life](https://secondlife.com).

## Use

Install llbase:

```
pip install llbase
```

Use it:
```py
from llbase.config import Config

config = Config("./config.xml")

print(config.get("my-setting"))
```
