mssql-python-rs 0.2.0__cp310-abi3-win_amd64.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,5 @@
1
+ from .mssql_py_core import *
2
+
3
+ __doc__ = mssql_py_core.__doc__
4
+ if hasattr(mssql_py_core, "__all__"):
5
+ __all__ = mssql_py_core.__all__
Binary file
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: mssql-python-rs
3
+ Version: 0.2.0
4
+ Classifier: Development Status :: 4 - Beta
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Operating System :: MacOS :: MacOS X
8
+ Classifier: Operating System :: Microsoft :: Windows
9
+ Classifier: Operating System :: POSIX :: Linux
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: Implementation :: CPython
12
+ Classifier: Programming Language :: Rust
13
+ Classifier: Topic :: Database
14
+ Requires-Dist: pytest>=7.0 ; extra == 'dev'
15
+ Requires-Dist: pytest-asyncio>=0.21.0 ; extra == 'dev'
16
+ Requires-Dist: python-dotenv>=1.0.0 ; extra == 'dev'
17
+ Requires-Dist: maturin>=1.0,<2.0 ; extra == 'dev'
18
+ Provides-Extra: dev
19
+ Summary: Rust-based native runtime (TDS core and ODBC driver) consumed by the mssql-python driver.
20
+ Keywords: sqlserver,azure-sql,tds,odbc,mssql
21
+ Author: Microsoft Corporation
22
+ License: MIT
23
+ Requires-Python: >=3.10
24
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
25
+ Project-URL: Homepage, https://github.com/microsoft/mssql-python
26
+ Project-URL: Source, https://github.com/microsoft/mssql-rs
27
+
28
+ # mssql-python-rs
29
+
30
+ The Rust-based native runtime for connecting to Microsoft SQL Server and Azure
31
+ SQL, shipped as prebuilt platform wheels. This distribution bundles two native
32
+ components:
33
+
34
+ - **`mssql_py_core`** — a PyO3 extension that implements the SQL Server TDS
35
+ protocol in Rust. It backs high-throughput paths (such as bulk copy) for the
36
+ [`mssql-python`](https://github.com/microsoft/mssql-python) driver.
37
+ - **`mssqlodbc`** (alpha) — an ODBC driver for SQL Server, implemented in
38
+ Rust. It exposes the native ODBC C API. It is under active development and
39
+ validation for use as an opt-in backend for the `mssql-python` driver. It is
40
+ not yet a complete general-purpose replacement for Microsoft ODBC Driver 18
41
+ for SQL Server.
42
+
43
+ `mssql-python-rs` is the native runtime that
44
+ [`mssql-python`](https://github.com/microsoft/mssql-python) depends on.
45
+
46
+ ## SQL string decoding
47
+
48
+ The `mssql_py_core` cursor uses the shared
49
+ [TDS string decoding rules](../mssql-tds/README.md#sql-string-decoding).
50
+ Leading BOM-shaped bytes in SQL values remain data in the column's encoding;
51
+ they are not removed or used to select another encoding.
52
+
53
+ ## Platforms
54
+
55
+ Prebuilt CPython 3.10+ wheels for:
56
+
57
+ - **Windows** — x64, and ARM64 (CPython 3.11+)
58
+ - **macOS** — universal2 (x86_64 + arm64)
59
+ - **Linux** — glibc (`manylinux_2_28`, `manylinux_2_34`) and musl
60
+ (`musllinux_1_2`), on x86_64 and aarch64
61
+
62
+ ## License
63
+
64
+ Licensed under the [MIT License](https://github.com/microsoft/mssql-rs/blob/main/LICENSE).
65
+
@@ -0,0 +1,7 @@
1
+ mssql_py_core/__init__.py,sha256=dWpohDsyIDgFPp8wCLZEDeEsk_Kn4vL8Bp83Ptn-jNg,135
2
+ mssql_py_core/mssql_py_core.pyd,sha256=8O8VYwqfKtPTpz2XSCPbsIWm7zAZhGBh9XoJS7l2s9M,15008096
3
+ mssql_python_rs-0.2.0.dist-info/sboms/mssql-py-core.cyclonedx.json,sha256=66JMk1jfKIbytJwFS9zJmYQvJXClEaQjiMJ55fW1NN4,297753
4
+ mssql_python_rs-0.2.0.dist-info/METADATA,sha256=jVr--0GYayjJPb4JysjNRS7KBXyvp6iQ71qbxBmrbLY,2661
5
+ mssql_python_rs-0.2.0.dist-info/WHEEL,sha256=7HL-TGvq44Ofp0yhZL-uRIIFHcJTIqqkRZVQ2wZidzM,96
6
+ mssql_py_core/libs/windows/x64/mssqlodbc.dll,sha256=THN1JZ50XK2RTaSlkvjG_mSLwpF2-Wu6K9-I_WiGRZU,14302528
7
+ mssql_python_rs-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.15.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-abi3-win_amd64