fastmssql 0.1.0__cp312-cp312-win_amd64.whl → 0.1.2__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.0.dist-info → fastmssql-0.1.2.dist-info}/METADATA +23 -12
- fastmssql-0.1.2.dist-info/RECORD +7 -0
- {fastmssql-0.1.0.dist-info → fastmssql-0.1.2.dist-info}/licenses/LICENSE +2 -2
- fastmssql-0.1.0.dist-info/RECORD +0 -7
- {fastmssql-0.1.0.dist-info → fastmssql-0.1.2.dist-info}/WHEEL +0 -0
|
Binary file
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastmssql
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
|
-
Classifier: License ::
|
|
6
|
+
Classifier: License :: Other/Proprietary License
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
8
8
|
Classifier: Programming Language :: Python :: 3.8
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -23,12 +23,13 @@ Requires-Dist: psutil>=5.9.0 ; extra == 'dev'
|
|
|
23
23
|
Provides-Extra: dev
|
|
24
24
|
License-File: LICENSE
|
|
25
25
|
Summary: A high-performance Python library for Microsoft SQL Server using Rust and Tiberius
|
|
26
|
-
Author-email:
|
|
26
|
+
Author-email: Riveranda <riverb514@gmail.com>
|
|
27
|
+
License: PolyForm Noncommercial License 1.0.0
|
|
27
28
|
Requires-Python: >=3.8
|
|
28
29
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
29
30
|
|
|
30
31
|
|
|
31
|
-
#
|
|
32
|
+
# Fastmssql
|
|
32
33
|
|
|
33
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.
|
|
34
35
|
|
|
@@ -149,7 +150,7 @@ async def main():
|
|
|
149
150
|
asyncio.run(main())
|
|
150
151
|
```
|
|
151
152
|
|
|
152
|
-
#### 2. Individual Parameters
|
|
153
|
+
#### 2. Individual Parameters
|
|
153
154
|
|
|
154
155
|
```python
|
|
155
156
|
import asyncio
|
|
@@ -725,31 +726,41 @@ async def olap_operations():
|
|
|
725
726
|
|
|
726
727
|
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
|
|
727
728
|
|
|
729
|
+
|
|
728
730
|
## License
|
|
729
731
|
|
|
730
732
|
This project is licensed under the PolyForm Noncommercial License 1.0.0. See the LICENSE file for details.
|
|
731
733
|
|
|
732
734
|
## Third-Party Attributions
|
|
733
735
|
|
|
734
|
-
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`.
|
|
735
739
|
|
|
736
740
|
- [Tiberius](https://github.com/prisma/tiberius) (Apache License 2.0)
|
|
737
741
|
- [PyO3](https://github.com/PyO3/pyo3) (Apache License 2.0)
|
|
738
742
|
- [pyo3-asyncio](https://github.com/PyO3/pyo3-asyncio) (Apache License 2.0)
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
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)
|
|
742
754
|
- [pytest](https://github.com/pytest-dev/pytest) (MIT License)
|
|
743
755
|
- [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) (MIT License)
|
|
744
756
|
- [black](https://github.com/psf/black) (MIT License)
|
|
745
757
|
- [ruff](https://github.com/astral-sh/ruff) (MIT License)
|
|
746
|
-
|
|
747
|
-
Standard library:
|
|
748
|
-
|
|
758
|
+
- [maturin](https://github.com/PyO3/maturin) (Apache License 2.0 or MIT License)
|
|
749
759
|
- [Python](https://www.python.org/) and [asyncio](https://docs.python.org/3/library/asyncio.html) (Python Software Foundation License)
|
|
750
760
|
|
|
751
761
|
See the `licenses/NOTICE.txt` file for full attribution and copyright information.
|
|
752
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.
|
|
753
764
|
|
|
754
765
|
## Acknowledgments
|
|
755
766
|
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
fastmssql-0.1.2.dist-info/METADATA,sha256=eJlsC20D6xFeEfl0MaE_JwfOAlJjXqAHCF_I_nD9EjY,26856
|
|
2
|
+
fastmssql-0.1.2.dist-info/WHEEL,sha256=UoHC5NvzY0geoE2r8Mxbl5fR5fYT9OeSzrhPCIC4-kQ,96
|
|
3
|
+
fastmssql-0.1.2.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=qKOle8w_yd4RqIhRHsex9qB78uwej_AZqWtuea7Mf0M,2747904
|
|
7
|
+
fastmssql-0.1.2.dist-info/RECORD,,
|
|
@@ -132,8 +132,8 @@ of your licenses.
|
|
|
132
132
|
|
|
133
133
|
## Required Notice
|
|
134
134
|
|
|
135
|
-
Required Notice: Copyright
|
|
135
|
+
Required Notice: Copyright Riveranda (https://github.com/Rivendael)
|
|
136
136
|
|
|
137
137
|
## Contact
|
|
138
138
|
|
|
139
|
-
For questions about this license or the software, contact the author via
|
|
139
|
+
For questions about this license or the software, contact the author via Email: riverb514@gmail.com
|
fastmssql-0.1.0.dist-info/RECORD
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
fastmssql-0.1.0.dist-info/METADATA,sha256=zTpd4QLpPfIL9p2jSW_j0GnaNU1xcUrscXphRXcZ4GU,25719
|
|
2
|
-
fastmssql-0.1.0.dist-info/WHEEL,sha256=UoHC5NvzY0geoE2r8Mxbl5fR5fYT9OeSzrhPCIC4-kQ,96
|
|
3
|
-
fastmssql-0.1.0.dist-info/licenses/LICENSE,sha256=wGTGRIlCuZyEM2kouBMu9DWTTFOXXGkTP4fszNoR3XA,4914
|
|
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=ArGHV6dWDYWxCNPIcXyWj5IPK1mSSrbIOwdz9viDBl0,2747904
|
|
7
|
-
fastmssql-0.1.0.dist-info/RECORD,,
|
|
File without changes
|