SDK for interacting with Fireflies.ai API
Project description
Fireflies SDK
Python SDK for interacting with the Fireflies.ai API. This package provides a simple interface for accessing Fireflies.ai functionality programmatically.
Installation
pip install fireflies-sdk
Usage
from fireflies_sdk import FirefliesAPI
# Initialize with your API key
api = FirefliesAPI("your-api-key")
# Join a meeting
result = api.join_meeting(url="https://meet.google.com/xxx-yyyy-zzz")
# Get video URL for a transcript
video_info = api.get_video_url("transcript-id")
print(video_info["title"])
print(video_info["video_url"])
Features
- Join meetings
- Get video URLs
- Download meeting recordings
- List transcripts
- Delete transcripts
For AWS Lambda
This SDK is designed to be Lambda-friendly. Here's an example Lambda function:
from fireflies_sdk import FirefliesAPI
import os
def lambda_handler(event, context):
api = FirefliesAPI(os.environ["FIREFLIES_API_KEY"])
transcript_id = event.get("transcript_id")
try:
result = api.get_video_url(transcript_id)
return {
"statusCode": 200,
"body": result
}
except Exception as e:
return {
"statusCode": 500,
"body": str(e)
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fireflies_sdk-0.1.0.tar.gz
(4.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fireflies_sdk-0.1.0.tar.gz.
File metadata
- Download URL: fireflies_sdk-0.1.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01c0dbf8d59d6290a9ad0d2b08788632f6b46db68b208f5642ca683392684136
|
|
| MD5 |
6fc481b773fb3691457bf8d068255f6d
|
|
| BLAKE2b-256 |
349089ccc8b02da962d60fad8154e2672d140ffa96aadc3a63d6791ccd1a8dab
|
File details
Details for the file fireflies_sdk-0.1.0-py3-none-any.whl.
File metadata
- Download URL: fireflies_sdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f0b1a955ecf718d5568588478821017ba2d8b08fe74f4abe848c92f91934c0a
|
|
| MD5 |
3bc1b659461569d0cf20d44a77df2301
|
|
| BLAKE2b-256 |
fa4b949603055baee3a428830362277c6fc255595ff23e49b81457de57d72d35
|