.dataset().script_tag()

.dataset(...).script_tag(
  token: string,
  style: string = 'd'
): string

Get a <script> tag for a specific dataset to be displayed as a table. Insert this script tag where you want the table to appear in your HTML.

Parameters

  • token string
    Secure access token (from .token())
  • style string
    The styling framework to use for this table. Can be one of:
    • d - Default
    • auto - Auto detect
    • bs - Bootstrap 3
    • bs4 - Bootstrap 4
    • bs5 - Bootstrap 5
    • dt - CloudTables / DataTables default styling
    • zf - Zurb Foundation
    • ju - jQuery UI
    • se - Semantic UI
    • no - No styling

Returns

This method returns a string which contains the HTML <script> tag to use to embed your CloudTable.

Example

api = CloudTablesApi(':apiKey', subdomain='sub-domain')
token = api.token()
result = api.dataset(':id').scriptTag(token['token'], style='bs5')

Will result in a string such as:

<script
  src="https://sub-domain.{domain}/loader/:id/table/bs5"
  data-token="ANnbgUJoKO8qh5fYObpffdNqqgANtVVL"
></script>