Skip to content

Vexa-ai/vexa-pypi-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1 Commit
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Vexa Client Python

PyPI version License: MIT Python 3.7+

πŸš€ 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 - no waiting, no approval process!

2. Install the Client

pip install vexa-client

🎯 Quick Start Example

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

# 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

# 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

# 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:

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

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 file for details.

🌟 Join the Vexa Community

πŸš€ Help us reach 1000 stars! Current: GitHub stars β†’ Goal: 1000 ⭐️

Join hundreds of developers building the future of meeting intelligence:

πŸ’¬ 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:


Ready to build the future of meeting intelligence? Get started with Vexa today!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published