apache-airflow-providers-standard 0.0.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.
Potentially problematic release.
This version of apache-airflow-providers-standard might be problematic. Click here for more details.
- airflow/providers/standard/LICENSE +253 -0
- airflow/providers/standard/__init__.py +39 -0
- airflow/providers/standard/get_provider_info.py +95 -0
- airflow/providers/standard/hooks/__init__.py +16 -0
- airflow/providers/standard/hooks/filesystem.py +89 -0
- airflow/providers/standard/hooks/package_index.py +95 -0
- airflow/providers/standard/hooks/subprocess.py +119 -0
- airflow/providers/standard/operators/__init__.py +16 -0
- airflow/providers/standard/operators/bash.py +304 -0
- airflow/providers/standard/operators/datetime.py +110 -0
- airflow/providers/standard/operators/generic_transfer.py +133 -0
- airflow/providers/standard/operators/python.py +1172 -0
- airflow/providers/standard/operators/weekday.py +120 -0
- airflow/providers/standard/sensors/__init__.py +16 -0
- airflow/providers/standard/sensors/bash.py +114 -0
- airflow/providers/standard/sensors/date_time.py +152 -0
- airflow/providers/standard/sensors/python.py +80 -0
- airflow/providers/standard/sensors/time.py +130 -0
- airflow/providers/standard/sensors/time_delta.py +134 -0
- airflow/providers/standard/sensors/weekday.py +104 -0
- airflow/providers/standard/utils/__init__.py +16 -0
- airflow/providers/standard/utils/python_virtualenv.py +209 -0
- airflow/providers/standard/utils/python_virtualenv_script.jinja2 +101 -0
- airflow/providers/standard/utils/version_references.py +26 -0
- apache_airflow_providers_standard-0.0.1.dist-info/METADATA +112 -0
- apache_airflow_providers_standard-0.0.1.dist-info/RECORD +28 -0
- apache_airflow_providers_standard-0.0.1.dist-info/WHEEL +4 -0
- apache_airflow_providers_standard-0.0.1.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: apache-airflow-providers-standard
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Provider package apache-airflow-providers-standard for Apache Airflow
|
|
5
|
+
Keywords: airflow-provider,standard,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.9
|
|
9
|
+
Description-Content-Type: text/x-rst
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Environment :: Web Environment
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: System Administrators
|
|
15
|
+
Classifier: Framework :: Apache Airflow
|
|
16
|
+
Classifier: Framework :: Apache Airflow :: Provider
|
|
17
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Topic :: System :: Monitoring
|
|
23
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
|
|
24
|
+
Requires-Dist: apache-airflow>=2.8.0
|
|
25
|
+
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
26
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-standard/0.0.1/changelog.html
|
|
27
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-standard/0.0.1
|
|
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/
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
35
|
+
or more contributor license agreements. See the NOTICE file
|
|
36
|
+
distributed with this work for additional information
|
|
37
|
+
regarding copyright ownership. The ASF licenses this file
|
|
38
|
+
to you under the Apache License, Version 2.0 (the
|
|
39
|
+
"License"); you may not use this file except in compliance
|
|
40
|
+
with the License. You may obtain a copy of the License at
|
|
41
|
+
|
|
42
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
43
|
+
|
|
44
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
45
|
+
software distributed under the License is distributed on an
|
|
46
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
47
|
+
KIND, either express or implied. See the License for the
|
|
48
|
+
specific language governing permissions and limitations
|
|
49
|
+
under the License.
|
|
50
|
+
|
|
51
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
52
|
+
or more contributor license agreements. See the NOTICE file
|
|
53
|
+
distributed with this work for additional information
|
|
54
|
+
regarding copyright ownership. The ASF licenses this file
|
|
55
|
+
to you under the Apache License, Version 2.0 (the
|
|
56
|
+
"License"); you may not use this file except in compliance
|
|
57
|
+
with the License. You may obtain a copy of the License at
|
|
58
|
+
|
|
59
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
60
|
+
|
|
61
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
62
|
+
software distributed under the License is distributed on an
|
|
63
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
64
|
+
KIND, either express or implied. See the License for the
|
|
65
|
+
specific language governing permissions and limitations
|
|
66
|
+
under the License.
|
|
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
|
+
|
|
74
|
+
|
|
75
|
+
Package ``apache-airflow-providers-standard``
|
|
76
|
+
|
|
77
|
+
Release: ``0.0.1``
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
Airflow Standard Provider
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
Provider package
|
|
84
|
+
----------------
|
|
85
|
+
|
|
86
|
+
This is a provider package for ``standard`` provider. All classes for this provider package
|
|
87
|
+
are in ``airflow.providers.standard`` python package.
|
|
88
|
+
|
|
89
|
+
You can find package information and changelog for the provider
|
|
90
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.0.1/>`_.
|
|
91
|
+
|
|
92
|
+
Installation
|
|
93
|
+
------------
|
|
94
|
+
|
|
95
|
+
You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
|
|
96
|
+
for the minimum Airflow version supported) via
|
|
97
|
+
``pip install apache-airflow-providers-standard``
|
|
98
|
+
|
|
99
|
+
The package supports the following python versions: 3.9,3.10,3.11,3.12
|
|
100
|
+
|
|
101
|
+
Requirements
|
|
102
|
+
------------
|
|
103
|
+
|
|
104
|
+
======================================= ==================
|
|
105
|
+
PIP package Version required
|
|
106
|
+
======================================= ==================
|
|
107
|
+
``apache-airflow`` ``>=2.8.0``
|
|
108
|
+
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
|
109
|
+
======================================= ==================
|
|
110
|
+
|
|
111
|
+
The changelog for the provider package can be found in the
|
|
112
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-standard/0.0.1/changelog.html>`_.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
airflow/providers/standard/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
|
2
|
+
airflow/providers/standard/__init__.py,sha256=OEhrQnhJMzOX1WvAZQPlXAEAfVco-55lw8voEe-x47w,1495
|
|
3
|
+
airflow/providers/standard/get_provider_info.py,sha256=8CFrRtQJetNh97vyGFqLlcIFRiDsbXmUAymiv7R-E8w,4215
|
|
4
|
+
airflow/providers/standard/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
5
|
+
airflow/providers/standard/hooks/filesystem.py,sha256=fDZwW_EYD8z1QXnReqI7gIwSbDPZNTKtqQvgktiP02o,2870
|
|
6
|
+
airflow/providers/standard/hooks/package_index.py,sha256=U7_s_02-wwz9kTkzKr3JAhVQj2spuntWd_GmjfpV-y4,3769
|
|
7
|
+
airflow/providers/standard/hooks/subprocess.py,sha256=43tVi3bhmdJ_zowxYYuooJzJdp4Vw2jrz6R6L6g4Q0s,4911
|
|
8
|
+
airflow/providers/standard/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
9
|
+
airflow/providers/standard/operators/bash.py,sha256=fK0S14O_cDpDUgMT4-X9uLl_voJKeWWmLYBQxyxq4KA,13415
|
|
10
|
+
airflow/providers/standard/operators/datetime.py,sha256=nk0gwO_H8vIIu8ztA4zryWqZeoSokfINTu4o2vPUcPc,4562
|
|
11
|
+
airflow/providers/standard/operators/generic_transfer.py,sha256=zdY9-8UDDG3YUwvEjfH4Nxe7KaAoXUtZtoWnnadD04s,5058
|
|
12
|
+
airflow/providers/standard/operators/python.py,sha256=-1aLnyCJp_GoH7JVJxg62IRGt69aqPcAgmf-p7D-io8,51929
|
|
13
|
+
airflow/providers/standard/operators/weekday.py,sha256=u1tkO_04IGeshL17NhC6G7lIYLhgDnZjNrIKyAfd4b4,4614
|
|
14
|
+
airflow/providers/standard/sensors/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
15
|
+
airflow/providers/standard/sensors/bash.py,sha256=Gyi8zMwSESPyanlG9jbN9u-an6Vj33s7lTlmjWmjgSA,4821
|
|
16
|
+
airflow/providers/standard/sensors/date_time.py,sha256=t6EDZBFSsUuhNPxD9R7N9ZP6HOxw2aBTirtpUiilQl8,5864
|
|
17
|
+
airflow/providers/standard/sensors/python.py,sha256=0JoExKvQOJKKQlTEOXztg17UC5bpZDyIjQUeATV13LE,3216
|
|
18
|
+
airflow/providers/standard/sensors/time.py,sha256=kknnhVx-Ff3lRljY7jBEDc9EKEkwXkCf3m7KRm8BU_8,4817
|
|
19
|
+
airflow/providers/standard/sensors/time_delta.py,sha256=b9U15IpJ2yFoJMNKLJ6FcMvuijf_jMqmMPI733rfI_o,4957
|
|
20
|
+
airflow/providers/standard/sensors/weekday.py,sha256=PMg0eoGuD0xNLSJIBY9C1Y0aqSZn6PkQ_j_eYo7lnks,3695
|
|
21
|
+
airflow/providers/standard/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
22
|
+
airflow/providers/standard/utils/python_virtualenv.py,sha256=FR3241l5Obuo2BBwwBs-s87pRpCLyJnh3sUtHxrgRuM,7759
|
|
23
|
+
airflow/providers/standard/utils/python_virtualenv_script.jinja2,sha256=xipJ3A8yuJBQxdOZba3NLzM9KP07TeFg-2z1GBB1Bmc,3268
|
|
24
|
+
airflow/providers/standard/utils/version_references.py,sha256=_AxsWDE9afM-lkY2LzTLHy6qNqrTv5q_tqgRb1zS1Mo,1117
|
|
25
|
+
apache_airflow_providers_standard-0.0.1.dist-info/entry_points.txt,sha256=mW2YRh3mVdZdaP5-iGSNgmcCh3YYdALIn28BCLBZZ40,104
|
|
26
|
+
apache_airflow_providers_standard-0.0.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
27
|
+
apache_airflow_providers_standard-0.0.1.dist-info/METADATA,sha256=Faaif2vPTKks-xXd6GybBo9QIlGSPi2HdkmCc3z_HoY,4845
|
|
28
|
+
apache_airflow_providers_standard-0.0.1.dist-info/RECORD,,
|