Name | pytsql JSON |
Version |
1.4.0
JSON |
| download |
home_page | None |
Summary | `Pytsql` allows to run mssql sripts, typically run via GUIs, via CLI. |
upload_time | 2024-11-04 20:39:48 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
sql
mssql
databases
automation
parametrization
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# pytsql
[![CI](https://github.com/Quantco/pytsql/workflows/CI/badge.svg)](https://github.com/Quantco/pytsql/actions)
[![Documentation Status](https://readthedocs.org/projects/pytsql/badge/?version=latest)](https://pytsql.readthedocs.io/en/latest/?badge=latest)
[![Conda-forge](https://img.shields.io/conda/vn/conda-forge/pytsql?logoColor=white&logo=conda-forge)](https://anaconda.org/conda-forge/pytsql)
[![PypiVersion](https://img.shields.io/pypi/v/pytsql.svg?logo=pypi&logoColor=white)](https://pypi.org/project/pytsql)
`pytsql` allows to run mssql scripts, typically run from GUIs, from Python.
This, in turn, eases concurrent, scheduled and chained execution of scripts in a
workflow. Put differently, it enables automated execution of Microsoft sql server scripts.
Moreover, `pytsql` supports parametrization of scripts, akin to templating.
Please have a look at our [documentation](https://pytsql.readthedocs.io/en/latest/?badge=latest) if you're curious about more details.
## Installation
To install, execute:
```bash
pip install pytsql
```
or in a `conda` environment
```bash
mamba install pytsql
```
Be aware that depending on your platform, you'will need specific drivers ([Windows](https://docs.microsoft.com/en-us/sql/connect/odbc/windows/microsoft-odbc-driver-for-sql-server-on-windows?view=sql-server-ver15), [Linux](https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15), [macOS](https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/install-microsoft-odbc-driver-sql-server-macos?view=sql-server-ver15)).
## Usage
`pytsql` is tailored to run with MSSQL. Other sql dialects are not supported.
The main function of interest is `execute`. It requires a `sqlalchemy` [`Engine`][engine]
object as well as the path to the sql script of interest. A typical use case might look as follows:
```python
import pytsql
from sqlalchemy import sa
db_connection_string = "connection_to_my_database"
engine = sa.get_engine(db_connection_string)
pytsql.execute("my_sql_script.sql", engine)
```
Please also have a look at our documentation sections on [usage](https://pytsql.readthedocs.io/en/latest/usage.html#parametrization) and
[development](https://pytsql.readthedocs.io/en/latest/development.html).
[engine]: https://docs.sqlalchemy.org/en/14/core/engines.html
## Credits
Grammar is based on [antlr4/grammars-v4](https://github.com/antlr/grammars-v4/tree/master/sql/tsql).
Raw data
{
"_id": null,
"home_page": null,
"name": "pytsql",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "Kevin Klein <kevin.klein@quantco.com>",
"keywords": "sql, mssql, databases, automation, parametrization",
"author": null,
"author_email": "Alex Gonopolskiy <agonopol@gmail.com>, Kevin Klein <kevin.klein@quantco.com>, Encho Mishinev <encho.mishinev@gmail.com>, Sven Giegerich <sven.giegerich@quantco.com>",
"download_url": "https://files.pythonhosted.org/packages/5b/95/40b37170abac79bf326d6d14ed6913c4c3c7eca944f316cb06cb5ff58d99/pytsql-1.4.0.tar.gz",
"platform": null,
"description": "# pytsql\n\n[![CI](https://github.com/Quantco/pytsql/workflows/CI/badge.svg)](https://github.com/Quantco/pytsql/actions)\n[![Documentation Status](https://readthedocs.org/projects/pytsql/badge/?version=latest)](https://pytsql.readthedocs.io/en/latest/?badge=latest)\n[![Conda-forge](https://img.shields.io/conda/vn/conda-forge/pytsql?logoColor=white&logo=conda-forge)](https://anaconda.org/conda-forge/pytsql)\n[![PypiVersion](https://img.shields.io/pypi/v/pytsql.svg?logo=pypi&logoColor=white)](https://pypi.org/project/pytsql)\n\n\n`pytsql` allows to run mssql scripts, typically run from GUIs, from Python.\n\nThis, in turn, eases concurrent, scheduled and chained execution of scripts in a\nworkflow. Put differently, it enables automated execution of Microsoft sql server scripts.\n\nMoreover, `pytsql` supports parametrization of scripts, akin to templating.\n\nPlease have a look at our [documentation](https://pytsql.readthedocs.io/en/latest/?badge=latest) if you're curious about more details.\n\n## Installation\n\nTo install, execute:\n\n```bash\npip install pytsql\n```\n\nor in a `conda` environment\n\n```bash\nmamba install pytsql\n```\n\nBe aware that depending on your platform, you'will need specific drivers ([Windows](https://docs.microsoft.com/en-us/sql/connect/odbc/windows/microsoft-odbc-driver-for-sql-server-on-windows?view=sql-server-ver15), [Linux](https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15), [macOS](https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/install-microsoft-odbc-driver-sql-server-macos?view=sql-server-ver15)).\n\n## Usage\n\n`pytsql` is tailored to run with MSSQL. Other sql dialects are not supported.\n\nThe main function of interest is `execute`. It requires a `sqlalchemy` [`Engine`][engine]\nobject as well as the path to the sql script of interest. A typical use case might look as follows:\n\n```python\nimport pytsql\nfrom sqlalchemy import sa\n\ndb_connection_string = \"connection_to_my_database\"\nengine = sa.get_engine(db_connection_string)\n\npytsql.execute(\"my_sql_script.sql\", engine)\n```\n\nPlease also have a look at our documentation sections on [usage](https://pytsql.readthedocs.io/en/latest/usage.html#parametrization) and\n[development](https://pytsql.readthedocs.io/en/latest/development.html).\n\n[engine]: https://docs.sqlalchemy.org/en/14/core/engines.html\n\n\n## Credits\n\nGrammar is based on [antlr4/grammars-v4](https://github.com/antlr/grammars-v4/tree/master/sql/tsql).\n",
"bugtrack_url": null,
"license": null,
"summary": "`Pytsql` allows to run mssql sripts, typically run via GUIs, via CLI.",
"version": "1.4.0",
"project_urls": {
"Source": "https://github.com/quantco/pytsql"
},
"split_keywords": [
"sql",
" mssql",
" databases",
" automation",
" parametrization"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "67947f8037f9a7dc7cc0c7462699e8dcbca71c52aa500ca9e6423f5afd0f4445",
"md5": "7e411b1325a4b4ce5fee6355247f5a36",
"sha256": "fa380d2f9246e97ba1365eefb1196c6ee7b66e0256c44ae147fb9a8ca52a3ed1"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7e411b1325a4b4ce5fee6355247f5a36",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 4568799,
"upload_time": "2024-11-04T20:38:01",
"upload_time_iso_8601": "2024-11-04T20:38:01.989584Z",
"url": "https://files.pythonhosted.org/packages/67/94/7f8037f9a7dc7cc0c7462699e8dcbca71c52aa500ca9e6423f5afd0f4445/pytsql-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ff288928c7a844b00023aa8b18e59a3c7330661fd3fc38815377b63eef1edad",
"md5": "95d50fa1b71553ab001276315505fb50",
"sha256": "2820d4d3c994c99c72c9751f93ff1c1a640557bddf32cf48218c33a8ad4b41bc"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "95d50fa1b71553ab001276315505fb50",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 4598872,
"upload_time": "2024-11-04T20:38:04",
"upload_time_iso_8601": "2024-11-04T20:38:04.383317Z",
"url": "https://files.pythonhosted.org/packages/9f/f2/88928c7a844b00023aa8b18e59a3c7330661fd3fc38815377b63eef1edad/pytsql-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b793acf7353d0bd580b5ebdcbe2309bfa61dc1a7eea914e0f601241e64d37a09",
"md5": "897638f576b02b1038b12186132f59dc",
"sha256": "889a5ef661ca7b7a87e239f438b801028e6c4a9b09d3d5f86aecaeb6b7b900be"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "897638f576b02b1038b12186132f59dc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 20883734,
"upload_time": "2024-11-04T20:38:06",
"upload_time_iso_8601": "2024-11-04T20:38:06.752161Z",
"url": "https://files.pythonhosted.org/packages/b7/93/acf7353d0bd580b5ebdcbe2309bfa61dc1a7eea914e0f601241e64d37a09/pytsql-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f84ab3db3809409165b10782eab3330a645b1db0d4a8bde3558216e46b33ae20",
"md5": "06daffeeba0c2e00742c2550d171a2c2",
"sha256": "55fcd3b097752b16fa8fdc2b96589c53722282a4841491d3164d4fbadc6edc8d"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "06daffeeba0c2e00742c2550d171a2c2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 21811430,
"upload_time": "2024-11-04T20:38:10",
"upload_time_iso_8601": "2024-11-04T20:38:10.055114Z",
"url": "https://files.pythonhosted.org/packages/f8/4a/b3db3809409165b10782eab3330a645b1db0d4a8bde3558216e46b33ae20/pytsql-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b96522a108ea1344ec3144ab61daf758ca18c6e7af6c140ea49c5b7d7db6937c",
"md5": "4282f9d5035b91af0a841466f4ef0641",
"sha256": "4d2b3abc19c5ced12b58cf0ba398c3ced983d76c5e719129cf438e51e5557613"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4282f9d5035b91af0a841466f4ef0641",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 20188231,
"upload_time": "2024-11-04T20:38:13",
"upload_time_iso_8601": "2024-11-04T20:38:13.336060Z",
"url": "https://files.pythonhosted.org/packages/b9/65/22a108ea1344ec3144ab61daf758ca18c6e7af6c140ea49c5b7d7db6937c/pytsql-1.4.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4faf05bd508530ab513766219776c4b948e637e4c7c173c243e47480178ea122",
"md5": "ceedee31a933947a4c7bec1f3f374220",
"sha256": "340cd0a9093e2176f370215576b8dc00d954edc9df503c3317c84aacdc84ae22"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ceedee31a933947a4c7bec1f3f374220",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 20741892,
"upload_time": "2024-11-04T20:38:16",
"upload_time_iso_8601": "2024-11-04T20:38:16.701909Z",
"url": "https://files.pythonhosted.org/packages/4f/af/05bd508530ab513766219776c4b948e637e4c7c173c243e47480178ea122/pytsql-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a0463b2033e77d3ebdb9c6a553ffb31027189ac91a47e87530b9652370897f1",
"md5": "497e1d5027b4113945445e0d91ba9aae",
"sha256": "a76d8116dc19b7831a74662af5352b7409c108ead6e16724f0406142962bb303"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "497e1d5027b4113945445e0d91ba9aae",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3544628,
"upload_time": "2024-11-04T20:38:19",
"upload_time_iso_8601": "2024-11-04T20:38:19.276768Z",
"url": "https://files.pythonhosted.org/packages/0a/04/63b2033e77d3ebdb9c6a553ffb31027189ac91a47e87530b9652370897f1/pytsql-1.4.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1591786d6a918f1ae361afb0b16a86374a13206389c056d535c357455a7f3b55",
"md5": "24fdb2e3a2187594d9077cfc7b25b4e2",
"sha256": "9c6750fedddf5dadc09d9f56098c94b0ed040a2ab3b9a7d0290f3aa170a5d18f"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "24fdb2e3a2187594d9077cfc7b25b4e2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3553998,
"upload_time": "2024-11-04T20:38:21",
"upload_time_iso_8601": "2024-11-04T20:38:21.688542Z",
"url": "https://files.pythonhosted.org/packages/15/91/786d6a918f1ae361afb0b16a86374a13206389c056d535c357455a7f3b55/pytsql-1.4.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efb99f6d4cad161a5b0005909b77f1aff8ade4f9d5bfb7a557613c77eee4a2c3",
"md5": "534d9b481a7008a9090d0a59f6d79d1b",
"sha256": "b7d9b5214e751b5da11d4af901f7ad9fef6bdd3d7438171d21ee4c0099e3be5f"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "534d9b481a7008a9090d0a59f6d79d1b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 4568785,
"upload_time": "2024-11-04T20:38:23",
"upload_time_iso_8601": "2024-11-04T20:38:23.846239Z",
"url": "https://files.pythonhosted.org/packages/ef/b9/9f6d4cad161a5b0005909b77f1aff8ade4f9d5bfb7a557613c77eee4a2c3/pytsql-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f445bdd4d5a9718f59fa514e5c1e0f7c8457f85e0ddf732e5c7c45c6cbf2202",
"md5": "521ac73a491050112974f2607d0fd22c",
"sha256": "82238ca8f0a7d9d88d1670dd6934ac2593434f586f55b1a8e23c63119acb2804"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "521ac73a491050112974f2607d0fd22c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 4598872,
"upload_time": "2024-11-04T20:38:25",
"upload_time_iso_8601": "2024-11-04T20:38:25.960405Z",
"url": "https://files.pythonhosted.org/packages/4f/44/5bdd4d5a9718f59fa514e5c1e0f7c8457f85e0ddf732e5c7c45c6cbf2202/pytsql-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "533691a8622749316c5aed5088668199b0dc847ff6da595b0985b476c0917b89",
"md5": "1d9469203f27d3e4484de2ac2c0160f4",
"sha256": "6f02d2f0c1851655a371a39f256a3ea6e11416889a78d94438e6a498192c30f5"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1d9469203f27d3e4484de2ac2c0160f4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 20884367,
"upload_time": "2024-11-04T20:38:28",
"upload_time_iso_8601": "2024-11-04T20:38:28.794073Z",
"url": "https://files.pythonhosted.org/packages/53/36/91a8622749316c5aed5088668199b0dc847ff6da595b0985b476c0917b89/pytsql-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "095da8147fc20e8b122e58202975eab5ea2153cd8c5cb9950bb037a5fec02e2f",
"md5": "6a4b24fa9398224ec99b233db4f09bb3",
"sha256": "854f9281b230352c71eed3723baad332b1924c3a54a899a76d34e205beebc8ea"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6a4b24fa9398224ec99b233db4f09bb3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 21811545,
"upload_time": "2024-11-04T20:38:32",
"upload_time_iso_8601": "2024-11-04T20:38:32.363629Z",
"url": "https://files.pythonhosted.org/packages/09/5d/a8147fc20e8b122e58202975eab5ea2153cd8c5cb9950bb037a5fec02e2f/pytsql-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db134641f327a0e8dec9f523ce33da42c42d9d1ab57b771ba1dcfc04014fa874",
"md5": "85dd6ed2a9ec2165d85ae68f5beb0c72",
"sha256": "d11b8f1305dd0bd277c04aec5c9ce2b236b85642023d1484d3bc22d9eda7d77c"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "85dd6ed2a9ec2165d85ae68f5beb0c72",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 20188161,
"upload_time": "2024-11-04T20:38:35",
"upload_time_iso_8601": "2024-11-04T20:38:35.218408Z",
"url": "https://files.pythonhosted.org/packages/db/13/4641f327a0e8dec9f523ce33da42c42d9d1ab57b771ba1dcfc04014fa874/pytsql-1.4.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ce17dd37da5b7725888b8a92c6af92a8feaf10b3a42533a7ae9c831abb6a02d",
"md5": "cfb3936761a1d26605a7d7d703de4b76",
"sha256": "56bdd093abad2979e3a5d49efb4d73969b6a489ef6c8ff5cef0996670fbe768f"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cfb3936761a1d26605a7d7d703de4b76",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 20741237,
"upload_time": "2024-11-04T20:38:38",
"upload_time_iso_8601": "2024-11-04T20:38:38.199836Z",
"url": "https://files.pythonhosted.org/packages/4c/e1/7dd37da5b7725888b8a92c6af92a8feaf10b3a42533a7ae9c831abb6a02d/pytsql-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04fbd7dfbf2fad853c9e44e42398c12a73a4344fe543c34c31e1c7d75ac92a57",
"md5": "e491ac5212253ebf4dccebb102ecceed",
"sha256": "6f379be5415f894d980a3833db10f89c3cc6e5c6f9222865be8fc272ebd927f1"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "e491ac5212253ebf4dccebb102ecceed",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3544615,
"upload_time": "2024-11-04T20:38:40",
"upload_time_iso_8601": "2024-11-04T20:38:40.442107Z",
"url": "https://files.pythonhosted.org/packages/04/fb/d7dfbf2fad853c9e44e42398c12a73a4344fe543c34c31e1c7d75ac92a57/pytsql-1.4.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abdc3e771295715da1f52e103884bbb8b8d58ec92f890c8ebae794811d2e8f91",
"md5": "d6b34642ade0e5a19d7776b831249cb7",
"sha256": "d3d98efdebdceb3d8354a97df9f44a5810e7ab39a2c03ce04dc3603762eb9a61"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "d6b34642ade0e5a19d7776b831249cb7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3553992,
"upload_time": "2024-11-04T20:38:42",
"upload_time_iso_8601": "2024-11-04T20:38:42.080210Z",
"url": "https://files.pythonhosted.org/packages/ab/dc/3e771295715da1f52e103884bbb8b8d58ec92f890c8ebae794811d2e8f91/pytsql-1.4.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34c3cbd87b83514e33b4226b77f1f9a4904581bbfad6f743b17654c450474c54",
"md5": "6adb9f0bc70f7871cc1778dd82134552",
"sha256": "e64ca9d33ed27e2c582ef695bf34da3db3048f94b0f5096c8627c4c3f1d59f0a"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "6adb9f0bc70f7871cc1778dd82134552",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 4568582,
"upload_time": "2024-11-04T20:38:43",
"upload_time_iso_8601": "2024-11-04T20:38:43.742543Z",
"url": "https://files.pythonhosted.org/packages/34/c3/cbd87b83514e33b4226b77f1f9a4904581bbfad6f743b17654c450474c54/pytsql-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c8c967ee58046476b7c696669ce1bbe749873357fe3e871ed6112cd66410e99",
"md5": "f17ef3e806bdfad46c6b6bec1cef3f65",
"sha256": "e4f91e32c044af5d3c786bcaa0915ac0476b5be38366c683015ea01a0a536081"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f17ef3e806bdfad46c6b6bec1cef3f65",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 4599397,
"upload_time": "2024-11-04T20:38:45",
"upload_time_iso_8601": "2024-11-04T20:38:45.398918Z",
"url": "https://files.pythonhosted.org/packages/6c/8c/967ee58046476b7c696669ce1bbe749873357fe3e871ed6112cd66410e99/pytsql-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "083f465a38768dd33cce7cefdcdeb7eda0a8184698b02940135d306cfc5467d2",
"md5": "75abfc124ac08dbdb2d0a8569417df7b",
"sha256": "d341ff1031e075203d73c97cc47ae638a401c5ff63c1fe6f8b13d4b4316b6105"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "75abfc124ac08dbdb2d0a8569417df7b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 20854232,
"upload_time": "2024-11-04T20:38:48",
"upload_time_iso_8601": "2024-11-04T20:38:48.089571Z",
"url": "https://files.pythonhosted.org/packages/08/3f/465a38768dd33cce7cefdcdeb7eda0a8184698b02940135d306cfc5467d2/pytsql-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "236f880033836159d9b14e4167036a50175b3cc1d95666076895905482a52f18",
"md5": "d52d1bf62a7a5e5dac690dea9ce583eb",
"sha256": "9eaa5233ad6a662cc1106317b9c2c0aadf767d99d36ab5b3f48fbc468609b1eb"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d52d1bf62a7a5e5dac690dea9ce583eb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 21790058,
"upload_time": "2024-11-04T20:38:51",
"upload_time_iso_8601": "2024-11-04T20:38:51.034341Z",
"url": "https://files.pythonhosted.org/packages/23/6f/880033836159d9b14e4167036a50175b3cc1d95666076895905482a52f18/pytsql-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a94a469e6ed14b217f72982672959426e2e635f0a371eca74a771abe2dbf8ad4",
"md5": "7e739700e90a7c93a3e15b3c0c954a92",
"sha256": "b827fa29ac774bfd9e41a0d51bf6ed8e452fac90d35ac4f19ecbd12c9fd120ce"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7e739700e90a7c93a3e15b3c0c954a92",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 20165731,
"upload_time": "2024-11-04T20:38:54",
"upload_time_iso_8601": "2024-11-04T20:38:54.016292Z",
"url": "https://files.pythonhosted.org/packages/a9/4a/469e6ed14b217f72982672959426e2e635f0a371eca74a771abe2dbf8ad4/pytsql-1.4.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b9afe67abd71dc9815c2ee96279812ba492a1e175ce60ae13520d07dce564a3",
"md5": "11ee811b5acd2d0f3463cbf6362d0cd2",
"sha256": "390203a2df79c81d3f1430aee10c2bcd6f1f56f0b1a2f29cd85055e4a4c5c35a"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "11ee811b5acd2d0f3463cbf6362d0cd2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 20716795,
"upload_time": "2024-11-04T20:38:57",
"upload_time_iso_8601": "2024-11-04T20:38:57.275699Z",
"url": "https://files.pythonhosted.org/packages/6b/9a/fe67abd71dc9815c2ee96279812ba492a1e175ce60ae13520d07dce564a3/pytsql-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bbce4232fc4d527ee8775b8fa563413ddb086dc8c819ec803adbbf6604d92a3b",
"md5": "3ab7fc3d7260587cc3f5f77714d5ee03",
"sha256": "a253484bb752b9b19eeea6319a10614bc2e478e49ba2bdc59d668af09b39de5b"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "3ab7fc3d7260587cc3f5f77714d5ee03",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3545230,
"upload_time": "2024-11-04T20:39:00",
"upload_time_iso_8601": "2024-11-04T20:39:00.140613Z",
"url": "https://files.pythonhosted.org/packages/bb/ce/4232fc4d527ee8775b8fa563413ddb086dc8c819ec803adbbf6604d92a3b/pytsql-1.4.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0316d09a47b666ea9da3779f1ef4ff6add9b992b96137e5c4011fd55e3e60a90",
"md5": "f57d378cdb1ae2e982f5d074a7e701aa",
"sha256": "8d750a21ac6b850f458bb0838698170b9d9eeeb8b47779037a0127129bd49578"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f57d378cdb1ae2e982f5d074a7e701aa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3554146,
"upload_time": "2024-11-04T20:39:02",
"upload_time_iso_8601": "2024-11-04T20:39:02.171413Z",
"url": "https://files.pythonhosted.org/packages/03/16/d09a47b666ea9da3779f1ef4ff6add9b992b96137e5c4011fd55e3e60a90/pytsql-1.4.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca4e7f30922b249ecf09cbfac9853c33dc1fbc029a2963b02c1be687c809c40b",
"md5": "1666953c91994417f07d806310d1b388",
"sha256": "d28fcd6497d202d62389827ace60efc7fffd497e732304010195c68034576ef4"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "1666953c91994417f07d806310d1b388",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 4568752,
"upload_time": "2024-11-04T20:39:03",
"upload_time_iso_8601": "2024-11-04T20:39:03.724292Z",
"url": "https://files.pythonhosted.org/packages/ca/4e/7f30922b249ecf09cbfac9853c33dc1fbc029a2963b02c1be687c809c40b/pytsql-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbbce66bba5ca4c9d04c84c09c0217e6c61fadb05492bf3828a62a085ed125dd",
"md5": "a1ca77dd8d486daa9dffb617ded4e85f",
"sha256": "b28d2b0acd73d7986dacb510523469cd652ef43b01042931b4f8897bb3a88c1b"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a1ca77dd8d486daa9dffb617ded4e85f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 4599523,
"upload_time": "2024-11-04T20:39:05",
"upload_time_iso_8601": "2024-11-04T20:39:05.348319Z",
"url": "https://files.pythonhosted.org/packages/db/bc/e66bba5ca4c9d04c84c09c0217e6c61fadb05492bf3828a62a085ed125dd/pytsql-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c9d9d0b6cb762bce96221ba2e86000d56cdbd1499d29edf11b4d15e720182ab",
"md5": "5f2351eb0ac1d5b98b701d5132bfff0f",
"sha256": "e97ad69f43d2e4223145dda59f258a32902caacc8ce0dbc866cac57b1095b1f3"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5f2351eb0ac1d5b98b701d5132bfff0f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 20853892,
"upload_time": "2024-11-04T20:39:07",
"upload_time_iso_8601": "2024-11-04T20:39:07.909965Z",
"url": "https://files.pythonhosted.org/packages/6c/9d/9d0b6cb762bce96221ba2e86000d56cdbd1499d29edf11b4d15e720182ab/pytsql-1.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e46b25b59c81d05fb0bcd86755e6eefb1b5cdb6b51c4fe2b92225176648bdeb",
"md5": "f9d076b1c7c28fbcb6fccc3293d49ba1",
"sha256": "3b23425cec0d7672e1099ed06167f60649ebc15896a78df84ca96faa119bb44f"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f9d076b1c7c28fbcb6fccc3293d49ba1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 21789796,
"upload_time": "2024-11-04T20:39:11",
"upload_time_iso_8601": "2024-11-04T20:39:11.367429Z",
"url": "https://files.pythonhosted.org/packages/2e/46/b25b59c81d05fb0bcd86755e6eefb1b5cdb6b51c4fe2b92225176648bdeb/pytsql-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ed65478350aeab19af009baf663ad578bf2997aa7c0e3029e4fe5c8d4b89152",
"md5": "72261c38337618042b9dafb362ee72ac",
"sha256": "6c6d361e8777c8066827cbefdccbb6f776b661dde7968a57b7fbfc573271b633"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "72261c38337618042b9dafb362ee72ac",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 20165639,
"upload_time": "2024-11-04T20:39:15",
"upload_time_iso_8601": "2024-11-04T20:39:15.418699Z",
"url": "https://files.pythonhosted.org/packages/9e/d6/5478350aeab19af009baf663ad578bf2997aa7c0e3029e4fe5c8d4b89152/pytsql-1.4.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef36dd680636171ee6c8c24d6e8d2b494e9d00c708cd7ffc1226e7c21981de8e",
"md5": "a64e1c80f5d0c02208a5842f578298bf",
"sha256": "3b3980de88a74c29b548421f2219ee149548c7075e388495ca07f11da07cdf12"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a64e1c80f5d0c02208a5842f578298bf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 20716882,
"upload_time": "2024-11-04T20:39:18",
"upload_time_iso_8601": "2024-11-04T20:39:18.554215Z",
"url": "https://files.pythonhosted.org/packages/ef/36/dd680636171ee6c8c24d6e8d2b494e9d00c708cd7ffc1226e7c21981de8e/pytsql-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0970462fa22fcf5a782107260347cc8fb79f6c1e4ce24d2744e4812e75db35c",
"md5": "86c265b2d27e1570888d1aed5d7aa04e",
"sha256": "457d5879f4108445a495702d151031bb266bf23262c7bffbfe10b3f70ec779e9"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "86c265b2d27e1570888d1aed5d7aa04e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3545229,
"upload_time": "2024-11-04T20:39:21",
"upload_time_iso_8601": "2024-11-04T20:39:21.460081Z",
"url": "https://files.pythonhosted.org/packages/a0/97/0462fa22fcf5a782107260347cc8fb79f6c1e4ce24d2744e4812e75db35c/pytsql-1.4.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83b770ccc89f1c561177fe5110476b0b55302830c0ca0cde56bd8d45b56b146a",
"md5": "98df7ea4698465d73fb0ff175ac99987",
"sha256": "65e131b2a0e383e3697cb9284ca0a87e9bf5434b46952dfce57cf1d4c043f12a"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "98df7ea4698465d73fb0ff175ac99987",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3554144,
"upload_time": "2024-11-04T20:39:23",
"upload_time_iso_8601": "2024-11-04T20:39:23.942595Z",
"url": "https://files.pythonhosted.org/packages/83/b7/70ccc89f1c561177fe5110476b0b55302830c0ca0cde56bd8d45b56b146a/pytsql-1.4.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03d30f4ab539187c57730850663fd2af9c5099b56fbb6b43e3eecc00ef0b46c7",
"md5": "4a6e5fec92a07f0137baaef67052191f",
"sha256": "5fc9bc4b8aa9d4031cc74ead63225165b6feba92d5bb94c828cefcb576627e9e"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4a6e5fec92a07f0137baaef67052191f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 4568794,
"upload_time": "2024-11-04T20:39:25",
"upload_time_iso_8601": "2024-11-04T20:39:25.649038Z",
"url": "https://files.pythonhosted.org/packages/03/d3/0f4ab539187c57730850663fd2af9c5099b56fbb6b43e3eecc00ef0b46c7/pytsql-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a910bc8933d08a033b6a30b54b7fdec9b1b1e5894b98e5f78413a80c87bc7f9",
"md5": "55cc98c43c0ad25d4e6956d889728170",
"sha256": "d3e12c8ac3e89c55bca5708a1d52c1bbd4677a82ea68cdbb148d2cd67f065707"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "55cc98c43c0ad25d4e6956d889728170",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 4598871,
"upload_time": "2024-11-04T20:39:27",
"upload_time_iso_8601": "2024-11-04T20:39:27.175990Z",
"url": "https://files.pythonhosted.org/packages/5a/91/0bc8933d08a033b6a30b54b7fdec9b1b1e5894b98e5f78413a80c87bc7f9/pytsql-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cfaaae10d6ab848543449005b338e6a5e979bbaab7ed0b5eae05ce71df42a1ed",
"md5": "c62890f51f0856cf502ba5d50f615eba",
"sha256": "ec087a59842bbc9143b5a9d404a7b88fd5500ef0e088e2cc809637b8b28e6c05"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c62890f51f0856cf502ba5d50f615eba",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 20883709,
"upload_time": "2024-11-04T20:39:29",
"upload_time_iso_8601": "2024-11-04T20:39:29.198859Z",
"url": "https://files.pythonhosted.org/packages/cf/aa/ae10d6ab848543449005b338e6a5e979bbaab7ed0b5eae05ce71df42a1ed/pytsql-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af1101f281f801de36bf3f8841bae9d95a42fe7ef1127073e4116047aa4ed2da",
"md5": "4f6ff7840be86040cd53f488001be6ce",
"sha256": "297b0664ed5222b4bce00e2b720d63eb7c2848effb5cd35a4284f70b76a132d4"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4f6ff7840be86040cd53f488001be6ce",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 21810485,
"upload_time": "2024-11-04T20:39:34",
"upload_time_iso_8601": "2024-11-04T20:39:34.326935Z",
"url": "https://files.pythonhosted.org/packages/af/11/01f281f801de36bf3f8841bae9d95a42fe7ef1127073e4116047aa4ed2da/pytsql-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b42907086b6f281153acf86491e0ae3e0fbaacad2a744feb0c2dd590bef23d2b",
"md5": "71d53a193457730713728ce41365b67a",
"sha256": "51a49f565be673259733d9e0ccf26b02cb45fc8acfebec74d65d6718ea43138a"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "71d53a193457730713728ce41365b67a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 20188065,
"upload_time": "2024-11-04T20:39:38",
"upload_time_iso_8601": "2024-11-04T20:39:38.043786Z",
"url": "https://files.pythonhosted.org/packages/b4/29/07086b6f281153acf86491e0ae3e0fbaacad2a744feb0c2dd590bef23d2b/pytsql-1.4.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86cca886ff5eb276b08a3042fde235baf8cba4deb5106edb40c5ccb8f3bfd158",
"md5": "d75f8539ddebeedabb99d852bc7f5f97",
"sha256": "31f75948d1b9623f26eb87761d0d5908bc3fc209eadebfae6fd0d79f15a2dce2"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d75f8539ddebeedabb99d852bc7f5f97",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 20742222,
"upload_time": "2024-11-04T20:39:41",
"upload_time_iso_8601": "2024-11-04T20:39:41.737175Z",
"url": "https://files.pythonhosted.org/packages/86/cc/a886ff5eb276b08a3042fde235baf8cba4deb5106edb40c5ccb8f3bfd158/pytsql-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f99db91d14811127f1e06b6e383a401f4a9c4a4c5b8eb7a9109ac596de09b36d",
"md5": "1e6e8d59c7dbf49f3dd24ff80470a5dc",
"sha256": "02b28c5486b9ff71d089c8885cc91e0b31ece9dea9394a3ba9453639e66301dc"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "1e6e8d59c7dbf49f3dd24ff80470a5dc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3544633,
"upload_time": "2024-11-04T20:39:44",
"upload_time_iso_8601": "2024-11-04T20:39:44.536035Z",
"url": "https://files.pythonhosted.org/packages/f9/9d/b91d14811127f1e06b6e383a401f4a9c4a4c5b8eb7a9109ac596de09b36d/pytsql-1.4.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc0e9e5a7be899df3d4ba39004828648619df6430f0d8c0b253763a1999a4f58",
"md5": "b700eba57faaa9f5b1ea9be6792ec448",
"sha256": "8092d698dacc89336488529063e245427f5bee083959284ef7b70ffab4d0adb7"
},
"downloads": -1,
"filename": "pytsql-1.4.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "b700eba57faaa9f5b1ea9be6792ec448",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3554000,
"upload_time": "2024-11-04T20:39:46",
"upload_time_iso_8601": "2024-11-04T20:39:46.544615Z",
"url": "https://files.pythonhosted.org/packages/bc/0e/9e5a7be899df3d4ba39004828648619df6430f0d8c0b253763a1999a4f58/pytsql-1.4.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b9540b37170abac79bf326d6d14ed6913c4c3c7eca944f316cb06cb5ff58d99",
"md5": "c9f7a5886168b444e24ff145225572fa",
"sha256": "76c0c4751e091d32c21aba95e7293d077cf365ed3cebfc64afb219220f293c71"
},
"downloads": -1,
"filename": "pytsql-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "c9f7a5886168b444e24ff145225572fa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 2648139,
"upload_time": "2024-11-04T20:39:48",
"upload_time_iso_8601": "2024-11-04T20:39:48.486086Z",
"url": "https://files.pythonhosted.org/packages/5b/95/40b37170abac79bf326d6d14ed6913c4c3c7eca944f316cb06cb5ff58d99/pytsql-1.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-04 20:39:48",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "quantco",
"github_project": "pytsql",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pytsql"
}