Metadata-Version: 2.4
Name: libib_client
Version: 1.0.2
Summary: A synchronous, third-party client for the Libib API
Author: Michael Masarik
License: MIT
Project-URL: Homepage, https://michael-masarik.github.io/libib-client/
Project-URL: Repository, https://github.com/michael-masarik/libib-client
Project-URL: Issues, https://github.com/michael-masarik/libib-client/issues
Keywords: libib,library,api,client
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0
Dynamic: license-file

# Libib-Client
A synchronous, third-party client for the [Libib API](https://support.libib.com/rest-api/introduction.html)

## Install
```shell
pip install libib_client
```

## Usage

To initalize the client:

```python
import libib_client

# For Pro accounts
client = Libib("your-api-key", "your-user-id")

# For Ultimate accounts, also pass your Ultimate ID
client = Libib("your-api-key", "your-user-id", "your-ultimate-id")
```

## Documentation:
Documentaion can be [found here] (https://michael-masarik.github.io/libib-client/)

## Note

I do not have an Ultimate account, so if the Ultimate features (or any features, for that matter) do not work, feel free to open an issue or a PR
