execsql2 1.130.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.
@@ -0,0 +1,418 @@
1
+ Metadata-Version: 2.4
2
+ Name: execsql2
3
+ Version: 1.130.1
4
+ Summary: Runs a SQL script against a PostgreSQL, SQLite, MariaDB/MySQL, DuckDB, Firebird, MS-Access, MS-SQL-Server, or Oracle database, or an ODBC DSN. Provides metacommands to import and export data, copy data between databases, conditionally execute SQL and metacommands, and dynamically alter SQL and metacommands with substitution variables.
5
+ Project-URL: Repository, https://github.com/geocoug/execsql
6
+ Project-URL: Issues, https://github.com/geocoug/execsql/issues
7
+ Author-email: Dreas Nielsen <cortice@tutanota.com>
8
+ Maintainer-email: Caleb Grant <grantcaleb22@gmail.com>
9
+ License: execsql2 — a fork of execsql.py
10
+ Copyright (c) 2007-2025 R.Dreas Nielsen
11
+ Copyright (c) 2026-present Caleb Grant
12
+
13
+ This program is free software: you can redistribute it and/or modify it under
14
+ the terms of the GNU General Public License as published by the Free Software
15
+ Foundation, either version 3 of the License, or (at your option) any later
16
+ version. This program is distributed in the hope that it will be useful, but
17
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
19
+ details. The GNU General Public License is available at
20
+ http://www.gnu.org/licenses/.
21
+ License-File: LICENSE.txt
22
+ License-File: NOTICE
23
+ Keywords: Access,CSV,DBMS,DuckDB,ETL,Firebird,HTML,JSON,LaTeX,MariaDB,MySQL,ODBC,OpenDocument,Oracle,PostgreSQL,Postgres,SQL,SQL Server,SQLite,TSV,XML,database,export,import,query,script,table
24
+ Classifier: Development Status :: 5 - Production/Stable
25
+ Classifier: Environment :: Console
26
+ Classifier: Intended Audience :: End Users/Desktop
27
+ Classifier: Intended Audience :: Information Technology
28
+ Classifier: Intended Audience :: System Administrators
29
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
30
+ Classifier: Natural Language :: English
31
+ Classifier: Operating System :: OS Independent
32
+ Classifier: Programming Language :: Python :: 3
33
+ Classifier: Programming Language :: Python :: 3.8
34
+ Classifier: Programming Language :: Python :: 3.9
35
+ Classifier: Programming Language :: Python :: 3.10
36
+ Classifier: Programming Language :: Python :: 3.11
37
+ Classifier: Programming Language :: Python :: 3.12
38
+ Classifier: Programming Language :: Python :: 3.13
39
+ Classifier: Topic :: Database
40
+ Classifier: Topic :: Database :: Front-Ends
41
+ Requires-Python: >=3.8
42
+ Provides-Extra: all
43
+ Requires-Dist: duckdb; extra == 'all'
44
+ Requires-Dist: jinja2; extra == 'all'
45
+ Requires-Dist: odfpy; extra == 'all'
46
+ Requires-Dist: openpyxl; extra == 'all'
47
+ Requires-Dist: psycopg2-binary; extra == 'all'
48
+ Requires-Dist: pymysql; extra == 'all'
49
+ Requires-Dist: pyodbc; extra == 'all'
50
+ Requires-Dist: xlrd; extra == 'all'
51
+ Provides-Extra: dev
52
+ Requires-Dist: build>=1.2.2.post1; extra == 'dev'
53
+ Requires-Dist: bump-my-version>=1.2.7; extra == 'dev'
54
+ Requires-Dist: markdown-include>=0.8; extra == 'dev'
55
+ Requires-Dist: mkdocs-material>=9.5; extra == 'dev'
56
+ Requires-Dist: mkdocs>=1.6; extra == 'dev'
57
+ Requires-Dist: mkdocstrings[python]>=0.25; extra == 'dev'
58
+ Requires-Dist: pre-commit>=3.5.0; extra == 'dev'
59
+ Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
60
+ Requires-Dist: ruff>=0.4; extra == 'dev'
61
+ Requires-Dist: tox-uv>=1.13.1; extra == 'dev'
62
+ Requires-Dist: twine>=6.1.0; extra == 'dev'
63
+ Provides-Extra: duckdb
64
+ Requires-Dist: duckdb; extra == 'duckdb'
65
+ Provides-Extra: excel
66
+ Requires-Dist: openpyxl; extra == 'excel'
67
+ Requires-Dist: xlrd; extra == 'excel'
68
+ Provides-Extra: firebird
69
+ Requires-Dist: firebird-driver; extra == 'firebird'
70
+ Provides-Extra: jinja
71
+ Requires-Dist: jinja2; extra == 'jinja'
72
+ Provides-Extra: mssql
73
+ Requires-Dist: pyodbc; extra == 'mssql'
74
+ Provides-Extra: mysql
75
+ Requires-Dist: pymysql; extra == 'mysql'
76
+ Provides-Extra: odbc
77
+ Requires-Dist: pyodbc; extra == 'odbc'
78
+ Provides-Extra: ods
79
+ Requires-Dist: odfpy; extra == 'ods'
80
+ Provides-Extra: oracle
81
+ Requires-Dist: oracledb; extra == 'oracle'
82
+ Provides-Extra: postgres
83
+ Requires-Dist: psycopg2-binary; extra == 'postgres'
84
+ Description-Content-Type: text/markdown
85
+
86
+ ![execsql logo](https://execsql.readthedocs.io/en/latest/_images/execsql_logo_01.png) *Multi-DBMS SQL script processor.*
87
+ *execsql.py* is a Python program that runs a SQL script stored in a text file
88
+ against a PostgreSQL, MS-Access, SQLite, DuckDB, MS-SQL-Server, MySQL, MariaDB,
89
+ Firebird, or Oracle database, or an ODBC DSN. *execsql* also supports a
90
+ set of special commands (metacommands) that can import and export data,
91
+ copy data between databases, and conditionally execute SQL statements and metacommands.
92
+ These metacommands make up a control language that works the same across
93
+ all supported database management systems (DBMSs). The metacommands are
94
+ embedded in SQL comments, so they will be ignored by other script
95
+ processors (e.g., *psql* for Postgres and *sqlcmd* for SQL Server). The
96
+ metacommands make up a toolbox that can be used to create both automated
97
+ and interactive data processing applications.
98
+
99
+ The program's features and requirements are summarized below.
100
+ Complete documentation is available at
101
+ [https://execsql.readthedocs.io/](https://execsql.readthedocs.io/).
102
+
103
+ [![Downloads](https://pepy.tech/badge/execsql)](https://pypi.org/project/execsql/)
104
+ [![Downloads](https://pepy.tech/badge/execsql/month)](https://pepy.tech/project/execsql/)
105
+
106
+
107
+ Capabilities
108
+ =========================
109
+
110
+ You can use *execsql* to:
111
+
112
+ * Import data from text files or spreadsheets into
113
+ a database.
114
+ * Copy data between different databases, even databases using different
115
+ types of DBMSs.
116
+ * Export tables and views as formatted text, comma-separated values (CSV), tab-separated
117
+ values (TSV), OpenDocument spreadsheets, HTML tables, JSON, XML, LaTeX tables, HDF5
118
+ tables, unformatted (e.g., binary) data, or several other formats.
119
+ * Export data to non-tabular formats using several different
120
+ template processors.
121
+ * Display a table or view in a GUI dialog,
122
+ optionally allowing the user to select a data row, enter a data
123
+ value, or respond to a prompt.
124
+ * Display a pair of tables or views in a GUI dialog, allowing the user
125
+ to compare data and find rows with matching or non-matching key values.
126
+ * Conditionally execute different SQL commands and metacommands based on the DBMS in use,
127
+ the database in use, data values, user input, and other conditions.
128
+ * Execute blocks of SQL statements or *execsql* metacommands repeatedly, using
129
+ any of three different looping methods.
130
+ * Use simple dynamically-created data entry forms to get user input.
131
+ * Write status or informational messages to the console or to a file
132
+ during the processing of a SQL script. Status messages and data exported in
133
+ text format can be combined in a single text file. Data tables can be
134
+ exported in a text format that is compatible with Markdown pipe tables,
135
+ so that script output can be converted into a variety of document formats.
136
+ * Write more modular and maintainable SQL code by factoring repeated
137
+ code out into separate scripts, parameterizing the code using
138
+ substitution variables, and using the INCLUDE or SCRIPT metacommands
139
+ to merge the modules into a single stream of commands.
140
+ * Merge multiple elements of a workflow—e.g., data loading, summarization, and
141
+ reporting—into a single script for better coupling of related steps and more
142
+ secure maintenance.
143
+ * Use *execsql* as a CGI script for a web application that needs to run
144
+ SQL scripts and return database output.
145
+
146
+ Standard SQL provides no features for interacting with external files or
147
+ with the user, or for controlling the flow of actions to be carried out
148
+ based either on data or on user input. Some DBMSs provide these features,
149
+ but capabilities and syntax differ between DBMSs. *execsql* provides
150
+ these features in a way that operates identically across all supported
151
+ DBMSs on both Linux and Windows.
152
+
153
+ *execsql* is inherently a command-line program that can operate in a completely
154
+ non-interactive mode (except for password prompts). Therefore, it is suitable
155
+ for incorporation into a toolchain controlled by a shell script (on Linux),
156
+ batch file (on Windows), or other system-level scripting application. When
157
+ used in this mode, the only interactive elements will be password prompts.
158
+ However, several metacommands generate interactive prompts and data
159
+ displays, so *execsql* scripts can be written to provide some user interactivity.
160
+
161
+ In addition, *execsql* automatically maintains a log that documents key
162
+ information about each run of the program, including the databases that are
163
+ used, the scripts that are run, and the user's choices in response to
164
+ interactive prompts. Together, the script and the log provide documentation
165
+ of all actions carried out that may have altered data.
166
+
167
+ The documentation includes 30 examples showing the use of
168
+ *execsql*'s metacommands, in both simple and complex scripts.
169
+
170
+
171
+ An Illustration
172
+ =================
173
+
174
+ The following code illustrates the use of metacommands and substitution variables.
175
+ Lines starting with "\-\- !x!" are metacommands that implement *execsql*-specific features.
176
+ Identifiers enclosed in pairs of exclamation points (!!) are substitution variables
177
+ that have been defined with the SUB metacommand. The "$date_tag" variable is
178
+ a substitution variable that is defined by *execsql* itself rather than by the user.
179
+
180
+ -- ==== Configuration ====
181
+ -- Put the (date-tagged) logfile name in the 'inputfile' substitution variable.
182
+ -- !x! SUB inputfile logs/errors_!!$date_tag!!
183
+ -- Ensure that the export directory will be created if necessary.
184
+ -- !x! CONFIG MAKE_EXPORT_DIRS Yes
185
+
186
+ -- ==== Display Fatal Errors ====
187
+ -- !x! IF(file_exists(!!inputfile!!))
188
+ -- Import the data to a staging table.
189
+ -- !x! IMPORT TO REPLACEMENT staging.errorlog FROM !!inputfile!!
190
+ -- Create a view to display only fatal errors.
191
+ create temporary view fatals as
192
+ select user, run_time, process
193
+ from staging.errorlog
194
+ where severity = 'FATAL';
195
+ -- !x! IF(HASROWS(fatals))
196
+ -- Export the fatal errors to a dated report.
197
+ -- !x! EXPORT fatals TO reports/error_report_!!$date_tag!! AS CSV
198
+ -- Also display it to the user in a GUI.
199
+ -- !x! PROMPT MESSAGE "Fatal errors in !!inputfile!!:" DISPLAY fatals
200
+ -- !x! ELSE
201
+ -- !x! WRITE "There are no fatal errors."
202
+ -- !x! ENDIF
203
+ -- !x! ELSE
204
+ -- !x! WRITE "There is no error log."
205
+ -- !x! ENDIF
206
+ drop table if exists staging.errorlog cascade;
207
+
208
+ The IMPORT metacommand reads the specified file and loads the data into
209
+ the target (staging) table, automatically choosing appropriate data types
210
+ for each column. The EXPORT metacommand saves the data in a CSV file
211
+ that can be used by other applications. The PROMPT metacommand produces
212
+ a GUI display of the data as follows:
213
+
214
+ ![PROMPT display of 'fatals' view](https://execsql.readthedocs.io/en/latest/_images/fatals.png)
215
+
216
+ The complete documentation includes additional examples.
217
+
218
+
219
+ Requirements
220
+ ===========================
221
+
222
+ The *execsql* program uses third-party Python libraries to communicate with
223
+ different database and spreadsheet software. These libraries must be
224
+ installed to use those programs with *execsql*. Only those libraries that
225
+ are needed, based on the command line arguments and metacommands, must
226
+ be installed. The libraries required for each database or spreadsheet
227
+ application are:
228
+
229
+ * PosgreSQL: psycopg2.
230
+ * MariaDB or MySQL: pymysql.
231
+ * SQL Server: pydobc.
232
+ * DuckDB: duckdb.
233
+ * Firebird: fdb.
234
+ * MS-Access: pydobc and pywin32.
235
+ * Oracle: cx-Oracle.
236
+ * DSN connections: pyodbc.
237
+ * OpenDocument spreadsheets: odfpy.
238
+ * Excel spreadsheets (read only): xlrd and openpyxl.
239
+
240
+ Connections to SQLite databases are made using Python's standard library,
241
+ so no additional software is needed.
242
+
243
+ If the Jinja or Airspeed template processors will be used, those software
244
+ libraries must also be installed.
245
+
246
+ All of these libraries can be installed from the Python Package Index (PyPI)
247
+ using *pip*.
248
+
249
+
250
+ Syntax and Options
251
+ ========================
252
+
253
+ Different forms of command lines, with varying arguments and options, are shown below.
254
+
255
+ Commands
256
+ ------------------------
257
+
258
+ ```
259
+ execsql.py -ta [other options] sql_script_file Access_db
260
+
261
+ execsql.py -tf [other options] sql_script_file Firebird_host Firebird_db
262
+
263
+ execsql.py -tm [other options] sql_script_file MySQL_host MySQL_db
264
+
265
+ execsql.py -tp [other options] sql_script_file Postgres_host Postgres_db
266
+
267
+ execsql.py -ts [other options] sql_script_file SQL_Server_host SQL_Server_db
268
+
269
+ execsql.py -to [other options] sql_script_file Oracle_host Oracle_service
270
+
271
+ execsql.py -tl [other options] sql_script_file SQLite_db
272
+
273
+ execsql.py -tl [other options] sql_script_file DuckDB_db
274
+
275
+ execsql.py -tl [other options] sql_script_file DSN_name
276
+ ```
277
+
278
+ Most arguments and options can also be specified in a configuration file, so
279
+ only the script file name need be specified on the command line.
280
+
281
+ ```
282
+ execsql.py sql_script_file
283
+ ```
284
+
285
+
286
+ Command-line Arguments
287
+ -----------------------------
288
+
289
+ ```
290
+ sql_script_file The name of a text file of SQL commands to be executed. Required argument.
291
+
292
+ Access_db The name of the Access database against which to run the SQL.
293
+
294
+ DSN_name The data set name for an ODBC connection.
295
+
296
+ Firebird_db The name of the Firebird database against which to run the SQL.
297
+
298
+ Firebird_host The name of the Firebird host (server) against which to run the SQL.
299
+
300
+ MySQL_db The name of the MySQL database against which to run the SQL.
301
+
302
+ MySQL_host The name of the MySQL host (server) against which to run the SQL.
303
+
304
+ Oracle_host The name of the Oracle host (server) against which to run the SQL.
305
+
306
+ Oracle_service The Oracle service name (database) against which to run the SQL.
307
+
308
+ Postgres_db The name of the Postgres database against which to run the SQL.
309
+
310
+ Postgres_host The name of the Postgres host (server) against which to run the SQL.
311
+
312
+ SQL_Server_db The name of the SQL Server database against which to run the SQL.
313
+
314
+ SQL_Server_host The name of the SQL Server host (server) against which to run the SQL.
315
+
316
+ SQLite_db The name of the SQLite database against which to run the SQL.
317
+
318
+ DuckDB_db The name of the DuckDB database against which to run the SQL.
319
+ ```
320
+
321
+ Command-line Options
322
+ ------------------------
323
+
324
+ ```
325
+ -a value Define the replacement for a substitution variable $ARG_x.
326
+ -d value Automatically make directories used by the EXPORT
327
+ metacommand: 'n'-no (default); 'y'-yes.
328
+ -e value Character encoding of the database. Only used for some
329
+ database types.
330
+ -f value Character encoding of the script file.
331
+ -g value Character encoding to use for output of the WRITE and EXPORT
332
+ metacommands.
333
+ -i value Character encoding to use for data files imported with the
334
+ IMPORT metacommand.
335
+ -l Use execsql.log in the user's home directory.
336
+ -m Display the allowable metacommands, and exit.
337
+ -p value The port number to use for client-server databases.
338
+ -s value The number of lines of an IMPORTed file to scan to diagnose
339
+ the quote and delimiter characters.
340
+ -t value Type of database:
341
+ 'p'-Postgres,
342
+ 'f'-Firebird,
343
+ 'l'-SQLite,
344
+ 'k'-DuckDB,
345
+ 'm'-MySQL or MariaDB,
346
+ 'a'-Access,
347
+ 's'-SQL Server,
348
+ 'o'-Oracle,
349
+ 'd'-DSN connection.
350
+ -u value The database user name (optional).
351
+ -v value Use a GUI for interactive prompts.
352
+ -w Do not prompt for the password when the user is specified.
353
+ -y List all valid character encodings and exit.
354
+ -z value Buffer size, in kb, to use with the IMPORT metacommand
355
+ (the default is 32).
356
+ ```
357
+
358
+
359
+ Documentation, Tools, and Templates
360
+ ===========================================
361
+
362
+ Complete documentation is at [Read the Docs](https://execsql.readthedocs.io/)
363
+
364
+ Tools that are installed with *execsql*, that illustrate various uses, and that are useful in their
365
+ own right, are:
366
+
367
+ * Upsert scripts): A set of *execsql* scripts for
368
+ Postgres, MariaDB/MySQL, and SQL Server that will perform a merge (upsert) operation
369
+ on multiple tables simultaneously, automatically ordering the tables according to
370
+ foreign key constraints, and performing null, primary key, and foreign key data
371
+ integrity checks. These scripts use the *information_schema* views and so operate
372
+ on any set of tables in any supported DBMS without customization.
373
+ * Staging table comparison scripts: A set of *execsql*
374
+ scripts for Postgres, MariaDB/MySQL, and SQL Server that will perform various comparisons
375
+ of the data in a staging table to the data in the corresponding base table. These scripts
376
+ use the *information_schema* views and so operate on any table in any supported DBMS
377
+ without customization.
378
+ * Glossary creation script: An *execsql* script that
379
+ will produce a table of terms (e.g., column names) and definitions, and that may be useful
380
+ to accompany a database export.
381
+
382
+ The set of script templates that are also installed include several types of templates that may be useful in conjunction with *execsql.py*. These are:
383
+
384
+ * *execsql.conf*: An annotated version of the configuration file that includes all
385
+ configuration settings and notes on their usage.
386
+ * *script_template.sql*: A framework for SQL scripts that make use of several *execsql*
387
+ features. It includes sections for custom configuration settings, custom logfile creation,
388
+ and reporting of unexpected script exits (through user cancellation or errors).
389
+ * *config_settings.sqlite* and *example_config_prompt.sql*: A SQLite database containing
390
+ specifications for all settings configurable with the CONFIG metacommand, in the form
391
+ used by the PROMPT ENTRY_FORM metacommand, and a SQL script illustrating how this database can be used to prompt the user for some or all of the configuration settings.
392
+
393
+
394
+
395
+
396
+ Fork
397
+ ================================
398
+
399
+ *execsql2* is a fork of [execsql](https://execsql.readthedocs.io/) originally authored by R.Dreas Nielsen.
400
+ The original source is available at [https://execsql.readthedocs.io/](https://execsql.readthedocs.io/).
401
+ This fork is maintained by [Caleb Grant](https://github.com/geocoug).
402
+
403
+
404
+ Copyright and License
405
+ ================================
406
+
407
+ Copyright (c) 2007-2024 R.Dreas Nielsen
408
+ Copyright (c) 2025-present Caleb Grant
409
+
410
+ This program is free software: you can redistribute it and/or modify it under
411
+ the terms of the GNU General Public License as published by the Free Software
412
+ Foundation, either version 3 of the License, or (at your option) any later
413
+ version. This program is distributed in the hope that it will be useful, but
414
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
415
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
416
+ details. The GNU General Public License is available at
417
+ http://www.gnu.org/licenses/.
418
+
@@ -0,0 +1,24 @@
1
+ execsql/__init__.py,sha256=aZx5WGSv8Lbv2tuRtUCg4BACxy3pj__9vG-6UQxL100,76
2
+ execsql/__main__.py,sha256=6-J7miLmQ2ZCzGZXlCjljhc0WrFKBECotqh2xmK9FVI,103
3
+ execsql/execsql.py,sha256=Fd5gRg_-_zjghY7B06ZvZ-JAs5jug_UfSB4mSZtN1WY,657257
4
+ execsql2-1.130.1.data/data/execsql2_extras/READ_ME.rst,sha256=LWY_upNOtvAYImu45mP2AtlbXtzCYR-LyO0FkdWHPhk,4853
5
+ execsql2-1.130.1.data/data/execsql2_extras/config_settings.sqlite,sha256=aY5cxR7Q7J6zJ4bC9lu5mHUrhy211Cq3MNKPQVCt02E,20480
6
+ execsql2-1.130.1.data/data/execsql2_extras/example_config_prompt.sql,sha256=rvV0MkAILMmD--xVIcrBQW8bQwCQ084XRSqzu2nrXQ4,7488
7
+ execsql2-1.130.1.data/data/execsql2_extras/execsql.conf,sha256=xqZMauFAM94KmUS2u7576zA7LKQPuGMGwDiEMOEvasE,9539
8
+ execsql2-1.130.1.data/data/execsql2_extras/make_config_db.sql,sha256=zwls5767ZG1Qj9RxFt-NAHxkFgi-nwG8KkhAvl8YHlY,8731
9
+ execsql2-1.130.1.data/data/execsql2_extras/md_compare.sql,sha256=yI0adKHtzOn7TDNWRSOHl0B3heUjtobnQGJqVfrDrhA,24105
10
+ execsql2-1.130.1.data/data/execsql2_extras/md_glossary.sql,sha256=79Qit5JcABgR_7ORCIqadHKw3BfPBO-S24Jfst7AXZ0,10798
11
+ execsql2-1.130.1.data/data/execsql2_extras/md_upsert.sql,sha256=YKW7z9oTKJXzWWf8KSM_RvIlLcptg7I094w_-Ihf0ok,112727
12
+ execsql2-1.130.1.data/data/execsql2_extras/pg_compare.sql,sha256=Ci_0pjNb37SScpF6ilHcOsYhqjlFFAjXAtB-X5g62B4,24370
13
+ execsql2-1.130.1.data/data/execsql2_extras/pg_glossary.sql,sha256=Q1ReGhQzBIguRuLUbanKvjPFv1uFcLCZ-Z3vbocUEKE,9910
14
+ execsql2-1.130.1.data/data/execsql2_extras/pg_upsert.sql,sha256=Gr9IRoqlnHgApeYCPTOHE2p0OfGKs03LcRNjUOn1iGE,108578
15
+ execsql2-1.130.1.data/data/execsql2_extras/script_template.sql,sha256=cv5KDxbdhbxwPFtxJyZvB4N0yHpRVA1zYsw8m7yL6Uw,11161
16
+ execsql2-1.130.1.data/data/execsql2_extras/ss_compare.sql,sha256=VU9nD9j_7Ga4zQZMV26w6i6UZOYd0OUjIZP29SsmkDA,24850
17
+ execsql2-1.130.1.data/data/execsql2_extras/ss_glossary.sql,sha256=N1CY2hMBQgNYi3q8A17yFi8ALlfzHxOJSW1k_y3LNpA,13077
18
+ execsql2-1.130.1.data/data/execsql2_extras/ss_upsert.sql,sha256=Nz2fICzZzMJO2Uc3FZsbtQu8FMO9ffg2nrzDn5Fp3l4,120958
19
+ execsql2-1.130.1.dist-info/METADATA,sha256=xxkhrUTehEcN9f9D7Rp9c33uO5ldhEU1O4EtPdWDJ0k,19490
20
+ execsql2-1.130.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
21
+ execsql2-1.130.1.dist-info/entry_points.txt,sha256=0xr7EdHKc2D9t6hqSP1-FVbfYZ19HAYiwF9uj5wOl1E,51
22
+ execsql2-1.130.1.dist-info/licenses/LICENSE.txt,sha256=LBdhuxejF8_bLCHZ2kWfmDXpDGUu914Gbd6_3JjCRe0,676
23
+ execsql2-1.130.1.dist-info/licenses/NOTICE,sha256=sqVrM73Ys9zfvWC_P797lHfTnoPW_ETeBSrUTFaob0A,339
24
+ execsql2-1.130.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ execsql2 = execsql.__main__:main
@@ -0,0 +1,12 @@
1
+ execsql2 — a fork of execsql.py
2
+ Copyright (c) 2007-2025 R.Dreas Nielsen
3
+ Copyright (c) 2026-present Caleb Grant
4
+
5
+ This program is free software: you can redistribute it and/or modify it under
6
+ the terms of the GNU General Public License as published by the Free Software
7
+ Foundation, either version 3 of the License, or (at your option) any later
8
+ version. This program is distributed in the hope that it will be useful, but
9
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
11
+ details. The GNU General Public License is available at
12
+ http://www.gnu.org/licenses/.
@@ -0,0 +1,10 @@
1
+ execsql2
2
+ ========
3
+ This project is a fork of execsql (https://execsql.readthedocs.io/)
4
+ originally authored by R.Dreas Nielsen.
5
+
6
+ Original work: Copyright (c) 2007-2024 R.Dreas Nielsen
7
+ Modifications: Copyright (c) 2025-present Caleb Grant
8
+
9
+ Licensed under the GNU General Public License v3 or later.
10
+ See LICENSE.txt for the full license text.