Skip to main content

A python library to consume meditranscribe ai API

Project description

mt-ai-python

Python plugin for MediaTranscribe View on pypi.python.org

Installation

pip install mtai

Example

Tags

from mtai.mt import MT
secret_key = "secret_key_here"
mt = MT(secret_key=secret_key)
print(mt.tags.list())
print(mt.tags.create_from_title(title="Python Programming Language"))
print(mt.tags.create_from_title_summary("Python", "Python is a programming language"))
print(mt.tags.get_tab_by_id("664e033837511b57fa93dd2e"))
print(mt.tags.delete_tag_by_id("664e033837511b57fa93dd2e"))

Tags 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

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"))

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.3.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

mtai-0.0.3-py3-none-any.whl (4.6 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