apache-airflow-providers-exasol 3.0.0rc2__tar.gz → 4.9.2rc1__tar.gz

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.

Potentially problematic release.


This version of apache-airflow-providers-exasol might be problematic. Click here for more details.

Files changed (49) hide show
  1. apache_airflow_providers_exasol-4.9.2rc1/NOTICE +5 -0
  2. apache_airflow_providers_exasol-4.9.2rc1/PKG-INFO +135 -0
  3. apache_airflow_providers_exasol-4.9.2rc1/README.rst +94 -0
  4. apache_airflow_providers_exasol-4.9.2rc1/docs/.latest-doc-only-change.txt +1 -0
  5. apache_airflow_providers_exasol-4.9.2rc1/docs/changelog.rst +710 -0
  6. apache_airflow_providers_exasol-4.9.2rc1/docs/commits.rst +35 -0
  7. apache_airflow_providers_exasol-4.9.2rc1/docs/conf.py +27 -0
  8. apache_airflow_providers_exasol-4.9.2rc1/docs/index.rst +136 -0
  9. apache_airflow_providers_exasol-4.9.2rc1/docs/installing-providers-from-sources.rst +18 -0
  10. apache_airflow_providers_exasol-4.9.2rc1/docs/integration-logos/Exasol.png +0 -0
  11. apache_airflow_providers_exasol-4.9.2rc1/docs/operators.rst +79 -0
  12. apache_airflow_providers_exasol-4.9.2rc1/docs/security.rst +18 -0
  13. apache_airflow_providers_exasol-4.9.2rc1/provider.yaml +99 -0
  14. apache_airflow_providers_exasol-4.9.2rc1/pyproject.toml +125 -0
  15. apache-airflow-providers-exasol-3.0.0rc2/pyproject.toml → apache_airflow_providers_exasol-4.9.2rc1/src/airflow/__init__.py +1 -4
  16. apache_airflow_providers_exasol-4.9.2rc1/src/airflow/providers/__init__.py +17 -0
  17. apache-airflow-providers-exasol-3.0.0rc2/setup.py → apache_airflow_providers_exasol-4.9.2rc1/src/airflow/providers/exasol/__init__.py +16 -17
  18. apache_airflow_providers_exasol-4.9.2rc1/src/airflow/providers/exasol/get_provider_info.py +50 -0
  19. apache_airflow_providers_exasol-4.9.2rc1/src/airflow/providers/exasol/hooks/exasol.py +399 -0
  20. {apache-airflow-providers-exasol-3.0.0rc2 → apache_airflow_providers_exasol-4.9.2rc1/src}/airflow/providers/exasol/operators/exasol.py +20 -26
  21. apache_airflow_providers_exasol-4.9.2rc1/tests/conftest.py +19 -0
  22. apache_airflow_providers_exasol-4.9.2rc1/tests/system/__init__.py +17 -0
  23. apache_airflow_providers_exasol-4.9.2rc1/tests/system/exasol/example_exasol.py +91 -0
  24. apache_airflow_providers_exasol-4.9.2rc1/tests/unit/__init__.py +17 -0
  25. apache_airflow_providers_exasol-4.9.2rc1/tests/unit/exasol/__init__.py +17 -0
  26. apache_airflow_providers_exasol-4.9.2rc1/tests/unit/exasol/hooks/__init__.py +17 -0
  27. apache_airflow_providers_exasol-4.9.2rc1/tests/unit/exasol/hooks/test_exasol.py +277 -0
  28. apache_airflow_providers_exasol-4.9.2rc1/tests/unit/exasol/hooks/test_sql.py +297 -0
  29. apache_airflow_providers_exasol-4.9.2rc1/tests/unit/exasol/operators/__init__.py +17 -0
  30. apache_airflow_providers_exasol-4.9.2rc1/tests/unit/exasol/operators/test_exasol.py +60 -0
  31. apache_airflow_providers_exasol-4.9.2rc1/tests/unit/exasol/operators/test_exasol_sql.py +150 -0
  32. apache-airflow-providers-exasol-3.0.0rc2/MANIFEST.in +0 -32
  33. apache-airflow-providers-exasol-3.0.0rc2/NOTICE +0 -6
  34. apache-airflow-providers-exasol-3.0.0rc2/PKG-INFO +0 -247
  35. apache-airflow-providers-exasol-3.0.0rc2/README.rst +0 -211
  36. apache-airflow-providers-exasol-3.0.0rc2/airflow/providers/exasol/get_provider_info.py +0 -63
  37. apache-airflow-providers-exasol-3.0.0rc2/airflow/providers/exasol/hooks/exasol.py +0 -223
  38. apache-airflow-providers-exasol-3.0.0rc2/apache_airflow_providers_exasol.egg-info/PKG-INFO +0 -247
  39. apache-airflow-providers-exasol-3.0.0rc2/apache_airflow_providers_exasol.egg-info/SOURCES.txt +0 -20
  40. apache-airflow-providers-exasol-3.0.0rc2/apache_airflow_providers_exasol.egg-info/dependency_links.txt +0 -1
  41. apache-airflow-providers-exasol-3.0.0rc2/apache_airflow_providers_exasol.egg-info/entry_points.txt +0 -3
  42. apache-airflow-providers-exasol-3.0.0rc2/apache_airflow_providers_exasol.egg-info/not-zip-safe +0 -1
  43. apache-airflow-providers-exasol-3.0.0rc2/apache_airflow_providers_exasol.egg-info/requires.txt +0 -3
  44. apache-airflow-providers-exasol-3.0.0rc2/apache_airflow_providers_exasol.egg-info/top_level.txt +0 -1
  45. apache-airflow-providers-exasol-3.0.0rc2/setup.cfg +0 -63
  46. {apache-airflow-providers-exasol-3.0.0rc2 → apache_airflow_providers_exasol-4.9.2rc1}/LICENSE +0 -0
  47. {apache-airflow-providers-exasol-3.0.0rc2 → apache_airflow_providers_exasol-4.9.2rc1/src}/airflow/providers/exasol/hooks/__init__.py +0 -0
  48. {apache-airflow-providers-exasol-3.0.0rc2 → apache_airflow_providers_exasol-4.9.2rc1/src}/airflow/providers/exasol/operators/__init__.py +0 -0
  49. {apache-airflow-providers-exasol-3.0.0rc2/airflow/providers → apache_airflow_providers_exasol-4.9.2rc1/tests/system}/exasol/__init__.py +0 -0
@@ -0,0 +1,5 @@
1
+ Apache Airflow
2
+ Copyright 2016-2026 The Apache Software Foundation
3
+
4
+ This product includes software developed at
5
+ The Apache Software Foundation (http://www.apache.org/).
@@ -0,0 +1,135 @@
1
+ Metadata-Version: 2.4
2
+ Name: apache-airflow-providers-exasol
3
+ Version: 4.9.2rc1
4
+ Summary: Provider package apache-airflow-providers-exasol for Apache Airflow
5
+ Keywords: airflow-provider,exasol,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.10
9
+ Description-Content-Type: text/x-rst
10
+ License-Expression: Apache-2.0
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Environment :: Console
13
+ Classifier: Environment :: Web Environment
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: System Administrators
16
+ Classifier: Framework :: Apache Airflow
17
+ Classifier: Framework :: Apache Airflow :: Provider
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: System :: Monitoring
23
+ License-File: LICENSE
24
+ License-File: NOTICE
25
+ Requires-Dist: apache-airflow>=2.11.0rc1
26
+ Requires-Dist: apache-airflow-providers-common-compat>=1.12.0rc1
27
+ Requires-Dist: apache-airflow-providers-common-sql>=1.26.0rc1
28
+ Requires-Dist: pyexasol>=0.26.0
29
+ Requires-Dist: pandas>=2.1.2; python_version <"3.13"
30
+ Requires-Dist: pandas>=2.2.3; python_version >="3.13"
31
+ Requires-Dist: sqlalchemy>=1.4.49 ; extra == "sqlalchemy"
32
+ Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
33
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-exasol/4.9.2/changelog.html
34
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-exasol/4.9.2
35
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
36
+ Project-URL: Slack Chat, https://s.apache.org/airflow-slack
37
+ Project-URL: Source Code, https://github.com/apache/airflow
38
+ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
39
+ Provides-Extra: sqlalchemy
40
+
41
+
42
+ .. Licensed to the Apache Software Foundation (ASF) under one
43
+ or more contributor license agreements. See the NOTICE file
44
+ distributed with this work for additional information
45
+ regarding copyright ownership. The ASF licenses this file
46
+ to you under the Apache License, Version 2.0 (the
47
+ "License"); you may not use this file except in compliance
48
+ with the License. You may obtain a copy of the License at
49
+
50
+ .. http://www.apache.org/licenses/LICENSE-2.0
51
+
52
+ .. Unless required by applicable law or agreed to in writing,
53
+ software distributed under the License is distributed on an
54
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
55
+ KIND, either express or implied. See the License for the
56
+ specific language governing permissions and limitations
57
+ under the License.
58
+
59
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
60
+
61
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
62
+ ``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
63
+
64
+ Package ``apache-airflow-providers-exasol``
65
+
66
+ Release: ``4.9.2``
67
+
68
+
69
+ `Exasol <https://www.exasol.com/>`__
70
+
71
+
72
+ Provider package
73
+ ----------------
74
+
75
+ This is a provider package for ``exasol`` provider. All classes for this provider package
76
+ are in ``airflow.providers.exasol`` python package.
77
+
78
+ You can find package information and changelog for the provider
79
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.9.2/>`_.
80
+
81
+ Installation
82
+ ------------
83
+
84
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
85
+ for the minimum Airflow version supported) via
86
+ ``pip install apache-airflow-providers-exasol``
87
+
88
+ The package supports the following python versions: 3.10,3.11,3.12,3.13
89
+
90
+ Requirements
91
+ ------------
92
+
93
+ ========================================== =====================================
94
+ PIP package Version required
95
+ ========================================== =====================================
96
+ ``apache-airflow`` ``>=2.11.0``
97
+ ``apache-airflow-providers-common-compat`` ``>=1.12.0``
98
+ ``apache-airflow-providers-common-sql`` ``>=1.26.0``
99
+ ``pyexasol`` ``>=0.26.0``
100
+ ``pandas`` ``>=2.1.2; python_version < "3.13"``
101
+ ``pandas`` ``>=2.2.3; python_version >= "3.13"``
102
+ ========================================== =====================================
103
+
104
+ Cross provider package dependencies
105
+ -----------------------------------
106
+
107
+ Those are dependencies that might be needed in order to use all the features of the package.
108
+ You need to install the specified providers in order to use them.
109
+
110
+ You can install such cross-provider dependencies when installing from PyPI. For example:
111
+
112
+ .. code-block:: bash
113
+
114
+ pip install apache-airflow-providers-exasol[common.compat]
115
+
116
+
117
+ ================================================================================================================== =================
118
+ Dependent package Extra
119
+ ================================================================================================================== =================
120
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
121
+ `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
122
+ ================================================================================================================== =================
123
+
124
+ Optional dependencies
125
+ ----------------------
126
+
127
+ ============== ======================
128
+ Extra Dependencies
129
+ ============== ======================
130
+ ``sqlalchemy`` ``sqlalchemy>=1.4.49``
131
+ ============== ======================
132
+
133
+ The changelog for the provider package can be found in the
134
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.9.2/changelog.html>`_.
135
+
@@ -0,0 +1,94 @@
1
+
2
+ .. Licensed to the Apache Software Foundation (ASF) under one
3
+ or more contributor license agreements. See the NOTICE file
4
+ distributed with this work for additional information
5
+ regarding copyright ownership. The ASF licenses this file
6
+ to you under the Apache License, Version 2.0 (the
7
+ "License"); you may not use this file except in compliance
8
+ with the License. You may obtain a copy of the License at
9
+
10
+ .. http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ .. Unless required by applicable law or agreed to in writing,
13
+ software distributed under the License is distributed on an
14
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ KIND, either express or implied. See the License for the
16
+ specific language governing permissions and limitations
17
+ under the License.
18
+
19
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
20
+
21
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ ``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
23
+
24
+ Package ``apache-airflow-providers-exasol``
25
+
26
+ Release: ``4.9.2``
27
+
28
+
29
+ `Exasol <https://www.exasol.com/>`__
30
+
31
+
32
+ Provider package
33
+ ----------------
34
+
35
+ This is a provider package for ``exasol`` provider. All classes for this provider package
36
+ are in ``airflow.providers.exasol`` python package.
37
+
38
+ You can find package information and changelog for the provider
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.9.2/>`_.
40
+
41
+ Installation
42
+ ------------
43
+
44
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
45
+ for the minimum Airflow version supported) via
46
+ ``pip install apache-airflow-providers-exasol``
47
+
48
+ The package supports the following python versions: 3.10,3.11,3.12,3.13
49
+
50
+ Requirements
51
+ ------------
52
+
53
+ ========================================== =====================================
54
+ PIP package Version required
55
+ ========================================== =====================================
56
+ ``apache-airflow`` ``>=2.11.0``
57
+ ``apache-airflow-providers-common-compat`` ``>=1.12.0``
58
+ ``apache-airflow-providers-common-sql`` ``>=1.26.0``
59
+ ``pyexasol`` ``>=0.26.0``
60
+ ``pandas`` ``>=2.1.2; python_version < "3.13"``
61
+ ``pandas`` ``>=2.2.3; python_version >= "3.13"``
62
+ ========================================== =====================================
63
+
64
+ Cross provider package dependencies
65
+ -----------------------------------
66
+
67
+ Those are dependencies that might be needed in order to use all the features of the package.
68
+ You need to install the specified providers in order to use them.
69
+
70
+ You can install such cross-provider dependencies when installing from PyPI. For example:
71
+
72
+ .. code-block:: bash
73
+
74
+ pip install apache-airflow-providers-exasol[common.compat]
75
+
76
+
77
+ ================================================================================================================== =================
78
+ Dependent package Extra
79
+ ================================================================================================================== =================
80
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
81
+ `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
82
+ ================================================================================================================== =================
83
+
84
+ Optional dependencies
85
+ ----------------------
86
+
87
+ ============== ======================
88
+ Extra Dependencies
89
+ ============== ======================
90
+ ``sqlalchemy`` ``sqlalchemy>=1.4.49``
91
+ ============== ======================
92
+
93
+ The changelog for the provider package can be found in the
94
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.9.2/changelog.html>`_.
@@ -0,0 +1 @@
1
+ a87cfe8a77459d74f63b7a108913d4f7ab3aa259