apache-airflow-providers-sqlite 3.4.1rc1__py3-none-any.whl → 3.4.2__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/sqlite/__init__.py +1 -1
- airflow/providers/sqlite/get_provider_info.py +1 -0
- airflow/providers/sqlite/hooks/sqlite.py +2 -2
- airflow/providers/sqlite/operators/sqlite.py +1 -1
- {apache_airflow_providers_sqlite-3.4.1rc1.dist-info → apache_airflow_providers_sqlite-3.4.2.dist-info}/METADATA +23 -9
- apache_airflow_providers_sqlite-3.4.2.dist-info/RECORD +13 -0
- apache_airflow_providers_sqlite-3.4.1rc1.dist-info/RECORD +0 -13
- {apache_airflow_providers_sqlite-3.4.1rc1.dist-info → apache_airflow_providers_sqlite-3.4.2.dist-info}/LICENSE +0 -0
- {apache_airflow_providers_sqlite-3.4.1rc1.dist-info → apache_airflow_providers_sqlite-3.4.2.dist-info}/NOTICE +0 -0
- {apache_airflow_providers_sqlite-3.4.1rc1.dist-info → apache_airflow_providers_sqlite-3.4.2.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_sqlite-3.4.1rc1.dist-info → apache_airflow_providers_sqlite-3.4.2.dist-info}/entry_points.txt +0 -0
- {apache_airflow_providers_sqlite-3.4.1rc1.dist-info → apache_airflow_providers_sqlite-3.4.2.dist-info}/top_level.txt +0 -0
@@ -33,7 +33,7 @@ class SqliteHook(DbApiHook):
|
|
33
33
|
placeholder = "?"
|
34
34
|
|
35
35
|
def get_conn(self) -> sqlite3.dbapi2.Connection:
|
36
|
-
"""Returns a sqlite connection object"""
|
36
|
+
"""Returns a sqlite connection object."""
|
37
37
|
sqlalchemy_uri = self.get_uri()
|
38
38
|
# The sqlite3 connection does not use the sqlite scheme.
|
39
39
|
# See https://docs.sqlalchemy.org/en/14/dialects/sqlite.html#uri-connections for details.
|
@@ -42,7 +42,7 @@ class SqliteHook(DbApiHook):
|
|
42
42
|
return conn
|
43
43
|
|
44
44
|
def get_uri(self) -> str:
|
45
|
-
"""Override DbApiHook get_uri method for get_sqlalchemy_engine()"""
|
45
|
+
"""Override DbApiHook get_uri method for get_sqlalchemy_engine()."""
|
46
46
|
conn_id = getattr(self, self.conn_name_attr)
|
47
47
|
airflow_conn = self.get_connection(conn_id)
|
48
48
|
if airflow_conn.conn_type is None:
|
@@ -26,7 +26,7 @@ from airflow.providers.common.sql.operators.sql import SQLExecuteQueryOperator
|
|
26
26
|
|
27
27
|
class SqliteOperator(SQLExecuteQueryOperator):
|
28
28
|
"""
|
29
|
-
Executes sql code in a specific Sqlite database
|
29
|
+
Executes sql code in a specific Sqlite database.
|
30
30
|
|
31
31
|
.. seealso::
|
32
32
|
For more information on how to use this operator, take a look at the guide:
|
@@ -1,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: apache-airflow-providers-sqlite
|
3
|
-
Version: 3.4.
|
3
|
+
Version: 3.4.2
|
4
4
|
Summary: Provider for Apache Airflow. Implements apache-airflow-providers-sqlite package
|
5
5
|
Home-page: https://airflow.apache.org/
|
6
6
|
Download-URL: https://archive.apache.org/dist/airflow/providers
|
7
7
|
Author: Apache Software Foundation
|
8
8
|
Author-email: dev@airflow.apache.org
|
9
9
|
License: Apache License 2.0
|
10
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.4.
|
10
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.4.2/
|
11
11
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
12
12
|
Project-URL: Source Code, https://github.com/apache/airflow
|
13
13
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
@@ -21,18 +21,17 @@ Classifier: Intended Audience :: System Administrators
|
|
21
21
|
Classifier: Framework :: Apache Airflow
|
22
22
|
Classifier: Framework :: Apache Airflow :: Provider
|
23
23
|
Classifier: License :: OSI Approved :: Apache Software License
|
24
|
-
Classifier: Programming Language :: Python :: 3.7
|
25
24
|
Classifier: Programming Language :: Python :: 3.8
|
26
25
|
Classifier: Programming Language :: Python :: 3.9
|
27
26
|
Classifier: Programming Language :: Python :: 3.10
|
28
27
|
Classifier: Programming Language :: Python :: 3.11
|
29
28
|
Classifier: Topic :: System :: Monitoring
|
30
|
-
Requires-Python: ~=3.
|
29
|
+
Requires-Python: ~=3.8
|
31
30
|
Description-Content-Type: text/x-rst
|
32
31
|
License-File: LICENSE
|
33
32
|
License-File: NOTICE
|
34
|
-
Requires-Dist: apache-airflow-providers-common-sql (>=1.3.1
|
35
|
-
Requires-Dist: apache-airflow (>=2.4.0
|
33
|
+
Requires-Dist: apache-airflow-providers-common-sql (>=1.3.1)
|
34
|
+
Requires-Dist: apache-airflow (>=2.4.0)
|
36
35
|
Provides-Extra: common.sql
|
37
36
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == 'common.sql'
|
38
37
|
|
@@ -57,7 +56,7 @@ Requires-Dist: apache-airflow-providers-common-sql ; extra == 'common.sql'
|
|
57
56
|
|
58
57
|
Package ``apache-airflow-providers-sqlite``
|
59
58
|
|
60
|
-
Release: ``3.4.
|
59
|
+
Release: ``3.4.2``
|
61
60
|
|
62
61
|
|
63
62
|
`SQLite <https://www.sqlite.org/>`__
|
@@ -70,7 +69,7 @@ This is a provider package for ``sqlite`` provider. All classes for this provide
|
|
70
69
|
are in ``airflow.providers.sqlite`` python package.
|
71
70
|
|
72
71
|
You can find package information and changelog for the provider
|
73
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.4.
|
72
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.4.2/>`_.
|
74
73
|
|
75
74
|
|
76
75
|
Installation
|
@@ -80,7 +79,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
|
|
80
79
|
for the minimum Airflow version supported) via
|
81
80
|
``pip install apache-airflow-providers-sqlite``
|
82
81
|
|
83
|
-
The package supports the following python versions: 3.
|
82
|
+
The package supports the following python versions: 3.8,3.9,3.10,3.11
|
84
83
|
|
85
84
|
Requirements
|
86
85
|
------------
|
@@ -137,6 +136,21 @@ Dependent package
|
|
137
136
|
Changelog
|
138
137
|
---------
|
139
138
|
|
139
|
+
3.4.2
|
140
|
+
.....
|
141
|
+
|
142
|
+
.. note::
|
143
|
+
This release dropped support for Python 3.7
|
144
|
+
|
145
|
+
Misc
|
146
|
+
~~~~
|
147
|
+
|
148
|
+
* ``Add note about dropping Python 3.7 for providers (#32015)``
|
149
|
+
|
150
|
+
.. Below changes are excluded from the changelog. Move them to
|
151
|
+
appropriate section above if needed. Do not delete the lines(!):
|
152
|
+
* ``Add D400 pydocstyle check - Providers (#31427)``
|
153
|
+
|
140
154
|
3.4.1
|
141
155
|
.....
|
142
156
|
|
@@ -0,0 +1,13 @@
|
|
1
|
+
airflow/providers/sqlite/__init__.py,sha256=vmYjyQiN3PZ5m1Kl6vNFFdOqMxuOzncKuagJYkFtwOw,1531
|
2
|
+
airflow/providers/sqlite/get_provider_info.py,sha256=HvMkXf06Z0SCgsKnBcgaLa2U84VzEOUlsxxkHVdDQVc,2626
|
3
|
+
airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
4
|
+
airflow/providers/sqlite/hooks/sqlite.py,sha256=wJ-S6DX0mhf0uiMDCIP-oxhxOBYaCSfL7r1_S_6krOg,2402
|
5
|
+
airflow/providers/sqlite/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
6
|
+
airflow/providers/sqlite/operators/sqlite.py,sha256=RjTL1eqBDEeClr76-R7yHGndeIPZCHjBSm6E6zLldHg,2228
|
7
|
+
apache_airflow_providers_sqlite-3.4.2.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
8
|
+
apache_airflow_providers_sqlite-3.4.2.dist-info/METADATA,sha256=uou797yJAygCiw_aIEpWC4rOq1GF9GevBEsx-62avxM,13585
|
9
|
+
apache_airflow_providers_sqlite-3.4.2.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
|
10
|
+
apache_airflow_providers_sqlite-3.4.2.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
11
|
+
apache_airflow_providers_sqlite-3.4.2.dist-info/entry_points.txt,sha256=9smeDg_SEzaOhSSxtKRpSfm_ADofjjWN2GMa9PBanAc,103
|
12
|
+
apache_airflow_providers_sqlite-3.4.2.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
|
13
|
+
apache_airflow_providers_sqlite-3.4.2.dist-info/RECORD,,
|
@@ -1,13 +0,0 @@
|
|
1
|
-
airflow/providers/sqlite/__init__.py,sha256=6blIAZiy-fTWOxPRMMXPWzv1jgiavIFT4mbcLJuPM1c,1531
|
2
|
-
airflow/providers/sqlite/get_provider_info.py,sha256=b4ZOjiyyXb9QTzpkxmQLMPUT2XXNbktsvlRZfKCD8yk,2605
|
3
|
-
airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
4
|
-
airflow/providers/sqlite/hooks/sqlite.py,sha256=7fB1ayexEETS9qX4f2gfgRE_9B1mJRqAJWW5xtrxBnk,2400
|
5
|
-
airflow/providers/sqlite/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
6
|
-
airflow/providers/sqlite/operators/sqlite.py,sha256=3Kf5QTb6mZDiKS2eHtapSpUMibeK3JK-t_dqwxbZbac,2227
|
7
|
-
apache_airflow_providers_sqlite-3.4.1rc1.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
8
|
-
apache_airflow_providers_sqlite-3.4.1rc1.dist-info/METADATA,sha256=AvRYbHCP4u4W1t_TVF80Vvd274L8AYUzVQ4qy5bp_i0,13321
|
9
|
-
apache_airflow_providers_sqlite-3.4.1rc1.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
|
10
|
-
apache_airflow_providers_sqlite-3.4.1rc1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
11
|
-
apache_airflow_providers_sqlite-3.4.1rc1.dist-info/entry_points.txt,sha256=9smeDg_SEzaOhSSxtKRpSfm_ADofjjWN2GMa9PBanAc,103
|
12
|
-
apache_airflow_providers_sqlite-3.4.1rc1.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
|
13
|
-
apache_airflow_providers_sqlite-3.4.1rc1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|