Skip to content

Repository files navigation

PyAdaptiveCards

Author adaptive cards in pure python

PyPiReadTheDocsPyUp


Introduction

Adaptive Cards are a great way to extend your bot interactions. However, writing the JSON required to specify the card layout by hand can be cumbersome and error prone. And while using a designer is a good way to manually create cards this does not cover cards that are generated by code. PyAdaptiveCards allows you to author cards in native python without ever touching the underlying json.

A code sample says more then a thousand words so the following code snippet ...

frompyadaptivecards.cardimportAdaptiveCardfrompyadaptivecards.inputsimportText, Numberfrompyadaptivecards.componentsimportTextBlockfrompyadaptivecards.actionsimportSubmitgreeting=TextBlock("Hey hello there! I am a adaptive card")
first_name=Text('first_name', placeholder="First Name")
age=Number('age', placeholder="Age")
submit=Submit(title="Send me!")
card=AdaptiveCard(body=[greeting, first_name, age], actions=[submit])
card_json=card.to_json(pretty=True)
print(card_json)

... produces this json ...

{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"actions": [
{
"title": "Send me!",
"type": "Action.Submit"
}
],
"body": [
{
"text": "Hey hello there! I am a adaptive card",
"type": "TextBlock"
},
{
"id": "first_name",
"placeholder": "First name",
"type": "Input.Text"
},
{
"id": "age",
"placeholder": "Age",
"type": "Input.Number"
}
],
"type": "AdaptiveCard",
"version": "1.1"
}

... which looks like this in Webex Teams ...

screenshot of card in webex teams

Usage with Webex Teams

Below is an example how to use pyadaptivecards with Webex Teams.

Using raw requests

importrequestsimportjsonfrompyadaptivecards.cardimportAdaptiveCardfrompyadaptivecards.inputsimportText, Numberfrompyadaptivecards.componentsimportTextBlockfrompyadaptivecards.actionsimportSubmitauth_token="<INSERT_AUTH_TOKEN_HERE>"headers= {
"Authorization": "Bearer "+auth_token
}
# Create cardgreeting=TextBlock("Hey hello there! I am a adaptive card")
first_name=Text('first_name', placeholder="First Name")
age=Number('age', placeholder="Age")
submit=Submit(title="Send me!")
card=AdaptiveCard(body=[greeting, first_name, age], actions=[submit])
# Create attachmentattachment= {
"contentType": "application/vnd.microsoft.card.adaptive",
"content": card.to_dict()
}
# Create payload for the webrequestpayload= {
"roomId": "<INSERT_YOUR_ROOM_HERE>",
"attachments" : [attachment],
"text": "Fallback Text"
}
response=requests.post("https://api.ciscospark.com/v1/messages", headers=headers, data=payload)

Using the webexteamssdk

The webexteamssdk provides a great wrapper around the Webex Teams API that can be used to interact with the API in native python. The following example shows how to use pyadaptivecards with the newly implemented attachments option.

frompyadaptivecards.cardimportAdaptiveCardfrompyadaptivecards.inputsimportText, Numberfrompyadaptivecards.componentsimportTextBlockfrompyadaptivecards.actionsimportSubmitfromwebexteamssdkimportWebexTeamsAPIgreeting=TextBlock("Hey hello there! I am a adaptive card")
first_name=Text('first_name', placeholder="First Name")
age=Number('age', placeholder="Age")
submit=Submit(title="Send me!")
card=AdaptiveCard(body=[greeting, first_name, age], actions=[submit])
# Create a webex teams api connectionapi=WebexTeamsAPI()
room_id="<INSERT_ROOM_ID_HERE>"# Create a dict that will contain the card as well as some meta informationattachment= {
"contentType": "application/vnd.microsoft.card.adaptive",
"content": card.to_dict(),
}
api.messages.create(roomId=room_id, text="Fallback", attachments=[attachment])

Features

  • Supports all components, options and features of adaptive cards version 1.1
  • Create adaptive cards from pure python

Installation

You can install PyAdaptiveCards using pip by issuing

$ pip install pyadaptivecards

For more information on how to use this package please check the project documentation at https://pyadaptivecards.readthedocs.io.

Authors & Maintainers

Credits

The following resources were influential in the creation of this project:

License

This project is licensed to you under the terms of the Cisco SampleCode License.

About

Author adaptive cards in native python

Resources

Contributing

Stars

31 stars

Watchers

6 watching

Forks

Releases

Packages

Used by

Contributors

Languages