Metadata-Version: 2.1
Name: goxlr
Version: 1.4.0
Summary: A Python wrapper for the GoXLR Utility API.
Home-page: https://github.com/samcarsonx/goxlr
Author: Sam Carson
Author-email: sam@samcarson.co.uk
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE-3RD-PARTY.txt
License-File: LICENSE.txt

# GoXLR Utility API Python Wrapper

 [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![PyPI version](https://badge.fury.io/py/goxlr.svg)](https://badge.fury.io/py/goxlr) ![PyPI - Downloads](https://img.shields.io/pypi/dm/goxlr) ![GitHub issues](https://img.shields.io/github/issues/samcarsonx/goxlr) [![Documentation Status](https://readthedocs.org/projects/goxlr/badge/?version=latest)](https://goxlr.readthedocs.io/en/latest/?badge=latest)

A python wrapper for the API of the open-source GoXLR software alternative, GoXLR Utility, that uses asyncio. Disclaimer: This project is not affiliated with the GoXLR brand or TC-Helicon in any way, shape, or form. This is a third-party package made for fun and educational purposes.

## Features
- Asynchronous connection to the GoXLR utility daemon
- All methods have been translated to Python
- Handy enumerators for everything
- Very simple and easy to get started

## Installation
```shell
pip install goxlr
```

## Getting Started
Here's some sample code to get started with this package that pings the utility's daemon.
```py
import asyncio

from goxlr import GoXLR
from goxlr.types import Fader, Channel

async def main():
    async with GoXLR() as xlr:
        await xlr.set_fader(Fader.A, Channel.Headphones)
        await xlr.set_volume(Channel.Headphones, 127)

if __name__ == "__main__":
    asyncio.run(main())
```

You may have noticed that we use `with` to manage the connection to the GoXLR. You may also wish to use the more traditional open and close methods which is acceptable too.
```py
async def main():
    xlr = GoXLR()
    await xlr.open()

    ping = await xlr.ping()
    print(ping)  # Ok

    await xlr.close()
```

## Contributing
Coming soon. As there isn't a CONTRIBUTING.md yet, please try to emulate the style of the rest of the code. Using snake_case and descriptive method argument names with type hints wherever possible.

## Documentation
Please visit the [documentation](https://goxlr.readthedocs.io/en/latest/) for more information on how to use this package.
