Skip to main content

DBT API SDK for Python

Project description

dbt-sdk-python

A Python implementation of DBT API SDK (ported from dbt-sdk-php)

Requirements

  • Python 3 (Recommended 3.6+)

Installation

sudo python3 -m pip install dbtsdk

Usage

Below are the steps neccessary to get you started with the DBT SDK.

1. Sign up for an API Key

Before you can start using the DBT SDK, you will need to sign up for an API Key at https://www.digitalbibleplatform.com.

2. (Optional) Add your API key to your environment

It's best not to hard code your API key in your script file. Instead, save it to your environment and let Python read it from there.

On Windows:

setx DBT_API_KEY "<your api key>"

On Mac and Linux:

export DBT_API_KEY=<your api key>

To make this environment persist between reboots, add this line to your .bash_profile file instead.

2. Include the SDK file

In your Python script, import the package.

from dbtsdk import Dbt

3. Create an instance of the object

When creating the object, pass the API key.

import os

api_key = os.environ['DBT_API_KEY']
dbt = Dbt.Dbt(api_key)

4. Retrieve volume information

For an example of the usual work flows, as well as examples of retrieving and displaying text, audio, and video, download the sample code.

API Documentation

Documentation for the underlying REST API can be found in the Digital Bible Platform Developer Documentation.

License

dbt-sdk-python is available under the MIT license. See the LICENSE file for more info.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

dbtsdk-0.3-py3-none-any.whl (7.0 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