Metadata-Version: 2.4
Name: olvid-bot
Version: 2.0.0a5
Summary: A Python GRPC client implementation for building chatbots and programs that interact with the Olvid application.
Author: olvid.io
Author-email: Olvid <bot@olvid.io>
Project-URL: Documentation, https://doc.bot.olvid.io
Project-URL: GitHub, https://github.com/olvid-io/Olvid-Bot-Python-Client
Project-URL: Issues, https://github.com/olvid-io/Olvid-Bot-Python-Client/issues
Project-URL: Website, https://olvid.io
Keywords: olvid,daemon,bot
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: grpcio==1.76.0
Requires-Dist: protobuf==6.33.2
Requires-Dist: python-dotenv==1.2.1
Requires-Dist: asyncclick==8.3.0.7
Provides-Extra: keycloak
Requires-Dist: aiohttp==3.12.15; extra == "keycloak"
Dynamic: author
Dynamic: license-file

# **Olvid Bot Python Client**

## Introduction
Welcome to the Olvid Python Client repository, part of the Olvid bots framework. 
If you're new here, consider starting with our [Documentation](https://doc.bot.olvid.io).

## Installation

You can install this module using pip:

```bash
pip3 install olvid-bot
```

Or from source:

```bash
git clone https://github.com/olvid-io/Olvid-Bot-Python-Client
cd Olvid-Bot-Python-Client
pip3 install .
```

## Overview

This Python module implements a robust gRPC client, designed to simplify interactions while providing complete access to every RPC.
This allows you to achieve advanced tasks with ease.
To see the complete gRPC and protobuf description of the Daemon API, please refer to the [protobuf repository](https://github.com/olvid-io/Olvid-Bot-Protobuf).

The module also includes a built-in **CLI (Command-Line Interface)**, enabling manual interaction with the Daemon for efficient management and testing.
For more information on using the CLI, refer to [README-cli](./README-cli.md).

## Quickstart
Follow our [🚀 Quickstart](https://doc.bot.olvid.io/install) page.
