apache-airflow-providers-http 5.6.0__py3-none-any.whl → 5.6.1__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.
- airflow/providers/http/__init__.py +1 -1
- airflow/providers/http/exceptions.py +1 -1
- airflow/providers/http/hooks/http.py +1 -2
- airflow/providers/http/operators/http.py +2 -3
- airflow/providers/http/sensors/http.py +1 -2
- airflow/providers/http/triggers/http.py +1 -1
- {apache_airflow_providers_http-5.6.0.dist-info → apache_airflow_providers_http-5.6.1.dist-info}/METADATA +8 -8
- {apache_airflow_providers_http-5.6.0.dist-info → apache_airflow_providers_http-5.6.1.dist-info}/RECORD +12 -12
- {apache_airflow_providers_http-5.6.0.dist-info → apache_airflow_providers_http-5.6.1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_http-5.6.0.dist-info → apache_airflow_providers_http-5.6.1.dist-info}/entry_points.txt +0 -0
- {apache_airflow_providers_http-5.6.0.dist-info → apache_airflow_providers_http-5.6.1.dist-info}/licenses/LICENSE +0 -0
- {apache_airflow_providers_http-5.6.0.dist-info → apache_airflow_providers_http-5.6.1.dist-info}/licenses/NOTICE +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "5.6.
|
|
32
|
+
__version__ = "5.6.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.11.0"
|
|
@@ -32,8 +32,7 @@ from requests.exceptions import ConnectionError, HTTPError
|
|
|
32
32
|
from requests.models import DEFAULT_REDIRECT_LIMIT
|
|
33
33
|
from requests_toolbelt.adapters.socket_options import TCPKeepAliveAdapter
|
|
34
34
|
|
|
35
|
-
from airflow.
|
|
36
|
-
from airflow.providers.common.compat.sdk import BaseHook
|
|
35
|
+
from airflow.providers.common.compat.sdk import AirflowException, BaseHook
|
|
37
36
|
from airflow.providers.http.exceptions import HttpErrorException, HttpMethodException
|
|
38
37
|
|
|
39
38
|
if TYPE_CHECKING:
|
|
@@ -26,8 +26,7 @@ from aiohttp import BasicAuth
|
|
|
26
26
|
from requests import Response
|
|
27
27
|
|
|
28
28
|
from airflow.configuration import conf
|
|
29
|
-
from airflow.
|
|
30
|
-
from airflow.providers.common.compat.sdk import BaseHook, BaseOperator
|
|
29
|
+
from airflow.providers.common.compat.sdk import AirflowException, BaseHook, BaseOperator
|
|
31
30
|
from airflow.providers.http.triggers.http import HttpTrigger, serialize_auth_type
|
|
32
31
|
from airflow.utils.helpers import merge_dicts
|
|
33
32
|
|
|
@@ -57,7 +56,7 @@ class HttpOperator(BaseOperator):
|
|
|
57
56
|
:param method: The HTTP method to use, default = "POST"
|
|
58
57
|
:param data: The data to pass. POST-data in POST/PUT and params
|
|
59
58
|
in the URL for a GET request. (templated)
|
|
60
|
-
:param headers: The HTTP headers to be added to the
|
|
59
|
+
:param headers: The HTTP headers to be added to the request
|
|
61
60
|
:param pagination_function: A callable that generates the parameters used to call the API again,
|
|
62
61
|
based on the previous response. Typically used when the API is paginated and returns for e.g a
|
|
63
62
|
cursor, a 'next page id', or a 'next page URL'. When provided, the Operator will call the API
|
|
@@ -22,8 +22,7 @@ from datetime import timedelta
|
|
|
22
22
|
from typing import TYPE_CHECKING, Any
|
|
23
23
|
|
|
24
24
|
from airflow.configuration import conf
|
|
25
|
-
from airflow.
|
|
26
|
-
from airflow.providers.common.compat.sdk import BaseSensorOperator
|
|
25
|
+
from airflow.providers.common.compat.sdk import AirflowException, BaseSensorOperator
|
|
27
26
|
from airflow.providers.http.hooks.http import HttpHook
|
|
28
27
|
from airflow.providers.http.triggers.http import HttpSensorTrigger
|
|
29
28
|
|
|
@@ -32,7 +32,7 @@ from asgiref.sync import sync_to_async
|
|
|
32
32
|
from requests.cookies import RequestsCookieJar
|
|
33
33
|
from requests.structures import CaseInsensitiveDict
|
|
34
34
|
|
|
35
|
-
from airflow.
|
|
35
|
+
from airflow.providers.common.compat.sdk import AirflowException
|
|
36
36
|
from airflow.providers.common.compat.version_compat import AIRFLOW_V_3_0_PLUS
|
|
37
37
|
from airflow.providers.http.hooks.http import HttpAsyncHook
|
|
38
38
|
from airflow.triggers.base import BaseTrigger, TriggerEvent
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-http
|
|
3
|
-
Version: 5.6.
|
|
3
|
+
Version: 5.6.1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-http for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,http,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -23,15 +23,15 @@ Classifier: Topic :: System :: Monitoring
|
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
License-File: NOTICE
|
|
25
25
|
Requires-Dist: apache-airflow>=2.11.0
|
|
26
|
-
Requires-Dist: apache-airflow-providers-common-compat>=1.
|
|
26
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.10.1
|
|
27
27
|
Requires-Dist: requests>=2.32.0,<3
|
|
28
28
|
Requires-Dist: requests-toolbelt>=1.0.0
|
|
29
29
|
Requires-Dist: aiohttp>=3.12.14
|
|
30
30
|
Requires-Dist: asgiref>=2.3.0
|
|
31
31
|
Requires-Dist: apache-airflow-providers-common-compat ; extra == "common-compat"
|
|
32
32
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
33
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.
|
|
34
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.
|
|
33
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.1/changelog.html
|
|
34
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.1
|
|
35
35
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
36
36
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
37
37
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -63,7 +63,7 @@ Provides-Extra: common-compat
|
|
|
63
63
|
|
|
64
64
|
Package ``apache-airflow-providers-http``
|
|
65
65
|
|
|
66
|
-
Release: ``5.6.
|
|
66
|
+
Release: ``5.6.1``
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
`Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__
|
|
@@ -76,7 +76,7 @@ This is a provider package for ``http`` provider. All classes for this provider
|
|
|
76
76
|
are in ``airflow.providers.http`` python package.
|
|
77
77
|
|
|
78
78
|
You can find package information and changelog for the provider
|
|
79
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.
|
|
79
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.1/>`_.
|
|
80
80
|
|
|
81
81
|
Installation
|
|
82
82
|
------------
|
|
@@ -94,7 +94,7 @@ Requirements
|
|
|
94
94
|
PIP package Version required
|
|
95
95
|
========================================== ==================
|
|
96
96
|
``apache-airflow`` ``>=2.11.0``
|
|
97
|
-
``apache-airflow-providers-common-compat`` ``>=1.
|
|
97
|
+
``apache-airflow-providers-common-compat`` ``>=1.10.1``
|
|
98
98
|
``requests`` ``>=2.32.0,<3``
|
|
99
99
|
``requests-toolbelt`` ``>=1.0.0``
|
|
100
100
|
``aiohttp`` ``>=3.12.14``
|
|
@@ -130,5 +130,5 @@ Extra Dependencies
|
|
|
130
130
|
================= ==========================================
|
|
131
131
|
|
|
132
132
|
The changelog for the provider package can be found in the
|
|
133
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.
|
|
133
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.1/changelog.html>`_.
|
|
134
134
|
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
airflow/providers/http/__init__.py,sha256=
|
|
2
|
-
airflow/providers/http/exceptions.py,sha256=
|
|
1
|
+
airflow/providers/http/__init__.py,sha256=OtmbI0vNJ1ble1dxSo3-uSy4D73jKsJrVfUyr6T1tFA,1493
|
|
2
|
+
airflow/providers/http/exceptions.py,sha256=0nDulwez-WFRzvL3zRtvQ6s6LXES2unDvZCYlT-l4Ow,1101
|
|
3
3
|
airflow/providers/http/get_provider_info.py,sha256=5_umCW3AGydGe94R8WxDqVf0vvCH_Hmb5ixTg55BMAU,2737
|
|
4
4
|
airflow/providers/http/version_compat.py,sha256=A6a37mMJVpSRlvL7wAMj4VGbFao3-lnRXMgnU3F3nLE,1676
|
|
5
5
|
airflow/providers/http/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
6
|
-
airflow/providers/http/hooks/http.py,sha256=
|
|
6
|
+
airflow/providers/http/hooks/http.py,sha256=7jELtOMx2C1h_-hNIxNaCLKvc6zOQs7QcDU-p-Cqs_s,22555
|
|
7
7
|
airflow/providers/http/notifications/__init__.py,sha256=ltUs93oQlBbs3jPsNsZTWvy3IfuyKDSgp2N56AiVTys,883
|
|
8
8
|
airflow/providers/http/notifications/http.py,sha256=WB16Qdb48QSLH96-mO7hRtNrVX2H5JuYwj477IbyvYE,3812
|
|
9
9
|
airflow/providers/http/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
10
|
-
airflow/providers/http/operators/http.py,sha256=
|
|
10
|
+
airflow/providers/http/operators/http.py,sha256=GWK2CB6H69c2ULbIQyDSgYcQA1PNNXITy5XwEXhd9BE,15502
|
|
11
11
|
airflow/providers/http/sensors/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
12
|
-
airflow/providers/http/sensors/http.py,sha256=
|
|
12
|
+
airflow/providers/http/sensors/http.py,sha256=GYq_a6_jEKYwQrgtqzWdXZAnDG7GBY2w4lUtks5CSiA,8533
|
|
13
13
|
airflow/providers/http/triggers/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
14
|
-
airflow/providers/http/triggers/http.py,sha256=
|
|
15
|
-
apache_airflow_providers_http-5.6.
|
|
16
|
-
apache_airflow_providers_http-5.6.
|
|
17
|
-
apache_airflow_providers_http-5.6.
|
|
18
|
-
apache_airflow_providers_http-5.6.
|
|
19
|
-
apache_airflow_providers_http-5.6.
|
|
20
|
-
apache_airflow_providers_http-5.6.
|
|
14
|
+
airflow/providers/http/triggers/http.py,sha256=pzf-Uj1QKUDBFhXJaBkRJFi7lW-So2-_ePDhGvexaXQ,13041
|
|
15
|
+
apache_airflow_providers_http-5.6.1.dist-info/entry_points.txt,sha256=65Rk4MYlxxtwo7y7-uNv4KS7MfoBnILhMjRQmNbRo1Q,100
|
|
16
|
+
apache_airflow_providers_http-5.6.1.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
17
|
+
apache_airflow_providers_http-5.6.1.dist-info/licenses/NOTICE,sha256=E3-_E02gwwSEFzeeWPKmnIjOoos3hW28CLISV6sYrbQ,168
|
|
18
|
+
apache_airflow_providers_http-5.6.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
19
|
+
apache_airflow_providers_http-5.6.1.dist-info/METADATA,sha256=fLNzn1OW2CZDiC-nZ4OHJ5u_ib_hgWBtFIPQKITdeNI,5912
|
|
20
|
+
apache_airflow_providers_http-5.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|