fastmssql 0.1.1__cp312-cp312-win_amd64.whl → 0.1.3__cp312-cp312-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.
Potentially problematic release.
This version of fastmssql might be problematic. Click here for more details.
- fastmssql/fastmssql_core.cp312-win_amd64.pyd +0 -0
- {fastmssql-0.1.1.dist-info → fastmssql-0.1.3.dist-info}/METADATA +20 -10
- fastmssql-0.1.3.dist-info/RECORD +7 -0
- {fastmssql-0.1.1.dist-info → fastmssql-0.1.3.dist-info}/WHEEL +1 -1
- fastmssql-0.1.1.dist-info/RECORD +0 -7
- {fastmssql-0.1.1.dist-info → fastmssql-0.1.3.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastmssql
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: License :: Other/Proprietary License
|
|
@@ -29,7 +29,7 @@ Requires-Python: >=3.8
|
|
|
29
29
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
#
|
|
32
|
+
# Fastmssql
|
|
33
33
|
|
|
34
34
|
A high-performance Python library for Microsoft SQL Server, built with Rust using the [Tiberius](https://github.com/prisma/tiberius) driver, [PyO3](https://github.com/PyO3/pyo3), and [bb8](https://github.com/djc/bb8) connection pooling.
|
|
35
35
|
|
|
@@ -150,7 +150,7 @@ async def main():
|
|
|
150
150
|
asyncio.run(main())
|
|
151
151
|
```
|
|
152
152
|
|
|
153
|
-
#### 2. Individual Parameters
|
|
153
|
+
#### 2. Individual Parameters
|
|
154
154
|
|
|
155
155
|
```python
|
|
156
156
|
import asyncio
|
|
@@ -726,31 +726,41 @@ async def olap_operations():
|
|
|
726
726
|
|
|
727
727
|
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
|
|
728
728
|
|
|
729
|
+
|
|
729
730
|
## License
|
|
730
731
|
|
|
731
732
|
This project is licensed under the PolyForm Noncommercial License 1.0.0. See the LICENSE file for details.
|
|
732
733
|
|
|
733
734
|
## Third-Party Attributions
|
|
734
735
|
|
|
735
|
-
This project includes and depends on third-party libraries licensed under the Apache License 2.0
|
|
736
|
+
This project includes and depends on third-party libraries licensed under the Apache License 2.0 and MIT License, as well as other open source licenses.
|
|
737
|
+
|
|
738
|
+
**Note:** Additional third-party libraries and their license information are listed in `licenses/NOTICE.txt`.
|
|
736
739
|
|
|
737
740
|
- [Tiberius](https://github.com/prisma/tiberius) (Apache License 2.0)
|
|
738
741
|
- [PyO3](https://github.com/PyO3/pyo3) (Apache License 2.0)
|
|
739
742
|
- [pyo3-asyncio](https://github.com/PyO3/pyo3-asyncio) (Apache License 2.0)
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
+
- [bb8](https://github.com/djc/bb8) (MIT or Apache License 2.0)
|
|
744
|
+
- [bb8-tiberius](https://github.com/prisma/tiberius) (Apache License 2.0)
|
|
745
|
+
- [tokio](https://github.com/tokio-rs/tokio) (MIT or Apache License 2.0)
|
|
746
|
+
- [tokio-util](https://github.com/tokio-rs/tokio) (MIT or Apache License 2.0)
|
|
747
|
+
- [futures](https://github.com/rust-lang/futures-rs) (MIT or Apache License 2.0)
|
|
748
|
+
- [serde](https://github.com/serde-rs/serde) (MIT or Apache License 2.0)
|
|
749
|
+
- [serde_json](https://github.com/serde-rs/json) (MIT or Apache License 2.0)
|
|
750
|
+
- [anyhow](https://github.com/dtolnay/anyhow) (MIT or Apache License 2.0)
|
|
751
|
+
- [chrono](https://github.com/chronotope/chrono) (MIT or Apache License 2.0)
|
|
752
|
+
- [uuid](https://github.com/uuid-rs/uuid) (MIT or Apache License 2.0)
|
|
753
|
+
- [tempfile](https://github.com/Stebalien/tempfile) (MIT or Apache License 2.0)
|
|
743
754
|
- [pytest](https://github.com/pytest-dev/pytest) (MIT License)
|
|
744
755
|
- [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) (MIT License)
|
|
745
756
|
- [black](https://github.com/psf/black) (MIT License)
|
|
746
757
|
- [ruff](https://github.com/astral-sh/ruff) (MIT License)
|
|
747
|
-
|
|
748
|
-
Standard library:
|
|
749
|
-
|
|
758
|
+
- [maturin](https://github.com/PyO3/maturin) (Apache License 2.0 or MIT License)
|
|
750
759
|
- [Python](https://www.python.org/) and [asyncio](https://docs.python.org/3/library/asyncio.html) (Python Software Foundation License)
|
|
751
760
|
|
|
752
761
|
See the `licenses/NOTICE.txt` file for full attribution and copyright information.
|
|
753
762
|
The full text of the Apache License 2.0 is provided in the `licenses/APACHE_LICENSE_2.0.txt` file.
|
|
763
|
+
The full text of the MIT License is provided in the `licenses/MIT_LICENSE.txt` file.
|
|
754
764
|
|
|
755
765
|
## Acknowledgments
|
|
756
766
|
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
fastmssql-0.1.3.dist-info/METADATA,sha256=PFJVexmNiZ4cSZDy6f2292mVAGB3ltz_QNo9OQadpko,26856
|
|
2
|
+
fastmssql-0.1.3.dist-info/WHEEL,sha256=HF3aUMilrtO42xS_fBzOVaPE8OtiNjP_RotLatII7HM,96
|
|
3
|
+
fastmssql-0.1.3.dist-info/licenses/LICENSE,sha256=sHV8b3wGLX_KE9w2JVnp80n-2hQphvBuBfCOlnH4ya0,4904
|
|
4
|
+
fastmssql/__init__.py,sha256=DxbJfaqDV2yuFLtNjXD18xS8_JcizitpdGiobNx5DZ8,625
|
|
5
|
+
fastmssql/fastmssql.py,sha256=cFkcZ_KJD6PMydAmq5NdTKxhlkof50Z98W0FKIXrzmI,26952
|
|
6
|
+
fastmssql/fastmssql_core.cp312-win_amd64.pyd,sha256=DYb7ZcEkDvmFumzJNSk0t3S6Ixn9q68NIkyJatGxxKg,2747904
|
|
7
|
+
fastmssql-0.1.3.dist-info/RECORD,,
|
fastmssql-0.1.1.dist-info/RECORD
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
fastmssql-0.1.1.dist-info/METADATA,sha256=65JIsPJ3FYhmljutpxlkUX0iqLHnBGtYpysWGNDl8es,25760
|
|
2
|
-
fastmssql-0.1.1.dist-info/WHEEL,sha256=UoHC5NvzY0geoE2r8Mxbl5fR5fYT9OeSzrhPCIC4-kQ,96
|
|
3
|
-
fastmssql-0.1.1.dist-info/licenses/LICENSE,sha256=sHV8b3wGLX_KE9w2JVnp80n-2hQphvBuBfCOlnH4ya0,4904
|
|
4
|
-
fastmssql/__init__.py,sha256=DxbJfaqDV2yuFLtNjXD18xS8_JcizitpdGiobNx5DZ8,625
|
|
5
|
-
fastmssql/fastmssql.py,sha256=cFkcZ_KJD6PMydAmq5NdTKxhlkof50Z98W0FKIXrzmI,26952
|
|
6
|
-
fastmssql/fastmssql_core.cp312-win_amd64.pyd,sha256=tPA36TAHa0xziA3Vm0bLueDd6nWPGRmRnvRJt2SF5mQ,2747904
|
|
7
|
-
fastmssql-0.1.1.dist-info/RECORD,,
|
|
File without changes
|