pymsteams-bin


Namepymsteams-bin JSON
Version 0.2.2 PyPI version JSON
download
home_pagehttps://github.com/rveachkc/pymsteams
SummaryFormat messages and post to Microsoft Teams.
upload_time2023-11-23 16:47:55
maintainer
docs_urlNone
authorRyan Veach
requires_python>=3.6
licenseApache
keywords microsoft teams
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pymsteams

[![CircleCI](https://circleci.com/gh/rveachkc/pymsteams/tree/master.svg?style=shield)](https://circleci.com/gh/rveachkc/pymsteams/tree/master) [![PyPI version](https://badge.fury.io/py/pymsteams.svg)](https://badge.fury.io/py/pymsteams)

Python Wrapper Library to send requests to Microsoft Teams Webhooks.
Microsoft refers to these messages as Connector Cards.  A message can be sent with only the main Connector Card, or additional sections can be included into the message.

This library uses Webhook Connectors for Microsoft Teams.  Please visit the following Microsoft Documentation link for instructions on how to obtain the correct url for your Channel: https://dev.outlook.com/Connectors/GetStarted#creating-messages-through-office-365-connectors-in-microsoft-teams

Please refer to the Microsoft Documentation for the most up to date screenshots.
https://dev.outlook.com/connectors/reference

## Installation

Install with pip:

```bash
pip install pymsteams
```

Install with async capabilities (python 3.6+):

```bash
pip install pymsteams[async]
```

#### Python 2 Installation

At time of writing, the latest release supported by Python 2 is [Version 0.1.16](https://github.com/rveachkc/pymsteams/releases/tag/0.1.16)

## Usage

### Creating ConnectorCard Messages

This is the simplest implementation of pymsteams.  It will send a message to the teams webhook url with plain text in the message.

```python
import pymsteams

# You must create the connectorcard object with the Microsoft Webhook URL
myTeamsMessage = pymsteams.connectorcard("<Microsoft Webhook URL>")

# Add text to the message.
myTeamsMessage.text("this is my text")

# send the message.
myTeamsMessage.send()
```

### Creating CreatorCard Messages to send via async loop

```python
import asyncio
import pymsteams

loop = asyncio.get_event_loop()

# the async_connectorcard object is used instead of the normal one.
myTeamsMessage = pymsteams.async_connectorcard("<Microsoft Webhook URL>")

# all formatting for the message should be the same
myTeamsMessage.text("This is my message")

# to send the message, pass to the event loop
loop.run_until_complete(myTeamsMessage.send())
```

Please visit the python asyncio documentation for more info on using asyncio and the event loop: https://docs.python.org/3/library/asyncio-eventloop.html


### Optional Formatting Methods for Cards

#### Add a title
```python
myTeamsMessage.title("This is my message title")
```

#### Add a link button
```python
myTeamsMessage.addLinkButton("This is the button Text", "https://github.com/rveachkc/pymsteams/")
```

#### Change URL
This is useful in the event you need to post the same message to multiple rooms.
```python
myTeamsMessage.newhookurl("<My New URL>")
```

#### Set Color Theme
This sets the theme color of the card. The parameter is expected to be a hex color code without the hash or the string red.
```python
myTeamsMessage.color("<Hex Color Code>")
```

#### Preview your object
This is a simple print command to view your connector card message object before sending.
```python
myTeamsMessage.printme()
```

### Adding sections to the Connector Card Message
To create a section and add various formatting elements
```python
# create the section
myMessageSection = pymsteams.cardsection()

# Section Title
myMessageSection.title("Section title")

# Activity Elements
myMessageSection.activityTitle("my activity title")
myMessageSection.activitySubtitle("my activity subtitle")
myMessageSection.activityImage("http://i.imgur.com/c4jt321l.png")
myMessageSection.activityText("This is my activity Text")

# Facts are key value pairs displayed in a list.
myMessageSection.addFact("this", "is fine")
myMessageSection.addFact("this is", "also fine")

# Section Text
myMessageSection.text("This is my section text")

# Section Images
myMessageSection.addImage("http://i.imgur.com/c4jt321l.png", ititle="This Is Fine")

# Add your section to the connector card object before sending
myTeamsMessage.addSection(myMessageSection)
```
You may also add multiple sections to a connector card message as well.
```python
# Create Section 1
Section1 = pymsteams.cardsection()
Section1.text("My First Section")

# Create Section 2
Section2 = pymsteams.cardsection()
Section2.text("My Second Section")

# Add both Sections to the main card object
myTeamsMessage.addSection(Section1)
myTeamsMessage.addSection(Section2)

# Then send the card
myTeamsMessage.send()
```
### Adding potential actions to the Connector Card Message
To create a actions on which the user can interect with in MS Teams
To find out more information on what actions can be used, please visit https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/connectors/connectors-using#setting-up-a-custom-incoming-webhook

```python
myTeamsMessage = pymsteams.connectorcard("<Microsoft Webhook URL>")

myTeamsPotentialAction1 = pymsteams.potentialaction(_name = "Add a comment")
myTeamsPotentialAction1.addInput("TextInput","comment","Add a comment here",False)
myTeamsPotentialAction1.addAction("HttpPost","Add Comment","https://...") 

myTeamsPotentialAction2 = pymsteams.potentialaction(_name = "Set due date")
myTeamsPotentialAction2.addInput("DateInput","dueDate","Enter due date")
myTeamsPotentialAction2.addAction("HttpPost","save","https://...")

myTeamsPotentialAction3 = pymsteams.potentialaction(_name = "Change Status")
myTeamsPotentialAction3.choices.addChoices("In progress","0")
myTeamsPotentialAction3.choices.addChoices("Active","1")
myTeamsPotentialAction3.addInput("MultichoiceInput","list","Select a status",False)
myTeamsPotentialAction3.addAction("HttpPost","Save","https://...")

myTeamsMessage.addPotentialAction(myTeamsPotentialAction1)
myTeamsMessage.addPotentialAction(myTeamsPotentialAction2)
myTeamsMessage.addPotentialAction(myTeamsPotentialAction3)

myTeamsMessage.summary("Test Message")

myTeamsMessage.send()
```
### Adding HTTP Post to potential actions in the Connector Card Message

```python
myTeamsMessage = pymsteams.connectorcard("<Microsoft Webhook URL>")

myTeamsPotentialAction1 = pymsteams.potentialaction(_name = "Add a comment")
# You can add a TextInput to your potential action like below - Please note the 2nd argment below as the id name
myTeamsPotentialAction1.addInput("TextInput","comment","Add a comment here",False)
# we use the 2nd argument above as the id name to parse the values into the body post like below.
myTeamsPotentialAction1.addAction("HttpPost","Add Comment","https://...", "{{comment.value}}") 
myTeamsMessage.addPotentialAction(myTeamsPotentialAction1)


myTeamsMessage.summary("Test Message")

myTeamsMessage.send()

# Notes:
# If you post anything via teams, you will get some Javascript encoding happening via the post - For example:
# Posting this:  {"name":"john", "comment" : "nice"}
# Output will be:  b'{\\u0022name\\u0022:\\u0022john\\u0022, \\u0022comment\\u0022 : \\u0022nice\\u0022}'
# i solved this issue by decoding unicode escape for a custom rest backend.
```

Please use Github issues to report any bugs or request enhancements.

## Troubleshooting HTTP response

This module is really just a nice wrapper pointed at the Microsoft API. To help troubleshoot missing messages, the requests response content is saved to the connectorcard class attribute `last_http_response`.

To get the last http status code:
```python
import pymsteams

myTeamsMessage = pymsteams.connectorcard("<Microsoft Webhook URL>")
myTeamsMessage.text("this is my text")
myTeamsMessage.send()

last_status_code = myTeamsMessage.last_http_response.status_code
```

More info on the Response Content is available in the requests documentation, [link](https://2.python-requests.org/en/master/user/quickstart/#response-content).

## Exceptions

If the call to the Microsoft Teams webhook service fails, a `TeamsWebhookException` will be thrown.

## Testing

In order to test in your environment with pytest, set the environment variable `MS_TEAMS_WEBHOOK` to the Microsoft Teams Webhook url you would like to use.

Then, from the root of the repo, install the requirements and run pytest.

```bash
pip install -r dev-requirements.txt
MS_TEAMS_WEBHOOK=MicrosoftWebhookURL
export MS_TEAMS_WEBHOOK
pytest --cov=./pymsteams --cov-report=term-missing --cov-branch
```

This will send two MS Teams messages describing how they are formatted.  Manually validate that the message comes through as expected.

## Certificate Validation

In some situations, a custom CA bundle must be used.  This can be set on class initialization, by setting the verify parameter.

```python
import pymsteams

# set custom ca bundle
msg = pymsteams.connectorcard("<Microsoft Webhook URL>", verify="/path/to/file")

# disable CA validation
msg = pymsteams.connectorcard("<Microsoft Webhook URL>", verify=False)
```

Set to either the path of a custom CA bundle or False to disable.

The requests documentation can be referenced for full details: https://2.python-requests.org/en/master/user/advanced/#ssl-cert-verification

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rveachkc/pymsteams",
    "name": "pymsteams-bin",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "Microsoft,Teams",
    "author": "Ryan Veach",
    "author_email": "rveach@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "# pymsteams\r\n\r\n[![CircleCI](https://circleci.com/gh/rveachkc/pymsteams/tree/master.svg?style=shield)](https://circleci.com/gh/rveachkc/pymsteams/tree/master) [![PyPI version](https://badge.fury.io/py/pymsteams.svg)](https://badge.fury.io/py/pymsteams)\r\n\r\nPython Wrapper Library to send requests to Microsoft Teams Webhooks.\r\nMicrosoft refers to these messages as Connector Cards.  A message can be sent with only the main Connector Card, or additional sections can be included into the message.\r\n\r\nThis library uses Webhook Connectors for Microsoft Teams.  Please visit the following Microsoft Documentation link for instructions on how to obtain the correct url for your Channel: https://dev.outlook.com/Connectors/GetStarted#creating-messages-through-office-365-connectors-in-microsoft-teams\r\n\r\nPlease refer to the Microsoft Documentation for the most up to date screenshots.\r\nhttps://dev.outlook.com/connectors/reference\r\n\r\n## Installation\r\n\r\nInstall with pip:\r\n\r\n```bash\r\npip install pymsteams\r\n```\r\n\r\nInstall with async capabilities (python 3.6+):\r\n\r\n```bash\r\npip install pymsteams[async]\r\n```\r\n\r\n#### Python 2 Installation\r\n\r\nAt time of writing, the latest release supported by Python 2 is [Version 0.1.16](https://github.com/rveachkc/pymsteams/releases/tag/0.1.16)\r\n\r\n## Usage\r\n\r\n### Creating ConnectorCard Messages\r\n\r\nThis is the simplest implementation of pymsteams.  It will send a message to the teams webhook url with plain text in the message.\r\n\r\n```python\r\nimport pymsteams\r\n\r\n# You must create the connectorcard object with the Microsoft Webhook URL\r\nmyTeamsMessage = pymsteams.connectorcard(\"<Microsoft Webhook URL>\")\r\n\r\n# Add text to the message.\r\nmyTeamsMessage.text(\"this is my text\")\r\n\r\n# send the message.\r\nmyTeamsMessage.send()\r\n```\r\n\r\n### Creating CreatorCard Messages to send via async loop\r\n\r\n```python\r\nimport asyncio\r\nimport pymsteams\r\n\r\nloop = asyncio.get_event_loop()\r\n\r\n# the async_connectorcard object is used instead of the normal one.\r\nmyTeamsMessage = pymsteams.async_connectorcard(\"<Microsoft Webhook URL>\")\r\n\r\n# all formatting for the message should be the same\r\nmyTeamsMessage.text(\"This is my message\")\r\n\r\n# to send the message, pass to the event loop\r\nloop.run_until_complete(myTeamsMessage.send())\r\n```\r\n\r\nPlease visit the python asyncio documentation for more info on using asyncio and the event loop: https://docs.python.org/3/library/asyncio-eventloop.html\r\n\r\n\r\n### Optional Formatting Methods for Cards\r\n\r\n#### Add a title\r\n```python\r\nmyTeamsMessage.title(\"This is my message title\")\r\n```\r\n\r\n#### Add a link button\r\n```python\r\nmyTeamsMessage.addLinkButton(\"This is the button Text\", \"https://github.com/rveachkc/pymsteams/\")\r\n```\r\n\r\n#### Change URL\r\nThis is useful in the event you need to post the same message to multiple rooms.\r\n```python\r\nmyTeamsMessage.newhookurl(\"<My New URL>\")\r\n```\r\n\r\n#### Set Color Theme\r\nThis sets the theme color of the card. The parameter is expected to be a hex color code without the hash or the string red.\r\n```python\r\nmyTeamsMessage.color(\"<Hex Color Code>\")\r\n```\r\n\r\n#### Preview your object\r\nThis is a simple print command to view your connector card message object before sending.\r\n```python\r\nmyTeamsMessage.printme()\r\n```\r\n\r\n### Adding sections to the Connector Card Message\r\nTo create a section and add various formatting elements\r\n```python\r\n# create the section\r\nmyMessageSection = pymsteams.cardsection()\r\n\r\n# Section Title\r\nmyMessageSection.title(\"Section title\")\r\n\r\n# Activity Elements\r\nmyMessageSection.activityTitle(\"my activity title\")\r\nmyMessageSection.activitySubtitle(\"my activity subtitle\")\r\nmyMessageSection.activityImage(\"http://i.imgur.com/c4jt321l.png\")\r\nmyMessageSection.activityText(\"This is my activity Text\")\r\n\r\n# Facts are key value pairs displayed in a list.\r\nmyMessageSection.addFact(\"this\", \"is fine\")\r\nmyMessageSection.addFact(\"this is\", \"also fine\")\r\n\r\n# Section Text\r\nmyMessageSection.text(\"This is my section text\")\r\n\r\n# Section Images\r\nmyMessageSection.addImage(\"http://i.imgur.com/c4jt321l.png\", ititle=\"This Is Fine\")\r\n\r\n# Add your section to the connector card object before sending\r\nmyTeamsMessage.addSection(myMessageSection)\r\n```\r\nYou may also add multiple sections to a connector card message as well.\r\n```python\r\n# Create Section 1\r\nSection1 = pymsteams.cardsection()\r\nSection1.text(\"My First Section\")\r\n\r\n# Create Section 2\r\nSection2 = pymsteams.cardsection()\r\nSection2.text(\"My Second Section\")\r\n\r\n# Add both Sections to the main card object\r\nmyTeamsMessage.addSection(Section1)\r\nmyTeamsMessage.addSection(Section2)\r\n\r\n# Then send the card\r\nmyTeamsMessage.send()\r\n```\r\n### Adding potential actions to the Connector Card Message\r\nTo create a actions on which the user can interect with in MS Teams\r\nTo find out more information on what actions can be used, please visit https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/connectors/connectors-using#setting-up-a-custom-incoming-webhook\r\n\r\n```python\r\nmyTeamsMessage = pymsteams.connectorcard(\"<Microsoft Webhook URL>\")\r\n\r\nmyTeamsPotentialAction1 = pymsteams.potentialaction(_name = \"Add a comment\")\r\nmyTeamsPotentialAction1.addInput(\"TextInput\",\"comment\",\"Add a comment here\",False)\r\nmyTeamsPotentialAction1.addAction(\"HttpPost\",\"Add Comment\",\"https://...\") \r\n\r\nmyTeamsPotentialAction2 = pymsteams.potentialaction(_name = \"Set due date\")\r\nmyTeamsPotentialAction2.addInput(\"DateInput\",\"dueDate\",\"Enter due date\")\r\nmyTeamsPotentialAction2.addAction(\"HttpPost\",\"save\",\"https://...\")\r\n\r\nmyTeamsPotentialAction3 = pymsteams.potentialaction(_name = \"Change Status\")\r\nmyTeamsPotentialAction3.choices.addChoices(\"In progress\",\"0\")\r\nmyTeamsPotentialAction3.choices.addChoices(\"Active\",\"1\")\r\nmyTeamsPotentialAction3.addInput(\"MultichoiceInput\",\"list\",\"Select a status\",False)\r\nmyTeamsPotentialAction3.addAction(\"HttpPost\",\"Save\",\"https://...\")\r\n\r\nmyTeamsMessage.addPotentialAction(myTeamsPotentialAction1)\r\nmyTeamsMessage.addPotentialAction(myTeamsPotentialAction2)\r\nmyTeamsMessage.addPotentialAction(myTeamsPotentialAction3)\r\n\r\nmyTeamsMessage.summary(\"Test Message\")\r\n\r\nmyTeamsMessage.send()\r\n```\r\n### Adding HTTP Post to potential actions in the Connector Card Message\r\n\r\n```python\r\nmyTeamsMessage = pymsteams.connectorcard(\"<Microsoft Webhook URL>\")\r\n\r\nmyTeamsPotentialAction1 = pymsteams.potentialaction(_name = \"Add a comment\")\r\n# You can add a TextInput to your potential action like below - Please note the 2nd argment below as the id name\r\nmyTeamsPotentialAction1.addInput(\"TextInput\",\"comment\",\"Add a comment here\",False)\r\n# we use the 2nd argument above as the id name to parse the values into the body post like below.\r\nmyTeamsPotentialAction1.addAction(\"HttpPost\",\"Add Comment\",\"https://...\", \"{{comment.value}}\") \r\nmyTeamsMessage.addPotentialAction(myTeamsPotentialAction1)\r\n\r\n\r\nmyTeamsMessage.summary(\"Test Message\")\r\n\r\nmyTeamsMessage.send()\r\n\r\n# Notes:\r\n# If you post anything via teams, you will get some Javascript encoding happening via the post - For example:\r\n# Posting this:  {\"name\":\"john\", \"comment\" : \"nice\"}\r\n# Output will be:  b'{\\\\u0022name\\\\u0022:\\\\u0022john\\\\u0022, \\\\u0022comment\\\\u0022 : \\\\u0022nice\\\\u0022}'\r\n# i solved this issue by decoding unicode escape for a custom rest backend.\r\n```\r\n\r\nPlease use Github issues to report any bugs or request enhancements.\r\n\r\n## Troubleshooting HTTP response\r\n\r\nThis module is really just a nice wrapper pointed at the Microsoft API. To help troubleshoot missing messages, the requests response content is saved to the connectorcard class attribute `last_http_response`.\r\n\r\nTo get the last http status code:\r\n```python\r\nimport pymsteams\r\n\r\nmyTeamsMessage = pymsteams.connectorcard(\"<Microsoft Webhook URL>\")\r\nmyTeamsMessage.text(\"this is my text\")\r\nmyTeamsMessage.send()\r\n\r\nlast_status_code = myTeamsMessage.last_http_response.status_code\r\n```\r\n\r\nMore info on the Response Content is available in the requests documentation, [link](https://2.python-requests.org/en/master/user/quickstart/#response-content).\r\n\r\n## Exceptions\r\n\r\nIf the call to the Microsoft Teams webhook service fails, a `TeamsWebhookException` will be thrown.\r\n\r\n## Testing\r\n\r\nIn order to test in your environment with pytest, set the environment variable `MS_TEAMS_WEBHOOK` to the Microsoft Teams Webhook url you would like to use.\r\n\r\nThen, from the root of the repo, install the requirements and run pytest.\r\n\r\n```bash\r\npip install -r dev-requirements.txt\r\nMS_TEAMS_WEBHOOK=MicrosoftWebhookURL\r\nexport MS_TEAMS_WEBHOOK\r\npytest --cov=./pymsteams --cov-report=term-missing --cov-branch\r\n```\r\n\r\nThis will send two MS Teams messages describing how they are formatted.  Manually validate that the message comes through as expected.\r\n\r\n## Certificate Validation\r\n\r\nIn some situations, a custom CA bundle must be used.  This can be set on class initialization, by setting the verify parameter.\r\n\r\n```python\r\nimport pymsteams\r\n\r\n# set custom ca bundle\r\nmsg = pymsteams.connectorcard(\"<Microsoft Webhook URL>\", verify=\"/path/to/file\")\r\n\r\n# disable CA validation\r\nmsg = pymsteams.connectorcard(\"<Microsoft Webhook URL>\", verify=False)\r\n```\r\n\r\nSet to either the path of a custom CA bundle or False to disable.\r\n\r\nThe requests documentation can be referenced for full details: https://2.python-requests.org/en/master/user/advanced/#ssl-cert-verification\r\n",
    "bugtrack_url": null,
    "license": "Apache",
    "summary": "Format messages and post to Microsoft Teams.",
    "version": "0.2.2",
    "project_urls": {
        "Homepage": "https://github.com/rveachkc/pymsteams"
    },
    "split_keywords": [
        "microsoft",
        "teams"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec0708dce801deaa34f71dbb94173b6bdff4c6492ae47a88871d27dc91f00093",
                "md5": "25ef89ec945be331776542dd57547336",
                "sha256": "c6f334890b27cd3bdd05f12ac072a251ff62a7141a52582075d1a3457e616d3f"
            },
            "downloads": -1,
            "filename": "pymsteams_bin-0.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "25ef89ec945be331776542dd57547336",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 10912,
            "upload_time": "2023-11-23T16:47:55",
            "upload_time_iso_8601": "2023-11-23T16:47:55.988851Z",
            "url": "https://files.pythonhosted.org/packages/ec/07/08dce801deaa34f71dbb94173b6bdff4c6492ae47a88871d27dc91f00093/pymsteams_bin-0.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-23 16:47:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rveachkc",
    "github_project": "pymsteams",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "lcname": "pymsteams-bin"
}
        
Elapsed time: 0.14004s