Metadata-Version: 2.4
Name: vexa-client
Version: 0.5.0
Summary: Python client library for Vexa - privacy-first, open-source API for real-time meeting transcription
Home-page: https://github.com/Vexa-ai/vexa
Author: Vexa Team
Author-email: support@vexa.ai
License: MIT
Project-URL: Documentation, https://github.com/Vexa-ai/vexa/blob/main/docs/user_api_guide.md
Project-URL: Bug Tracker, https://github.com/Vexa-ai/vexa/issues
Project-URL: Discord, https://discord.com/invite/Ga9duGkVz9
Project-URL: Website, https://www.vexa.ai
Keywords: meeting transcription translation real-time api client vexa
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Vexa Client Python

[![PyPI version](https://badge.fury.io/py/vexa-client.svg)](https://badge.fury.io/py/vexa-client)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python 3.7+](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/downloads/)

🚀 **Build Meeting Assistants in Hours, Not Months**

A Python client library for Vexa - the privacy-first, open-source API for real-time meeting transcription. Build powerful meeting assistants with just a few lines of code. 


repo https://github.com/Vexa-ai/vexa


discord community https://discord.com/invite/Ga9duGkVz9

## ✨ Features

- 🤖 **Meeting Bots**: Send bots to automatically join Google Meet, (Zoom, Teams coming soon)
- ⚡ **Real-time**: Get transcripts as meetings happen, not after
- 🌍 **109 Languages**: Real-time transcription and translation across all of them
- 🧠 **Auto Language Detection**: No language setup needed - Vexa automatically detects what's being spoken
- 🔄 **Real-time Translation**: Choose any target language for instant translation instead of transcription
- 🔔 **Webhook Automation**: Get notified instantly when meetings end for seamless post-meeting workflows
- 🔒 **Privacy-First**: Open-source alternative to recall.ai - your data stays under your control
- 🚀 **Rapid Development**: Build complex meeting apps in hours
- 🎯 **Simple API**: Clean abstractions that make building on top a joy

## 🛠️ What You Can Build

Transform your ideas into reality with Vexa's powerful API:

- **Meeting Assistant Apps**: Like Otter.ai, Fireflies.ai, Fathom
- **CRM Integrations**: Auto-populate meeting notes in Salesforce, HubSpot
- **Compliance Tools**: Automatically record and transcribe important business calls
- **Language Learning**: Real-time translation for international meetings
- **Accessibility Tools**: Live captions for hearing-impaired participants
- **Analytics Dashboards**: Extract insights from meeting conversations


## 📋 API Operations Overview

### 🎯 User Operations
These are the primary operations for API users who want to integrate Vexa's transcription capabilities into their applications. This includes bot management, accessing transcripts, and configuring webhooks.

### 🔧 Admin Operations (Self-hosting only)
These operations are exclusively for users who self-host Vexa and need to manage user accounts, create API tokens, and perform administrative tasks. Most API users will not need these operations.

## 🚀 Get Started in 5 Minutes

### 1. Get Your API Key
Get your API key in 3 clicks at [www.vexa.ai](https://www.vexa.ai) - no waiting, no approval process!

### 2. Install the Client

```bash
pip install vexa-client
```



## 🎯 Quick Start Example

```python
from vexa_client import VexaClient

# Initialize the client
client = VexaClient(
    api_key="your-api-key-here",            # For user operations
)

meeting_id = "abc-def-ghi"

# Request a bot to join a meeting
meeting = client.request_bot(
    platform="google_meet",
    native_meeting_id=meeting_id,
    bot_name="Vexa Bot",
    language="en"  # Optional - auto-detected if not provided
)

# get meeting transcript during or after the meeting

transcript = client.get_transcript("google_meet",meeting_id)


# switch to translation to a different language instead of transcription during meeting
client.update_bot_config(
    platform="google_meet",
    native_meeting_id=meeting_id,
    language='es'
)


#stop the bot
client.stop_bot(platform="google_meet",native_meeting_id=meeting_id)

# delete meeting transcription for vexa
client.delete_meeting(
    platform="google_meet",
    native_meeting_id=meeting_id,
)
```

## 🌍 Language Detection & Translation Workflows

### Auto Language Detection
```python
# No language specified - Vexa automatically detects what's being spoken
meeting = client.request_bot(
    platform="google_meet",
    native_meeting_id="abc-def-ghi",
    bot_name="Smart Bot"
    # language not specified - auto-detection enabled!
)
```

### 📝 Transcription in Specific Language
```python
# Transcribe in specific language (if you know what will be spoken)
meeting = client.request_bot(
    platform="google_meet",
    native_meeting_id="abc-def-ghi",
    language="es",  # Spanish transcription
    task="transcribe"
)
```

### 🔄 Real-time Translation
```python
# Translate everything to English in real-time
meeting = client.request_bot(
    platform="google_meet",
    native_meeting_id="abc-def-ghi",
    language="pt",  # Target language (Portuguese)
    task="translate"  # Translation mode
)
```

## 🔔 Webhook Automation for Post-Meeting Workflows

Set up webhooks to get notified instantly when meetings end - perfect for automated post-meeting processing:

```python
# Set up webhook to receive meeting completion notifications
client.set_webhook_url("https://your-server.com/webhook/vexa")
```


## 📚 Full API Reference https://github.com/Vexa-ai/vexa/blob/main/docs/user_api_guide.md


### User Profile

#### `set_webhook_url(webhook_url)`
Set the webhook URL for the authenticated user.

### Admin Operations (Self-hosting Only)

⚠️ **Note**: Admin operations are only available for self-hosted Vexa deployments. Most API users will only need the User Operations above.

#### `create_user(email, name=None, image_url=None, max_concurrent_bots=None)`
Create a new user (Self-hosting admin only).

#### `list_users(skip=0, limit=100)`
List users in the system (Self-hosting admin only).

#### `update_user(user_id, name=None, image_url=None, max_concurrent_bots=None)`
Update user information (Self-hosting admin only).

#### `get_user_by_email(email)`
Retrieve a user by email address (Self-hosting admin only).

#### `create_token(user_id)`
Generate a new API token for a user (Self-hosting admin only).

## 📋 Requirements

- Python 3.7+
- requests >= 2.25.0

## 📄 License

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


## 🌟 Join the Vexa Community

🚀 **Help us reach 1000 stars!** Current: [GitHub stars](https://github.com/vexa/vexa) → Goal: 1000 ⭐️

Join hundreds of developers building the future of meeting intelligence:

- 💬 **[Discord Community](https://discord.gg/vexa)** - Get help, share projects, connect with other builders
- 🌐 **[Vexa Website](https://www.vexa.ai)** - Get your API key and explore features
- 💼 **[LinkedIn](https://linkedin.com/company/vexa-ai)** - Follow for updates and announcements
- 🐦 **[X (@grankin_d)](https://x.com/grankin_d)** - Connect with the founder

## 💬 What Developers Are Saying

> "Built our meeting assistant MVP in 3 hours with Vexa. The API is incredibly clean and the real-time transcription is spot-on." - Open Source Developer

> "Finally, a privacy-first alternative to proprietary solutions. Perfect for our enterprise needs." - Enterprise Developer

> "The 109-language support is a game changer for our international team meetings." - Startup Founder

## 🆘 Support

For support and questions:

- 💬 **[Discord Community](https://discord.gg/vexa)** - Fastest way to get help
- 📚 **[Documentation](https://docs.vexa.ai)** - Comprehensive guides and tutorials
- 🐛 **[Issues](https://github.com/vexa/vexa-client-python/issues)** - Report bugs and request features
- ✉️ **Email**: support@vexa.ai

---

**Ready to build the future of meeting intelligence?** [Get started with Vexa today!](https://www.vexa.ai) 
