Skip to main content

A python library to consume meditranscribe ai API

Project description

Table of Contents generated with DocToc

mt-ai-python

Python package for MediaTranscribe View on pypi.python.org

License PyPI version

API SECRET KEY

Get your secret key from https://ai.mediatranscribe.com/

Installation

pip install mtai

Example

Instantiate mtai

from mtai.mt import MT
secret_key = "secret_key_here"
mt = MT(secret_key=secret_key)

# use tag class
print(mt.tags.list()) # list tags
print(mt.tags.create_from_title(title="Python Programming Language")) # create tags
print(mt.tags.create_from_title_summary("Python", "Python is a programming language")) # create tags
print(mt.tags.get_tag_by_id("664e033837511b57fa93dd2e")) # get a tag
print(mt.tags.delete_tag_by_id("664e033837511b57fa93dd2e")) # delete a tag

Static Use

To start using the MTAI Python API, you need to start by setting your secret key.

You can set your secret key in your environment by running:

export SECRET_KEY = 'your_secret_secret_key'

After exporting the keys, you can use the api like this

# work with tags
from mtai.tags import Tag
print(Tag.list())
print(Tag.create_from_title(title="Python Programming Language"))
print(Tag.create_from_title_summary("Python", "Python is a programming language"))
print(Tag.get_tab_by_id("664e033837511b57fa93dd2e"))
print(Tag.delete_tag_by_id("664e033837511b57fa93dd2e"))

Resources

Transcription
Tag
Prompt
Bio
Description

Please reference the docs folder for usage.

Contribution

If you want to join, kindly see this contribution

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mtai-0.0.7.tar.gz (4.9 kB view hashes)

Uploaded Source

Built Distribution

mtai-0.0.7-py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page