notifiers
notifiers copied to clipboard
The easy way to send notifications
updates: - [github.com/pre-commit/pre-commit-hooks: v4.3.0 → v5.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.3.0...v5.0.0) - [github.com/psf/black: 22.6.0 → 24.10.0](https://github.com/psf/black/compare/22.6.0...24.10.0) - https://github.com/asottile/reorder_python_imports → https://github.com/asottile/reorder-python-imports - [github.com/asottile/reorder-python-imports: v3.8.1 → v3.14.0](https://github.com/asottile/reorder-python-imports/compare/v3.8.1...v3.14.0) - [github.com/pycqa/flake8: 4.0.1 → 7.1.1](https://github.com/pycqa/flake8/compare/4.0.1...7.1.1)
Bumps [jsonschema](https://github.com/python-jsonschema/jsonschema) from 4.4.0 to 4.8.0. Release notes Sourced from jsonschema's releases. v4.8.0 Full Changelog: https://github.com/python-jsonschema/jsonschema/compare/v4.7.2...v4.8.0 v4.7.2 Full Changelog: https://github.com/python-jsonschema/jsonschema/compare/v4.7.1...v4.7.2 v4.7.1 Full Changelog: https://github.com/python-jsonschema/jsonschema/compare/v4.7.0...v4.7.1 v4.7.0 What's Changed Enhance best match...
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 5.0.2 to 5.1.0. Release notes Sourced from sphinx's releases. v5.1.0 Changelog: https://www.sphinx-doc.org/en/master/changes.html Changelog Sourced from sphinx's changelog. Release 5.1.0 (released Jul 24, 2022) Dependencies #10656: Support Docutils...
### Added [DingTalk Robot](https://open.dingtalk.com/document/group/custom-robot-access) provider support
- Some README tweaks - Packaging cleanup - Fix codecov integration #452
Bumps [requests](https://github.com/psf/requests) from 2.27.1 to 2.28.1. Release notes Sourced from requests's releases. v2.28.1 2.28.1 (2022-06-29) Improvements Speed optimization in iter_content with transition to yield from. (#6170) Dependencies Added support for...
**Is your feature request related to a problem? Please describe.** After a while, the SMTP connection in the (g)mail provider is disconnected for some reason (network interrupted, etc). Any log...
Option to edit a message for supported providers (e.g. slack, telegram, etc.) **solution proposed** ```python msg = notifiers.get_notifier('telegram').notify(message='Hi!', token='TOKEN', chat_id=1234) ... msg.edit(message='hello?') ``` **alternatives**: - sending multiple messages/replies - using...
This is related to the Telegram provider's `notify(... parse_mode='html'|'markdown')` parameter, defined as: ``` parse_mode: enum: - markdown - html title: Send Markdown or HTML, if you want Telegram apps to...