apache-airflow-providers-telegram 4.2.0__py3-none-any.whl → 4.3.0rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {apache_airflow_providers_telegram-4.2.0.dist-info → airflow/providers/telegram}/LICENSE +52 -0
- airflow/providers/telegram/__init__.py +5 -6
- airflow/providers/telegram/get_provider_info.py +5 -3
- {apache_airflow_providers_telegram-4.2.0.dist-info → apache_airflow_providers_telegram-4.3.0rc1.dist-info}/METADATA +26 -25
- apache_airflow_providers_telegram-4.3.0rc1.dist-info/RECORD +11 -0
- {apache_airflow_providers_telegram-4.2.0.dist-info → apache_airflow_providers_telegram-4.3.0rc1.dist-info}/WHEEL +1 -2
- apache_airflow_providers_telegram-4.3.0rc1.dist-info/entry_points.txt +3 -0
- apache_airflow_providers_telegram-4.2.0.dist-info/NOTICE +0 -6
- apache_airflow_providers_telegram-4.2.0.dist-info/RECORD +0 -13
- apache_airflow_providers_telegram-4.2.0.dist-info/entry_points.txt +0 -2
- apache_airflow_providers_telegram-4.2.0.dist-info/top_level.txt +0 -1
@@ -199,3 +199,55 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
199
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
200
|
See the License for the specific language governing permissions and
|
201
201
|
limitations under the License.
|
202
|
+
|
203
|
+
============================================================================
|
204
|
+
APACHE AIRFLOW SUBCOMPONENTS:
|
205
|
+
|
206
|
+
The Apache Airflow project contains subcomponents with separate copyright
|
207
|
+
notices and license terms. Your use of the source code for the these
|
208
|
+
subcomponents is subject to the terms and conditions of the following
|
209
|
+
licenses.
|
210
|
+
|
211
|
+
|
212
|
+
========================================================================
|
213
|
+
Third party Apache 2.0 licenses
|
214
|
+
========================================================================
|
215
|
+
|
216
|
+
The following components are provided under the Apache 2.0 License.
|
217
|
+
See project link for details. The text of each license is also included
|
218
|
+
at licenses/LICENSE-[project].txt.
|
219
|
+
|
220
|
+
(ALv2 License) hue v4.3.0 (https://github.com/cloudera/hue/)
|
221
|
+
(ALv2 License) jqclock v2.3.0 (https://github.com/JohnRDOrazio/jQuery-Clock-Plugin)
|
222
|
+
(ALv2 License) bootstrap3-typeahead v4.0.2 (https://github.com/bassjobsen/Bootstrap-3-Typeahead)
|
223
|
+
(ALv2 License) connexion v2.7.0 (https://github.com/zalando/connexion)
|
224
|
+
|
225
|
+
========================================================================
|
226
|
+
MIT licenses
|
227
|
+
========================================================================
|
228
|
+
|
229
|
+
The following components are provided under the MIT License. See project link for details.
|
230
|
+
The text of each license is also included at licenses/LICENSE-[project].txt.
|
231
|
+
|
232
|
+
(MIT License) jquery v3.5.1 (https://jquery.org/license/)
|
233
|
+
(MIT License) dagre-d3 v0.6.4 (https://github.com/cpettitt/dagre-d3)
|
234
|
+
(MIT License) bootstrap v3.4.1 (https://github.com/twbs/bootstrap/)
|
235
|
+
(MIT License) d3-tip v0.9.1 (https://github.com/Caged/d3-tip)
|
236
|
+
(MIT License) dataTables v1.10.25 (https://datatables.net)
|
237
|
+
(MIT License) normalize.css v3.0.2 (http://necolas.github.io/normalize.css/)
|
238
|
+
(MIT License) ElasticMock v1.3.2 (https://github.com/vrcmarcos/elasticmock)
|
239
|
+
(MIT License) MomentJS v2.24.0 (http://momentjs.com/)
|
240
|
+
(MIT License) eonasdan-bootstrap-datetimepicker v4.17.49 (https://github.com/eonasdan/bootstrap-datetimepicker/)
|
241
|
+
|
242
|
+
========================================================================
|
243
|
+
BSD 3-Clause licenses
|
244
|
+
========================================================================
|
245
|
+
The following components are provided under the BSD 3-Clause license. See project links for details.
|
246
|
+
The text of each license is also included at licenses/LICENSE-[project].txt.
|
247
|
+
|
248
|
+
(BSD 3 License) d3 v5.16.0 (https://d3js.org)
|
249
|
+
(BSD 3 License) d3-shape v2.1.0 (https://github.com/d3/d3-shape)
|
250
|
+
(BSD 3 License) cgroupspy 0.2.1 (https://github.com/cloudsigma/cgroupspy)
|
251
|
+
|
252
|
+
========================================================================
|
253
|
+
See licenses/LICENSES-ui.txt for packages used in `/airflow/www`
|
@@ -1,4 +1,3 @@
|
|
1
|
-
#
|
2
1
|
# Licensed to the Apache Software Foundation (ASF) under one
|
3
2
|
# or more contributor license agreements. See the NOTICE file
|
4
3
|
# distributed with this work for additional information
|
@@ -19,8 +18,8 @@
|
|
19
18
|
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
20
19
|
# OVERWRITTEN WHEN PREPARING DOCUMENTATION FOR THE PACKAGES.
|
21
20
|
#
|
22
|
-
# IF YOU WANT TO MODIFY
|
23
|
-
# `PROVIDER__INIT__PY_TEMPLATE.py.jinja2` IN the `dev/
|
21
|
+
# IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
22
|
+
# `PROVIDER__INIT__PY_TEMPLATE.py.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
24
23
|
#
|
25
24
|
from __future__ import annotations
|
26
25
|
|
@@ -28,7 +27,7 @@ import packaging.version
|
|
28
27
|
|
29
28
|
__all__ = ["__version__"]
|
30
29
|
|
31
|
-
__version__ = "4.
|
30
|
+
__version__ = "4.3.0"
|
32
31
|
|
33
32
|
try:
|
34
33
|
from airflow import __version__ as airflow_version
|
@@ -36,8 +35,8 @@ except ImportError:
|
|
36
35
|
from airflow.version import version as airflow_version
|
37
36
|
|
38
37
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
39
|
-
"2.
|
38
|
+
"2.6.0"
|
40
39
|
):
|
41
40
|
raise RuntimeError(
|
42
|
-
f"The package `apache-airflow-providers-telegram:{__version__}`
|
41
|
+
f"The package `apache-airflow-providers-telegram:{__version__}` needs Apache Airflow 2.6.0+"
|
43
42
|
)
|
@@ -18,8 +18,8 @@
|
|
18
18
|
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
19
19
|
# OVERWRITTEN WHEN PREPARING PACKAGES.
|
20
20
|
#
|
21
|
-
# IF YOU WANT TO MODIFY
|
22
|
-
# `get_provider_info_TEMPLATE.py.jinja2` IN the `
|
21
|
+
# IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
22
|
+
# `get_provider_info_TEMPLATE.py.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
23
23
|
|
24
24
|
|
25
25
|
def get_provider_info():
|
@@ -28,7 +28,9 @@ def get_provider_info():
|
|
28
28
|
"name": "Telegram",
|
29
29
|
"description": "`Telegram <https://telegram.org/>`__\n",
|
30
30
|
"suspended": False,
|
31
|
+
"source-date-epoch": 1701983425,
|
31
32
|
"versions": [
|
33
|
+
"4.3.0",
|
32
34
|
"4.2.0",
|
33
35
|
"4.1.1",
|
34
36
|
"4.1.0",
|
@@ -45,7 +47,7 @@ def get_provider_info():
|
|
45
47
|
"1.0.1",
|
46
48
|
"1.0.0",
|
47
49
|
],
|
48
|
-
"dependencies": ["apache-airflow>=2.
|
50
|
+
"dependencies": ["apache-airflow>=2.6.0", "python-telegram-bot>=20.0.0"],
|
49
51
|
"integrations": [
|
50
52
|
{
|
51
53
|
"integration-name": "Telegram",
|
@@ -1,19 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: apache-airflow-providers-telegram
|
3
|
-
Version: 4.
|
4
|
-
Summary: Provider
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.2.0/
|
11
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.2.0/changelog.html
|
12
|
-
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
13
|
-
Project-URL: Source Code, https://github.com/apache/airflow
|
14
|
-
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
15
|
-
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
16
|
-
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
3
|
+
Version: 4.3.0rc1
|
4
|
+
Summary: Provider package apache-airflow-providers-telegram for Apache Airflow
|
5
|
+
Keywords: airflow-provider,telegram,airflow,integration
|
6
|
+
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
7
|
+
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
8
|
+
Requires-Python: ~=3.8
|
9
|
+
Description-Content-Type: text/x-rst
|
17
10
|
Classifier: Development Status :: 5 - Production/Stable
|
18
11
|
Classifier: Environment :: Console
|
19
12
|
Classifier: Environment :: Web Environment
|
@@ -27,12 +20,15 @@ Classifier: Programming Language :: Python :: 3.9
|
|
27
20
|
Classifier: Programming Language :: Python :: 3.10
|
28
21
|
Classifier: Programming Language :: Python :: 3.11
|
29
22
|
Classifier: Topic :: System :: Monitoring
|
30
|
-
Requires-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
23
|
+
Requires-Dist: apache-airflow>=2.6.0.dev0
|
24
|
+
Requires-Dist: python-telegram-bot>=20.0.0
|
25
|
+
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
26
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.3.0/changelog.html
|
27
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.3.0
|
28
|
+
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
29
|
+
Project-URL: Source Code, https://github.com/apache/airflow
|
30
|
+
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
31
|
+
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
36
32
|
|
37
33
|
|
38
34
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
@@ -69,10 +65,16 @@ Requires-Dist: python-telegram-bot >=20.0.0
|
|
69
65
|
specific language governing permissions and limitations
|
70
66
|
under the License.
|
71
67
|
|
68
|
+
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
69
|
+
OVERWRITTEN WHEN PREPARING PACKAGES.
|
70
|
+
|
71
|
+
.. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
72
|
+
`PROVIDER_README_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
73
|
+
|
72
74
|
|
73
75
|
Package ``apache-airflow-providers-telegram``
|
74
76
|
|
75
|
-
Release: ``4.
|
77
|
+
Release: ``4.3.0.rc1``
|
76
78
|
|
77
79
|
|
78
80
|
`Telegram <https://telegram.org/>`__
|
@@ -85,8 +87,7 @@ This is a provider package for ``telegram`` provider. All classes for this provi
|
|
85
87
|
are in ``airflow.providers.telegram`` python package.
|
86
88
|
|
87
89
|
You can find package information and changelog for the provider
|
88
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.
|
89
|
-
|
90
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.3.0/>`_.
|
90
91
|
|
91
92
|
Installation
|
92
93
|
------------
|
@@ -103,9 +104,9 @@ Requirements
|
|
103
104
|
======================= ==================
|
104
105
|
PIP package Version required
|
105
106
|
======================= ==================
|
106
|
-
``apache-airflow`` ``>=2.
|
107
|
+
``apache-airflow`` ``>=2.6.0``
|
107
108
|
``python-telegram-bot`` ``>=20.0.0``
|
108
109
|
======================= ==================
|
109
110
|
|
110
111
|
The changelog for the provider package can be found in the
|
111
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.
|
112
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-telegram/4.3.0/changelog.html>`_.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
airflow/providers/telegram/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
2
|
+
airflow/providers/telegram/__init__.py,sha256=ymx10l4stbcXp_ZkcHFc3wIW3HJmssnrYDwfGthvg1A,1583
|
3
|
+
airflow/providers/telegram/get_provider_info.py,sha256=vB69YW1cbQNzBXCqA2dz0sl6_TfdCieVnhx7c5oLpKw,2475
|
4
|
+
airflow/providers/telegram/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
5
|
+
airflow/providers/telegram/hooks/telegram.py,sha256=Fv8iHud4t4benoQXcinf3_4QRcZ2OJQtv0dQMkii8hM,5241
|
6
|
+
airflow/providers/telegram/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
7
|
+
airflow/providers/telegram/operators/telegram.py,sha256=2a3Co15yZEYqMbwECpMlkkjtXxwdlUsrnkPvTEP6as0,3014
|
8
|
+
apache_airflow_providers_telegram-4.3.0rc1.dist-info/entry_points.txt,sha256=QbI_ZGIDTfpx3npCqi0CebJFs_NCjoG8Tn9dGkQDBkE,104
|
9
|
+
apache_airflow_providers_telegram-4.3.0rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
10
|
+
apache_airflow_providers_telegram-4.3.0rc1.dist-info/METADATA,sha256=KFT5Qy6kyyi-SC3lPx_G-Om5vth0h64yiCsrOQzHOyc,4754
|
11
|
+
apache_airflow_providers_telegram-4.3.0rc1.dist-info/RECORD,,
|
@@ -1,13 +0,0 @@
|
|
1
|
-
airflow/providers/telegram/__init__.py,sha256=4qeNCK9FjDkwAzWHJN1SkyU1FG3IlsW8S-u0VkMX__E,1577
|
2
|
-
airflow/providers/telegram/get_provider_info.py,sha256=nlxcrLBuugdGLEpc9juB04pKR3yuugVEkdbUie-ZOL4,2384
|
3
|
-
airflow/providers/telegram/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
4
|
-
airflow/providers/telegram/hooks/telegram.py,sha256=Fv8iHud4t4benoQXcinf3_4QRcZ2OJQtv0dQMkii8hM,5241
|
5
|
-
airflow/providers/telegram/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
6
|
-
airflow/providers/telegram/operators/telegram.py,sha256=2a3Co15yZEYqMbwECpMlkkjtXxwdlUsrnkPvTEP6as0,3014
|
7
|
-
apache_airflow_providers_telegram-4.2.0.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
8
|
-
apache_airflow_providers_telegram-4.2.0.dist-info/METADATA,sha256=KS1mCh53jm8dzCkDMt0JqKmvq6b5hq0JDkfTt7RHn9Q,4528
|
9
|
-
apache_airflow_providers_telegram-4.2.0.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
|
10
|
-
apache_airflow_providers_telegram-4.2.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
11
|
-
apache_airflow_providers_telegram-4.2.0.dist-info/entry_points.txt,sha256=37KRVYToCfK3tB19bFiv_lx9DJRvj3jSNFCC1jbVDis,105
|
12
|
-
apache_airflow_providers_telegram-4.2.0.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
|
13
|
-
apache_airflow_providers_telegram-4.2.0.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
airflow
|