Skip to main content

A lightweight framework for building MS adaptive cards programmatically.

Project description

Adaptive Cards Framework

Baseline

What are Adaptive Cards?

Adaptive Cards are platform-agnostic snippets of UI, authored in JSON, that apps and services can openly exchange. When delivered to a specific app, the JSON is transformed into native UI that automatically adapts to its surroundings. It helps design and integrate light-weight UI for all major platforms and frameworks.

Why do I need a framework?

Building an application that effectively serves Adaptive Cards can be complex and time-consuming. Without a framework, you'd need to thoroughly navigate the entire Adaptive Cards documentation to ensure proper implementation, which can slow down development and hinder scalability. While tools like the designer.io page can assist with prototyping and creating JSON components, relying solely on these can limit your application's growth potential. By leveraging a framework, you streamline the process, allowing you to focus on crafting your cards with confidence and efficiency, without the worry of underlying technical details.

About

adaptive-cards-io is a Python package designed to simplify the creation, manipulation, and integration of Adaptive Cards in your applications. Adaptive Cards are a powerful way to build lightweight, responsive user interfaces that seamlessly adapt to different platforms and environments. With adaptive-cards-io, you can efficiently generate and manage these cards, ensuring they are optimized and correctly formatted for your specific needs.

This package offers a streamlined approach, allowing developers to focus on designing and deploying Adaptive Cards without getting bogged down by the intricacies of the underlying JSON structure. Whether you're building prototypes or scaling up to a production environment, adaptive-cards-io provides the tools and framework to enhance productivity and reduce development time.

Installation

  1. Make sure PIP is up-to-date:
python3 -m pip install --upgrade pip
  1. Install the package:
python3 -m pip install adaptive-cards-io

Usage

Importing

from adaptive_cards import *

By importing everything, all of the following will become available in your python module:

Enumerators

  • MaterialType
  • ActionType
  • InputType
  • MaterialColor
  • MaterialHeight
  • MaterialOrientation
  • HorizontalAlignment
  • VerticalAlignment
  • MaterialSpacing
  • ActionTheme
  • ActionMode
  • ActionRole
  • BackgroundFillMode
  • AssociatedInputs
  • TargetFreezing
  • ContainerTheme
  • ColumnWidth
  • TextTheme
  • FontType
  • TextSize
  • FontWeight
  • ImageSize
  • ImageTheme
  • MediaMimeType
  • CaptionMimeType
  • ChoiceSetMode
  • InputTextMode

Building Blocks

  • Material
  • MaterialDynamic
  • MaterialMapping
  • MaterialLayout
  • AdaptiveCardMaterial
  • BackgroundImage
  • AdaptiveCardAction

Units

  • Weight
  • Seconds
  • Pixels

Base

  • AdaptiveCardLayout
  • AdaptiveCard

Actions

  • ActionSubmit
  • ActionOpenUrl
  • ActionShowCard
  • ActionToggleVisibility
  • TargetElement
  • ActionExecute
  • ActionSetLayout
  • ActionSet
  • MSTeams
  • ActionData

Containers

  • ContainerStyle
  • ContainerLayout
  • Container
  • ColumnLayout
  • Column
  • ColumnSetLayout
  • ColumnSet
  • FactSetLayout
  • Fact
  • FactSet
  • ImageSetLayout
  • ImageSet
  • TableLayout
  • TableCell
  • TableRow
  • GridStyle
  • Table
  • CarouselPage
  • Carousel

Inputs

  • InputValidation
  • InputLayout
  • AdaptiveCardInput
  • InputChoice
  • InputChoiceSet
  • InputTextValidation
  • InputText
  • InputNumber
  • InputDate
  • InputTime
  • InputToggle

General

  • TextLayout
  • TextStyle
  • TextBlock
  • ImageLayout
  • ImageStyle
  • Image
  • MediaLayout
  • MediaSource
  • MediaCaptions
  • Media

Example

from adaptive_cards import *
import json

official_example = AdaptiveCard(
    version=1.5,
    schema="http://adaptivecards.io/schemas/adaptive-card.json",
    body=[
        TextBlock("${title}", style=TextStyle(size=TextSize.MEDIUM, weight=FontWeight.BOLDER)),
        ColumnSet(
            columns=[
                Column(
                    layout=ColumnLayout(width=ColumnWidth.AUTO),
                    items=[
                        Image(
                            "${creator.profileImage}",
                            style=ImageStyle(theme=ImageTheme.PERSON),
                            layout=ImageLayout(size=ImageSize.SMALL),
                            alternate_text="${creator.name}"
                        )
                    ]
                ),
                Column(
                    items=[
                        TextBlock("${creator.name}", style=TextStyle(weight=FontWeight.BOLDER)),
                        TextBlock(
                            "Created {{DATE(${createdUtc},SHORT)}}", 
                            style=TextStyle(subtle=True),
                            layout=TextLayout(spacing=MaterialSpacing.NONE)
                        )
                    ]
                )
            ]
        ),
        TextBlock("${description}"),
        FactSet(
            facts=[
                Fact(title="${key}:", value="${value}").using("${properties}"),
            ]
        )
    ],
    actions=[
        ActionShowCard(
            title="Set due date",
            card=AdaptiveCard(
                schema="http://adaptivecards.io/schemas/adaptive-card.json",
                body=[
                    InputDate(id="dueDate"),
                    InputText(id="comment", placeholder="Add a comment", multiline=True)
                ],
                actions=[ActionSubmit(title="OK")]
            )
        ),
        ActionOpenUrl(title="View", url="${viewUrl}")
    ]
)

print(json.dumps(official_example.__dict__, indent=4))

Output

{
    "type": "AdaptiveCard",
    "body": [
        {
            "type": "TextBlock",
            "text": "${title}",
            "wrap": true,
            "size": "Medium",
            "weight": "Bolder"
        },
        {
            "type": "ColumnSet",
            "columns": [
                {
                    "type": "Column",
                    "items": [
                        {
                            "type": "Image",
                            "url": "${creator.profileImage}",
                            "altText": "${creator.name}",
                            "size": "Small",
                            "style": "Person"
                        }
                    ],
                    "width": "auto"
                },
                {
                    "type": "Column",
                    "items": [
                        {
                            "type": "TextBlock",
                            "text": "${creator.name}",
                            "wrap": true,
                            "weight": "Bolder"
                        },
                        {
                            "type": "TextBlock",
                            "text": "Created {{DATE(${createdUtc},SHORT)}}",
                            "wrap": true,
                            "spacing": "None",
                            "isSubtle": true
                        }
                    ]
                }
            ]
        },
        {
            "type": "TextBlock",
            "text": "${description}",
            "wrap": true
        },
        {
            "type": "FactSet",
            "facts": [
                {
                    "$data": "${properties}",
                    "title": "${key}:",
                    "value": "${value}"
                }
            ]
        }
    ],
    "actions": [
        {
            "type": "Action.ShowCard",
            "title": "Set due date",
            "card": {
                "type": "AdaptiveCard",
                "body": [
                    {
                        "type": "Input.Date",
                        "id": "dueDate"
                    },
                    {
                        "type": "Input.Text",
                        "id": "comment",
                        "placeholder": "Add a comment",
                        "isMultiline": true
                    }
                ],
                "version": "1.6",
                "actions": [
                    {
                        "type": "Action.Submit",
                        "title": "OK",
                        "associatedInputs": "auto"
                    }
                ],
                "$schema": "http://adaptivecards.io/schemas/adaptive-card.json"
            }
        },
        {
            "type": "Action.OpenUrl",
            "title": "View",
            "url": "${viewUrl}"
        }
    ],
    "version": "1.5",
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json"
}

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

adaptive_cards_io-1.3.3.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adaptive_cards_io-1.3.3-py3-none-any.whl (16.4 kB view details)

Uploaded Python 3

File details

Details for the file adaptive_cards_io-1.3.3.tar.gz.

File metadata

  • Download URL: adaptive_cards_io-1.3.3.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for adaptive_cards_io-1.3.3.tar.gz
Algorithm Hash digest
SHA256 43ffb682a1472d1bff9ff38c7c687a017201b1fb2a91f48a524a31f576ce8b81
MD5 c7cfa18e915f5fae5f7142f71770ab0c
BLAKE2b-256 53e03af06efb8da6b3948c4514dfa6738c414f755fec21a7d92951b2ce6fa909

See more details on using hashes here.

File details

Details for the file adaptive_cards_io-1.3.3-py3-none-any.whl.

File metadata

File hashes

Hashes for adaptive_cards_io-1.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 32388a825b3e87fe2c1b69f422533cf7b12c24805f23c210ffe2a79fb3f36d01
MD5 fe8cb8a92e5b0156ff3f052fd5d94eb1
BLAKE2b-256 f3910c74c15d0e08e082c34a55349da3ae321b3c3c2c20245a4c7020e5c6610b

See more details on using hashes here.

Supported by

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