{ "info": { "author": "Idealista, S.A.U", "author_email": "labs@idealista.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Communications :: Chat", "Topic :: Utilities" ], "description": "![Logo](https://raw.githubusercontent.com/idealista/prom2teams/master/logo.gif)\n\n[![Build Status](https://travis-ci.org/idealista/prom2teams.png)](https://travis-ci.org/idealista/prom2teams) \n[![Docker Build Status](https://img.shields.io/docker/build/idealista/prom2teams.svg)](https://hub.docker.com/r/idealista/prom2teams/) \n[![Docker Automated build](https://img.shields.io/docker/automated/idealista/prom2teams.svg)](https://hub.docker.com/r/idealista/prom2teams/)\n\n# prom2teams\n\n\"Alert\n\n**prom2teams** is a Web server built with Python that receives alert notifications from a previously configured [Prometheus Alertmanager](https://github.com/prometheus/alertmanager) instance and forwards it to [Microsoft Teams](https://teams.microsoft.com/) using defined connectors.\n\n- [Getting Started](#getting-started)\n\t- [Prerequisities](#prerequisites)\n\t- [Installing](#installing)\n- [Usage](#usage)\n - [Config file](#config-file)\n\t- [Configuring Prometheus](#configuring-prometheus)\n\t- [Templating](#templating)\n- [Testing](#testing)\n- [Built With](#built-with)\n- [Versioning](#versioning)\n- [Authors](#authors)\n- [License](#license)\n- [Contributing](#contributing)\n\n## Getting Started\n\n### Prerequisites\n\nThe application has been tested with _Prometheus 2.2.1_, _Python 3.5.0_ and _pip 9.0.1_.\n\nNewer versions of _Prometheus/Python/pip_ should work but could also present issues.\n\n### Installing\n\nprom2teams is present on [PyPI](https://pypi.python.org/pypi/prom2teams), so could be installed using pip3:\n\n```bash\n$ pip3 install prom2teams\n```\n\n**Note:** Works since v1.1.1\n\n## Usage\n\n**Important:** Config path must be provided with at least one Microsoft Teams Connector. Check the options to know how you can supply it.\n\n```bash\n# To start the server (enable metrics, config file path , group alerts by, log file path, log level and Jinja2 template path are optional arguments):\n$ prom2teams [--enablemetrics] [--configpath ] [--groupalertsby (\"name\"|\"description\"|\"instance\"|\"severity\"|\"summary\")] [--logfilepath ] [--loglevel (DEBUG|INFO|WARNING|ERROR|CRITICAL)] [--templatepath ]\n\n# To show the help message:\n$ prom2teams --help\n```\nOther options to start the service are:\n\n```bash\nexport APP_CONFIG_FILE=\n$ prom2teams\n```\n**Note:** Grouping alerts works since v2.2.1\n\n### Prom2teams Prometheus metrics\n\nProm2teams uses Flask and, to have the service monitored, we use @rycus66's [Prometheus Flask Exporter](https://github.com/rycus86/prometheus_flask_exporter). This will enable an endpoint in `/metrics` where you could find interesting metrics to monitor such as number of responses with a certain status. To enable this endpoint, just either:\n\n- Use the `--enablemetrics` or `-m` flag when launching prom2teams.\n- Set the environment variable `PROM2TEAMS_PROMETHEUS_METRICS=true`.\n\n### Helm chart\n\n#### Installing the Chart\n\nTo install the chart with the release name `my-release` run:\n\n```bash\n$ helm install --name my-release /location/of/prom2teams_ROOT/helm\n```\n\nAfter a few seconds, Prom2Teams should be running.\n\n> **Tip**: List all releases using `helm list`, a release is a name used to track a specific deployment\n\n#### Uninstalling the Chart\n\nTo uninstall/delete the `my-release` deployment:\n\n```bash\n$ helm delete my-release\n```\n> **Tip**: Use helm delete --purge my-release to completely remove the release from Helm internal storage\n\nThe command removes all the Kubernetes components associated with the chart and deletes the release.\n\n#### Configuration\n\nThe following table lists the configurable parameters of the Prom2teams chart and their default values.\n\n| Parameter | Description | Default\n| --- | --- | ---\n| `image.repository` | The image repository to pull from | `idealista/prom2teams`\n| `image.tag` | The image tag to pull | `2.4.0`\n| `image.pullPolicy` | The image pull policy | `IfNotPresent`\n| `resources.requests.cpu` | CPU requested for being run in a node | `100m`\n| `resources.requests.memory` | Memory requested for being run in a node | `128Mi`\n| `resources.limits.cpu` | CPU limit | `200m`\n| `resources.limits.memory` | Memory limit | `200Mi`\n| `service.type` | Service Map (NodePort/ClusterIP) | `ClusterIP`\n| `service.port` | Service Port | `8089`\n| `prom2teams.host` | IP to bind to | `0.0.0.0`\n| `prom2teams.port` | Port to bind to | `8089`\n| `prom2teams.connector` | Connector URL | ``\n| `prom2teams.group_alerts_by` | Group_alerts_by field | ``\n| `prom2teams.loglevel` | Loglevel | `INFO`\n| `prom2teams.templatepath` | Custom Template path (files/teams.j2) | `/opt/prom2teams/helmconfig/teams.j2`\n| `prom2teams.config` | Config (specific to Helm) | `/opt/prom2teams/helmconfig/config.ini`\n\n### Docker image\n\nEvery new Prom2teams release, a new Docker image is built in our [Dockerhub](https://hub.docker.com/r/idealista/prom2teams). We strongly recommend you to use the images with the version tag, though it will be possible to use them without it.\n\nThere are two things you need to bear in mind when creating a Prom2teams container:\n\n- The connector URL must be passed as the environment variable `PROM2TEAMS_CONNECTOR`\n- In case you want to group alerts, you need to pass the field as the environment variable `PROM2TEAMS_GROUP_ALERTS_BY`\n- You need to map container's Prom2teams port to one on your host.\n\nSo a sample Docker run command would be:\n\n```bash\n$ docker run -it -d -e PROM2TEAMS_GROUP_ALERTS_BY=FIELD_YOU_WANT_TO_GROUP_BY -e PROM2TEAMS_CONNECTOR=\"CONNECTOR_URL\" -p 8089:8089 idealista/prom2teams:VERSION\n```\n\n#### Provide custom config file\n\nIf you prefer to use your own config file, you just need to provide it as a Docker volume to the container and map it to `/opt/prom2teams/config.ini`. Sample:\n\n```bash\n$ docker run -it -d -v pathToTheLocalConfigFile:/opt/prom2teams/config.ini -p 8089:8089 idealista/prom2teams:VERSION\n```\n\n### Production\n\nFor production environments you should prefer using a WSGI server. [uWSGI](https://uwsgi-docs.readthedocs.io/en/latest/)\ndependency is installed for an easy usage. Some considerations must be taken to use it:\n\nThe binary `prom2teams_uwsgi` launches the app using the uwsgi server. Due to some incompatibilities with [wheel](https://github.com/pypa/wheel)\nyou must install `prom2teams` using `sudo pip install --no-binary :all: prom2teams` (https://github.com/pypa/wheel/issues/92)\n\n```bash\n$ prom2teams_uwsgi \n```\n\nAnd `uwsgi` would look like:\n\n```\n[uwsgi]\nmaster = true\nprocesses = 5\n#socket = 0.0.0.0:8001\n#protocol = http\nsocket = /tmp/prom2teams.sock\nchmod-socket = 777\nvacuum = true\nenv = APP_ENVIRONMENT=pro\nenv = APP_CONFIG_FILE=/etc/default/prom2teams.ini\n```\n\nConsider not provide `chdir` property neither `module` property.\n\nAlso you can set the `module` file, by doing a symbolic link: `sudo mkdir -p /usr/local/etc/prom2teams/ && sudo ln -sf /usr/local/lib/python3.5/dist-packages/usr/local/etc/prom2teams/wsgi.py /usr/local/etc/prom2teams/wsgi.py` (check your dist-packages folder)\n\nAnother approach is to provide yourself the `module` file [module example](bin/wsgi.py) and the `bin` uwsgi call [uwsgi example](bin/prom2teams_uwsgi)\n\n**Note:** default log level is DEBUG. Messages are redirected to stdout. To enable file log, set the env APP_ENVIRONMENT=(pro|pre)\n\n\n### Config file\n\nThe config file is an [INI file](https://docs.python.org/3/library/configparser.html#supported-ini-file-structure) and should have the structure described below:\n\n```\n[Microsoft Teams]\n# At least one connector is required here\nConnector: \nAnotherConnector: \n...\n\n[HTTP Server]\nHost: # default: localhost\nPort: # default: 8089\n\n[Log]\nLevel: # default: DEBUG\nPath: # default: /var/log/prom2teams/prom2teams.log\n\n[Template]\nPath: # default: app resources template\n\n[Group Alerts]\nField: # alerts won't be grouped by default\n\n[Labels]\nExcluded: \n```\n\n**Note:** Grouping alerts works since v2.2.0\n\n### Configuring Prometheus\n\nThe [webhook receiver](https://prometheus.io/docs/alerting/configuration/#) in Prometheus allows configuring a prom2teams server.\n\nThe url is formed by the host and port defined in the previous step.\n\n**Note:** In order to keep compatibility with previous versions, v2.0 keep attending the default connector (\"Connector\") in the endpoint 0.0.0.0:8089. This will be removed in future versions. \n\n```\n// The prom2teams endpoint to send HTTP POST requests to.\nurl: 0.0.0.0:8089/v2/\n```\n\n### Templating\n\nprom2teams provides a [default template](prom2teams/resources/templates/teams.j2) built with [Jinja2](http://jinja.pocoo.org/docs/2.10/) to render messages in Microsoft Teams. This template could be overrided using the 'templatepath' argument ('--templatepath ') during the application start.\n\nSome fields are considered mandatory when received from Alert Manager.\nIf such a field is not included a default value of 'unknown' is assigned.\n\nAll non-mandatory fields and not in excluded list are injected in `extra_labels` key.\n\n#### Swagger UI\n\nAccessing to `:` (e.g. `localhost:8089`) in a web browser shows the API v1 documentation.\n\n\"Swagger\n\nAccessing to `:/v2` (e.g. `localhost:8089/v2`) in a web browser shows the API v2 documentation.\n\n\"Swagger\n\n## Testing\n\nTo run the test suite you should type the following:\n\n```bash\n// After cloning prom2teams :)\n$ python3 -m unittest discover tests\n```\n\n## Built With\n![Python 3.6.2](https://img.shields.io/badge/Python-3.6.2-green.svg)\n![pip 9.0.1](https://img.shields.io/badge/pip-9.0.1-green.svg)\n\n## Versioning\n\nFor the versions available, see the [tags on this repository](https://github.com/idealista/prom2teams/tags).\n\nAdditionaly you can see what change in each version in the [CHANGELOG.md](CHANGELOG.md) file.\n\n## Authors\n\n* **Idealista** - *Work with* - [idealista](https://github.com/idealista)\n\nSee also the list of [contributors](https://github.com/idealista/prom2teams/contributors) who participated in this project.\n\n## License\n\n![Apache 2.0 License](https://img.shields.io/hexpm/l/plug.svg)\n\nThis project is licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license - see the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](.github/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/idealista/prom2teams", "keywords": "microsoft teams prometheus alert", "license": "Apache license 2.0", "maintainer": "", "maintainer_email": "", "name": "prom2teams", "package_url": "https://pypi.org/project/prom2teams/", "platform": "", "project_url": "https://pypi.org/project/prom2teams/", "project_urls": { "Homepage": "https://github.com/idealista/prom2teams" }, "release_url": "https://pypi.org/project/prom2teams/2.5.2/", "requires_dist": null, "requires_python": "", "summary": "Project that redirects Prometheus Alert Manager notifications to Microsoft Teams", "version": "2.5.2" }, "last_serial": 5976059, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "bede9063ec3daa1b6fb18750e87c398f", "sha256": "c78bd61faffcd5e42bb782b8dd2bd60d7ebac3c7524e5e09f2fd732d203510ca" }, "downloads": -1, "filename": "prom2teams-1.0.0.tar.gz", "has_sig": false, "md5_digest": "bede9063ec3daa1b6fb18750e87c398f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13051, "upload_time": "2017-08-23T12:54:57", "url": "https://files.pythonhosted.org/packages/71/3d/d3fd56a7c0444c3a9c6dc312acf40b25a24c29bddf9ec06d2994edf30f69/prom2teams-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "2494add89f53216024fa442f82349279", "sha256": "82673f3703e9cf43b478ad55e686fa1f6551b2cddcdee1dcbbd1bdd66d26d961" }, "downloads": -1, "filename": "prom2teams-1.1.0.tar.gz", "has_sig": false, "md5_digest": "2494add89f53216024fa442f82349279", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14378, "upload_time": "2017-08-28T11:22:55", "url": "https://files.pythonhosted.org/packages/81/bd/7159a6e5f2d7d13597898432e15fc5a44ec4e5bf36d95f9b0f438122df75/prom2teams-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "5215070d53d5f5f02d0552aae3494c9d", "sha256": "32f17ea2f57fa05740929ac067f27d44b911986d69b85771b87db09e3dac7a56" }, "downloads": -1, "filename": "prom2teams-1.1.1.tar.gz", "has_sig": false, "md5_digest": "5215070d53d5f5f02d0552aae3494c9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15892, "upload_time": "2017-08-28T17:39:10", "url": "https://files.pythonhosted.org/packages/86/54/af779a29cc75d1e1129715112892b2b18867d650cb719f3da2e485658036/prom2teams-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "dc56de681dd3f888d4db2f40b4f17360", "sha256": "87081b86dfd327b6258e3b52ae3caf7b1e763ff5701f38f938dadff94e78f387" }, "downloads": -1, "filename": "prom2teams-1.1.2.tar.gz", "has_sig": false, "md5_digest": "dc56de681dd3f888d4db2f40b4f17360", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15282, "upload_time": "2017-08-29T13:20:24", "url": "https://files.pythonhosted.org/packages/7c/c2/7c82d69cc379fb75056f3e26461bc0b2ffb09a42c5b5c2705ac4f2afcda5/prom2teams-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "9f04645af4a27ab3ae31b9fea39f6fbe", "sha256": "d2b2a9ff9e583e3cb0965fba5488a06c8e62861a9cb3f6b7ea50f0393e9b7ee0" }, "downloads": -1, "filename": "prom2teams-1.1.3.tar.gz", "has_sig": false, "md5_digest": "9f04645af4a27ab3ae31b9fea39f6fbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15442, "upload_time": "2017-11-07T12:40:05", "url": "https://files.pythonhosted.org/packages/6f/a3/181a3d513041dfee232013b612f9a1828c788ef57fb6896292d69d2cf9c8/prom2teams-1.1.3.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "8259835b0fd45379ee1ace06339098f2", "sha256": "1f0d71fcfd358f2d580b998b40d02bfa819d877b9b03bffb70394be3a17c53cf" }, "downloads": -1, "filename": "prom2teams-1.2.0.tar.gz", "has_sig": false, "md5_digest": "8259835b0fd45379ee1ace06339098f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15575, "upload_time": "2017-11-08T14:27:43", "url": "https://files.pythonhosted.org/packages/f2/f3/c18bf10960244d083fa7462feea604ec572e4f3ba76df2d1cb2f96d3b87a/prom2teams-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "106bc5fd46cd8f117a900b4c19e10b3b", "sha256": "c9986d2e48d075ab1006e244df2bade32b02b9a18ac16cf1c8820a16b6c176e2" }, "downloads": -1, "filename": "prom2teams-1.3.0.tar.gz", "has_sig": false, "md5_digest": "106bc5fd46cd8f117a900b4c19e10b3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17234, "upload_time": "2018-01-26T09:44:06", "url": "https://files.pythonhosted.org/packages/94/10/5527b2fb8c570cde2f4ef0ac5b36e0522246cb05268dd182801698246e65/prom2teams-1.3.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "32c23a41fd14fa474328518d70cfb8e2", "sha256": "e8532887f4dc15a3ade77df2aad6097f595ad3fc1d9c41f9deaf31c689fcb4eb" }, "downloads": -1, "filename": "prom2teams-2.0.0.tar.gz", "has_sig": false, "md5_digest": "32c23a41fd14fa474328518d70cfb8e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22183, "upload_time": "2018-02-28T16:02:15", "url": "https://files.pythonhosted.org/packages/d4/62/3cbe1b8c2d3e21510c8f531aa85217dffc7fb818b9689898833581577ced/prom2teams-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "a0404af4bdca13f4ec7ab423aa5b72e6", "sha256": "e46f4c5ed97e2d5b6cf1c733b2a48a663792890db4d2afbccfc7464c231dddbf" }, "downloads": -1, "filename": "prom2teams-2.0.1.tar.gz", "has_sig": false, "md5_digest": "a0404af4bdca13f4ec7ab423aa5b72e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23382, "upload_time": "2018-03-05T10:51:13", "url": "https://files.pythonhosted.org/packages/d7/71/71e6039a33cb4b5f2ec506ac0901711a7177d0f37ac5e520ffc8c689bad2/prom2teams-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "6f61b7dafb5c8de4d65f98017fdb0f00", "sha256": "6e65406301960d98d36e1ccb92c2f45ac169f89d855cd23d284cd045d5f03e78" }, "downloads": -1, "filename": "prom2teams-2.0.2.tar.gz", "has_sig": false, "md5_digest": "6f61b7dafb5c8de4d65f98017fdb0f00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24237, "upload_time": "2018-04-09T07:26:22", "url": "https://files.pythonhosted.org/packages/ee/55/03b0c54fa30e94eb901f54a9d84da106c85f8f31457162d3ec30d485cd86/prom2teams-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "52959445634d8d8c4b7b0ad9c856ed36", "sha256": "c599baa676cefdfbb9dc236fbf4fe6faa0fb2618fe2e04416384aaace4104e9f" }, "downloads": -1, "filename": "prom2teams-2.0.3.tar.gz", "has_sig": false, "md5_digest": "52959445634d8d8c4b7b0ad9c856ed36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24174, "upload_time": "2018-04-11T10:28:55", "url": "https://files.pythonhosted.org/packages/3c/83/be7df8a927c0ffbdfc36fd490e428443a0da3d3f82c63334c7de184b6e91/prom2teams-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "aaf1f733c6b8865e1dbd86d4f656eb4f", "sha256": "1c6d3afedc2380c894af95d7ffc720ae0262d9ae7931dff142ace97fabf24c1f" }, "downloads": -1, "filename": "prom2teams-2.0.4.tar.gz", "has_sig": false, "md5_digest": "aaf1f733c6b8865e1dbd86d4f656eb4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24064, "upload_time": "2018-04-17T14:19:10", "url": "https://files.pythonhosted.org/packages/77/51/20c85ef5df1d0eaaaa6723bead46cce98567dc729683e20760af24961af4/prom2teams-2.0.4.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "db0fb61cf10d5cde5af2f94d6eaa3ead", "sha256": "4f5fd7ff8428a74e7c4272f393110a381c4cfa993411ce2b8267c5b2cb671b26" }, "downloads": -1, "filename": "prom2teams-2.1.1.tar.gz", "has_sig": false, "md5_digest": "db0fb61cf10d5cde5af2f94d6eaa3ead", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24071, "upload_time": "2018-05-22T13:03:30", "url": "https://files.pythonhosted.org/packages/90/ce/1a00a5df8f21b2877fb9216bf0d9d16c0b8f644b005df6a49a8eda8bccf8/prom2teams-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "14ebb8b03a09eb1f9a77b498f595fe3f", "sha256": "cfcafffc649fb3244d6e3bb885113a9d81caf2c681e2833e34618d6da7c28df2" }, "downloads": -1, "filename": "prom2teams-2.1.2.tar.gz", "has_sig": false, "md5_digest": "14ebb8b03a09eb1f9a77b498f595fe3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24082, "upload_time": "2018-05-22T15:28:11", "url": "https://files.pythonhosted.org/packages/b3/00/485f0a55e416274fcd0224d3b7c28d2db76fd7ef7f1009ff9cf37ccda39e/prom2teams-2.1.2.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "0200f8df5516f50d066f3403e497203b", "sha256": "25f0e6da7a46f42adab20dc2146ebe597d172ab7194bcf70ffdae9b8323da1c8" }, "downloads": -1, "filename": "prom2teams-2.2.1.tar.gz", "has_sig": false, "md5_digest": "0200f8df5516f50d066f3403e497203b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25031, "upload_time": "2018-09-13T14:29:19", "url": "https://files.pythonhosted.org/packages/57/13/22c86ae0663eebd3555ad89b7cd388121a9f40e07e489b6a5ad1b2d6e072/prom2teams-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "9461713e05bd4a3ab6923a8d3afc53e6", "sha256": "9e685899a05fc1ea8989a20b07f172d6d7ca26470722e75f232d479592320927" }, "downloads": -1, "filename": "prom2teams-2.2.2.tar.gz", "has_sig": false, "md5_digest": "9461713e05bd4a3ab6923a8d3afc53e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25047, "upload_time": "2018-09-24T07:02:15", "url": "https://files.pythonhosted.org/packages/56/6b/3938993b6d31c5b540a543f97c5eba7d1a1901c124010addd1ab9f8749fd/prom2teams-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "0183136b6210d1e35552f5be2e1e9495", "sha256": "92579e67d07da0691b1ff2408aac6d9114442de68518edcc65e9081bec5bb0ec" }, "downloads": -1, "filename": "prom2teams-2.2.3.tar.gz", "has_sig": false, "md5_digest": "0183136b6210d1e35552f5be2e1e9495", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25393, "upload_time": "2018-10-24T08:10:57", "url": "https://files.pythonhosted.org/packages/56/66/05149f8a907a8f5ea3463f0b9f592cd59d2c3cf62861c632b5ffc7c300fd/prom2teams-2.2.3.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "b87e2962c82dfae5416bfa5e3d719545", "sha256": "4e92db9f7252b77266e334fc1554f710c8e17272604e8817ddf879cd3a6f6b98" }, "downloads": -1, "filename": "prom2teams-2.3.0.tar.gz", "has_sig": false, "md5_digest": "b87e2962c82dfae5416bfa5e3d719545", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25436, "upload_time": "2019-02-19T11:25:39", "url": "https://files.pythonhosted.org/packages/19/69/0e75c0ae566cba85e8b070b0d75c35e78d946a33fe74e705f85d2edcef5f/prom2teams-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "64b7be8a0dcf00a0a8d793365de0b998", "sha256": "e5e8765deeef6214f034fa1ca09122f3727970505502fe975c23ac3680d7fd60" }, "downloads": -1, "filename": "prom2teams-2.3.1.tar.gz", "has_sig": false, "md5_digest": "64b7be8a0dcf00a0a8d793365de0b998", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19769, "upload_time": "2019-05-29T11:56:36", "url": "https://files.pythonhosted.org/packages/33/cc/ed35d0fa883c97f3fa8afaf70074e7b1b5946441eb5098db827c7c002a12/prom2teams-2.3.1.tar.gz" } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "330e4a1aa6d18e9399970f0ec22cfdff", "sha256": "73db5b16d3328c2c21337fd125986ddf10d23d50f7e2ee7ee29614809580f602" }, "downloads": -1, "filename": "prom2teams-2.3.2.tar.gz", "has_sig": false, "md5_digest": "330e4a1aa6d18e9399970f0ec22cfdff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19859, "upload_time": "2019-06-11T09:05:09", "url": "https://files.pythonhosted.org/packages/03/2e/b4734d5a242dc72503444413dcdfaed8fca6507afead53dff9ebc8dbe161/prom2teams-2.3.2.tar.gz" } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "b76c63e04b9e4dbbdd48e14c565b963d", "sha256": "dcb64fd06a3cb28710bcf02db11c0c2d39ec0fda836e548484b53831f9d8c696" }, "downloads": -1, "filename": "prom2teams-2.3.3.tar.gz", "has_sig": false, "md5_digest": "b76c63e04b9e4dbbdd48e14c565b963d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19857, "upload_time": "2019-06-12T08:03:15", "url": "https://files.pythonhosted.org/packages/71/aa/9e176a70ec942ef152b95039e07b58b8296879e5e336b33e9d24f00cdeb1/prom2teams-2.3.3.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "d13732125c4e006bb29e4bdce6d4275a", "sha256": "ecb2f13fe59f413ccc2dc854b31cc556d61a3fb13f163017129ceaed4e49b6a8" }, "downloads": -1, "filename": "prom2teams-2.4.0.tar.gz", "has_sig": false, "md5_digest": "d13732125c4e006bb29e4bdce6d4275a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16918, "upload_time": "2019-08-14T09:58:45", "url": "https://files.pythonhosted.org/packages/7e/fd/f1e81baeec824a8dda0b234fa12251fa1ab94f565f51a4c6fd0c43a8fbaf/prom2teams-2.4.0.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "e4b2195f82bf6a748a6a07498d106075", "sha256": "0b095915f80f9d4b2ebf7630b1b304f10a22ef41241934d645310ad2cb78d75d" }, "downloads": -1, "filename": "prom2teams-2.5.0.tar.gz", "has_sig": false, "md5_digest": "e4b2195f82bf6a748a6a07498d106075", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18087, "upload_time": "2019-09-09T07:13:12", "url": "https://files.pythonhosted.org/packages/e0/a3/d946fa118563a8339619ca6dabe020c37fa8ecf2a12eb5a1593ef5ace081/prom2teams-2.5.0.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "866c03edaa504d30821accfcb4e50db8", "sha256": "d4016fddce03ce0f59949e26bd81c86366503a6d141b7b60f633af4a5a1f6183" }, "downloads": -1, "filename": "prom2teams-2.5.1.tar.gz", "has_sig": false, "md5_digest": "866c03edaa504d30821accfcb4e50db8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18091, "upload_time": "2019-09-19T09:16:02", "url": "https://files.pythonhosted.org/packages/76/f8/a6e7f04e30f034d4c09dd024972fca4c85f6d7b5ce6d12c1948ade6aeb06/prom2teams-2.5.1.tar.gz" } ], "2.5.2": [ { "comment_text": "", "digests": { "md5": "b1b449cefedf1a0d9975ce6d9680b891", "sha256": "e070183361a53e2efb9acbb398b3d3c59e77a2647aed0e1b68afc4af3bde5c50" }, "downloads": -1, "filename": "prom2teams-2.5.2.tar.gz", "has_sig": false, "md5_digest": "b1b449cefedf1a0d9975ce6d9680b891", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18503, "upload_time": "2019-10-15T10:16:30", "url": "https://files.pythonhosted.org/packages/29/f8/34cc7114e2cd5a62c453b195bccc7ba4c31f3263c167d454e265779b241f/prom2teams-2.5.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b1b449cefedf1a0d9975ce6d9680b891", "sha256": "e070183361a53e2efb9acbb398b3d3c59e77a2647aed0e1b68afc4af3bde5c50" }, "downloads": -1, "filename": "prom2teams-2.5.2.tar.gz", "has_sig": false, "md5_digest": "b1b449cefedf1a0d9975ce6d9680b891", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18503, "upload_time": "2019-10-15T10:16:30", "url": "https://files.pythonhosted.org/packages/29/f8/34cc7114e2cd5a62c453b195bccc7ba4c31f3263c167d454e265779b241f/prom2teams-2.5.2.tar.gz" } ] }