A fast and async SQL database wrapper for Python, with support for MySQL, PostgreSQL, SQLite and MS SQL Server.
Project description
pysqlx-core
pysqlx-core is an extremely fast Python library for communicating with various SQL databases.
This package provides the core functionality for PySQLX-Engine.
The package is currently a work in progress and subject to significant change.
pysqlx-core will be a separate package, required by pysqlx-engine.
This package is written entirely in Rust and compiled as a Python library using PyO3 and PyO3-Asyncio.
This core is not so friendly, but maybe you want to use it, feel free to suggest improvements.
Supported databases
Supported Python versions
Supported operating systems
Example of installation:
PIP
$ pip install pysqlx-core
Poetry
$ poetry add pysqlx-core
Example of usage:
import pysqlx_core
import asyncio
async def main(sql):
# Create a connection
db = await pysqlx_core.new(uri="postgresql://postgres:postgrespw@localhost:49153")
# Create a table
await db.execute(sql="""
CREATE TABLE IF NOT EXISTS test (
id SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL
);
"""
)
# Insert a row and return quantity rows affected
await db.execute(sql="INSERT INTO test (name) VALUES ('Carlos');")
# Select all rows, return a class PySQLXResult
result = await db.query(sql="SELECT * FROM test;")
# get first row
row = result.get_first() # Dict[str, Any]
# get all rows
rows = result.get_all() # List[Dict[str, Any]]
#return the db types to Pydantic BaseModel
types = result.get_model() # Dict[str, str]
# Select all rows, return how List[Dict[str, Any]]
rows = await db.query_as_list(sql="SELECT * FROM test;")
# close? no need 👌-> auto-close when finished programmer or go out of context..
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pysqlx_core-0.1.50.tar.gz
(200.0 kB
view hashes)
Built Distributions
Close
Hashes for pysqlx_core-0.1.50-cp312-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95c9dd1549d1a86780fa51743ac005d868c3f638458188ad9a3db7d2cb3d3e3a |
|
MD5 | f968f40648617350942237c9af326424 |
|
BLAKE2b-256 | cfe09b913630df0718eb097c4581615d2e8bbf482503b758c0bfb1fdb6778d94 |
Close
Hashes for pysqlx_core-0.1.50-cp312-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6f59ac47a98e300481e356f992e45a45242a3e65785213a8ca9850d1e7b08da |
|
MD5 | 96ce61f7ff571707f268a913dde87834 |
|
BLAKE2b-256 | 9e2aec9b7702693c5593f5dda76da5c77cb5e387973ca5e3e775f25ac7f2cc1e |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3d740460f36a423ee2d2d9baad78a0c8e2250c01215a8eb0d7b1617fa279a8e |
|
MD5 | a77ad8aae087df286d2ece2ce3a2f92b |
|
BLAKE2b-256 | c0a01edf8d83b5343c07784e9de45fcaff9359fa665b2c6f118f2935a87bdcee |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b87eeca1522e827094d552dc6345a2abdc089c18c74d05a40cfddd691abb4109 |
|
MD5 | 3178429c18e35935903c364890f0a14d |
|
BLAKE2b-256 | 21f6568c7682effc404e3984a97ea72c0aa78c6860660fbc08af57f8eff327e9 |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66dd2a9d1fe0e596166bf818edb317aba76dc12f6b5c7f6e86cb2d79bb8e5499 |
|
MD5 | 3d6acb20635d4052e57e3e9e6c4da943 |
|
BLAKE2b-256 | 5bce7d7cc99885a0152772768b435e10d96f482967a5b4a699b1a92101cf3d80 |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c85f1ddc8b29a249ae7e7bcc67d316350da00bdbcc7f3211ad273828671b01ae |
|
MD5 | 335a807675df2997f68d8a5e992a4cf6 |
|
BLAKE2b-256 | d81abbf7db1463f0cd052a5051b69655d8252d338aadd914085fcb91283aef14 |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4295c92be0d0150782e7d56b089866e6d0170c2a5464d06cd6a9831e30e28f7 |
|
MD5 | b6948677367891380674631e9f41bfb7 |
|
BLAKE2b-256 | 45ae6771713eb2eb272a35f575cdac3013520de000ec30f0396bc985b9cbe15f |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6abb8a57d4377ab7842d9d983d0d6ac2327aff5c1f8d1b69b7a4906f05f283ed |
|
MD5 | dae90011259184d3595b009885696e2f |
|
BLAKE2b-256 | 74841b92fa892511f0811583665adfa6aa89152f3f6c93e8a8edfa4902c93384 |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c5ca8239b95eb647ccc1347609d9b7c2bdfec1c6d54ec16fa78069f425ccafb |
|
MD5 | 041c7bc32f37bd5c6584489762a36c97 |
|
BLAKE2b-256 | 20aedc18ddc62ceecdce4d8d4a5eae4b8f0046b032f368036cf4e91953c8a60e |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dec105ec29a040ae1b34a8fbb5df0f15055d46810e323a5f5397c8906757da37 |
|
MD5 | 1fc34b356a80832cd84c40959554eb45 |
|
BLAKE2b-256 | e74b16f3a8367d3d18d0c4afaa4aff6d740b07451a12a432496725458881016d |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c49e3ee136854841da346c87a00ffbf0f7c750bdc54d0208e15e91e6a2749fce |
|
MD5 | 872cde241247c0ff9c6311166a95d204 |
|
BLAKE2b-256 | 9543948f95e26580a1b58dc70db20ef30c51c926dde2f7bda26587e206b8907b |
Close
Hashes for pysqlx_core-0.1.50-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35ef41d4689456246861d010e5fb0a5d6b9032362119966aefb4b424c0b95625 |
|
MD5 | 3d0ed376b266244faf9c9e592dfe5227 |
|
BLAKE2b-256 | d34f3d062c5a7f60c2e3bade378f49da513168e0ddd386391a96eb8b95a16d25 |
Close
Hashes for pysqlx_core-0.1.50-cp311-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93b546a513624f88f7dc809e1545b00630b54770f373c40f341b1ec04ad2f09d |
|
MD5 | 3264fcb7784b591984df795afcea7ea0 |
|
BLAKE2b-256 | 0719ab019675a1db5183120c921db2bc2536274f7f2f656bda889c2a20d639ac |
Close
Hashes for pysqlx_core-0.1.50-cp311-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4cae2f5ebfa8edbc03ea9db4db245bd38de416cb89f6d1040ee4fb1f5b908ad |
|
MD5 | 345b1f921078394cf3c156cd75e08817 |
|
BLAKE2b-256 | f5e487439b14152a7995b9e28a8274fb179ea6ca487e082542fdee5701fb3e69 |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c34621a87c7da4275581a83bb43a3a0632cbf425d3051041a8586981325a75e2 |
|
MD5 | 0af86c52c5bdb53f1bf01d649e937a8f |
|
BLAKE2b-256 | f5a479bfc4535c69ef9a72c4002debdb1d8e98333859a4ede6d48479d7645746 |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78526566857d7cf1de82484c8312eb5455c5abed90925708ea215b81e9cf7d22 |
|
MD5 | 0bc621e79ddded4656a2f54ed3019acb |
|
BLAKE2b-256 | dda07dc37de6121416ea092b7ac9e7356aa551f28faf9169d99f02fb315c94d6 |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb3467b3dedc584ebe633689d7d72b8a48b8de7b9d04a8537cb0a41c7f35b89c |
|
MD5 | b34f0382d5f45df5772375fe9dfd6ff7 |
|
BLAKE2b-256 | 39ba66f5da87a49baa1d00efa37c19feef3d2ae09791cff3cb9d99d41ef7cc02 |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | acb384e4fa2b34d87fd0f2eccfa2e451cd955c3b7f06633c500c37366fb1a50d |
|
MD5 | e776b17815c6ba7a5f6282b7a6d0ef36 |
|
BLAKE2b-256 | 6bc26540176af482fc066174da483e9c5f237259c2f0644702adbb0fd417e07e |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b95bbafc36876f5ef90d8c11eefe8b33ddf6f52fa3ec87296313173837864451 |
|
MD5 | 265f9e8cff92abf790ce696222a58f99 |
|
BLAKE2b-256 | 37308bd66961c812f6939614227c0d3d717dd5fda0627154222cd0bfca7ef64a |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c153b5aca888be46d8511badbb8bc5e498e7bfa00a432824037f5e45d80bbbf4 |
|
MD5 | c752116db3db78d1be9c07e7088811fe |
|
BLAKE2b-256 | dd6fea887b7e4c34f4e2f1c3c96dc852b59ea7f7c41aba4bb3eb73562c5cd439 |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b3725cd71b04da7ae2c5fd92fccf106ee8fcb7fcc0f2f4cc3bc621ee4ef674d |
|
MD5 | 88e5c59d4729ab4606fbf9f9531f0a23 |
|
BLAKE2b-256 | 5b6ae251e125d47e72eb29060ea2d53146a2617a746f2bbebfb8dffc718781e3 |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85c73e2b589efe1388dd8e93cc6884da73ee0641db5fb7168c76a10b0b38b87c |
|
MD5 | 510102f28d7795131ee9bb36e522e007 |
|
BLAKE2b-256 | cae24a0a38b92352e2ee29531c1eebce4f809039d4cf5d4035c537a796836a38 |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d39376c52173ef6e8856d3f4a6fd1ee08c39cc78c08c305df07fd1ad586b551 |
|
MD5 | 9201beeb1fc86b581f4b6025d3ba7e9d |
|
BLAKE2b-256 | 849a6634eaab7ea88be2490670932c880f95b9d468dbc4f39a012312c2484904 |
Close
Hashes for pysqlx_core-0.1.50-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4e9c87b225d866ac93274cfd16fb8fd195f84f0775f81fb6762630128f3fdcd |
|
MD5 | dc0e51203c1104474ebe51484cf701f6 |
|
BLAKE2b-256 | fb600bb0adc26be5af715f08287394096d91bd01b73927ded050cb9fd160e93c |
Close
Hashes for pysqlx_core-0.1.50-cp310-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dfa86455fb27e1775c7d32ffd4034c403018fbfeab5228dcf6350ffe68eddf7 |
|
MD5 | ec1ca78740b5d3aabfc814764141f3b0 |
|
BLAKE2b-256 | 2df819bb14b1027508b33bfea531adea885e5dd170c8addf7d40b369af24afe2 |
Close
Hashes for pysqlx_core-0.1.50-cp310-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56467cddfdfb98a0337499602d42f84ff4dea173f0b09e4ade200ac70b8e3bc4 |
|
MD5 | 1a59c17d31ac4a52c354a6ba688d3596 |
|
BLAKE2b-256 | 511d4e75e0f906ca6e34da9b909f549d03d7f222c4ba2415bbd64901d9fac3e9 |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39ad2be8b43e7c714b22a948d119f1844fb45cf262d749314b396aff7237cd6f |
|
MD5 | 262965f927cea625488961abbc04a1a7 |
|
BLAKE2b-256 | 3b7d8ac0401b269800e74c811c6835ec966b6d50a4fc116d5e76fba75e52eeba |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 910e85e8ebb601d69d5535dd64ff0fd2e0c3c6eaab6765573608c2d2c6387264 |
|
MD5 | 301f13cea605eae7a8d9aa96bc3d131b |
|
BLAKE2b-256 | 8507e2df4d8492e48e01cb52f1cdbce7dd8b36d3ff3ea6fa0701576ff7f04b66 |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed826bcde2d5974e6162084cfc72367fdc5fce855cd8fbc6c903394bc069b429 |
|
MD5 | b5d8f4cf3771311f5662ae8966993cde |
|
BLAKE2b-256 | 958ae0cf6b35c11c4b76b1d0202d0184bf763084fb5b43e699206eea66867022 |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00411e2eebdc3470fa2bb276bb4e7d4f0c89cb18f4bc785f70f4a5371a91e710 |
|
MD5 | 05c196b2912570a304af191b3601219d |
|
BLAKE2b-256 | 614699d0be0f7f70f3be83e38ccf61ec2857278982a9d85840c9e6d9659fab4b |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ac19e284f9769d38397e362d354d2406e1e156b4d0b0448a01f66c675a07f22 |
|
MD5 | 13fe850cfe1c7ff1851c0d12dfce2972 |
|
BLAKE2b-256 | 160a2d2b9ea658176ab58b1855259d65eaf372e6c29fdc351b9db4a1c782ed09 |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | def9b3bcec9dea514e5158860e114883bbd67a771cc631dcb235f6cdb1f35f70 |
|
MD5 | 624301067b53fabbd9aed1941cbf88a9 |
|
BLAKE2b-256 | 1c22b5e489af1828c586394534f00f27552b50bd8157aa6792e7644f30eeaa07 |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a845a7f8b910f4c066c4fbd5b1e15788496c50565b5611ab2994ee005791476 |
|
MD5 | c059b2bdb33196f5a8cf722675dc7f94 |
|
BLAKE2b-256 | 73c163a2183c48b88fa2f60eafee75d603d95e31161b9f1b7f700cd360409a6f |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d04ef8a0f8fbc32b06745fdcff6e56a33f49738ae7be4704727d4824d4ded853 |
|
MD5 | 46acb60fd608e4555aff95d5f1a85ae4 |
|
BLAKE2b-256 | 83d17157c0d892d2f5729d2d7e84f5ed8448d5cb7cd2def8611ddce5a609f938 |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81e02d89e6fd19d55fd46fd27d6b802496e6f7ac70cfcb871d6d214de1a35265 |
|
MD5 | 379b3950afa9eac7447ea40b2751cd8f |
|
BLAKE2b-256 | 2fb1350bef4c9385a7f99d01c9fa8c14a94819ecb7fb454b1b2135e41907a4ff |
Close
Hashes for pysqlx_core-0.1.50-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5108d752caf04bc0713e2058d740197fb617683f9f72f7ef19f501cf262eef0 |
|
MD5 | 7ae04fb3dcfe412f73f05c4a6a1fb2b2 |
|
BLAKE2b-256 | 8471f8a25c096d84dce361e3c03ba3a140e046536120f85adcefd0ee09d6fdc5 |
Close
Hashes for pysqlx_core-0.1.50-cp39-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b27e15523634edcb3d485d39fd62b891497e72c1285f88c87531ab209118351 |
|
MD5 | 332183699ae7b293069aa1107d38b47a |
|
BLAKE2b-256 | 324306a62f46261c0e35daba09f042bb7f86f8c979933c524e5a7757f2adb80d |
Close
Hashes for pysqlx_core-0.1.50-cp39-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71d5c0399838dd0eb2b097991bae89838c70c075b7b48b10ae14da1ceb49a99c |
|
MD5 | 100cf5e1a8e27030fb0322b6413c002a |
|
BLAKE2b-256 | 04aeeb489266ee2c0f8d7fc8076bab375430d8a908eaffb8e81b2ec619d2dbf1 |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae295d61cbdb2717da61e71c88a078c90e2806028c92760bdfd5e1cb15b5294a |
|
MD5 | ae0899d4388b258e4a657cfc4a917064 |
|
BLAKE2b-256 | 9f906b9093699854f84b23badd2cd030a6b7989873204cd109661361d5ec01c9 |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b4e10d3901c9f5f2c26fb4aeee7419eaa1ba138fcb67d357ec698e22ea9d783 |
|
MD5 | bea0702e079d623662a7860d78940a1a |
|
BLAKE2b-256 | eef4281989f0c1eacbd8f9c4ff90f7014a007b858d7ef2ba1ed73f1f96a3be90 |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8f33783974ede9867d0308992b85dcccf27cf811e4e1aee7c2693549176daa5 |
|
MD5 | d16014465a2db54b70dd2ac79a4e75ee |
|
BLAKE2b-256 | 50b46cfb9c9954a020de4ac6f2cfcb4cced1d0bca1d94c52d3dfab5f98fef3f0 |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5328f049edff09903704b7860ae98f218ef383a0261490ba85826bf3d4c38db6 |
|
MD5 | a3089a42738e5c218dffd6f20a65e4b8 |
|
BLAKE2b-256 | 7110a4f569401b88e7dfd4e2e4ec329e317267de89270754e9d2f145a851e26e |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 925aceab9225ff05f115f824a26ed696465b7bc10c79c134871089d9f21f0c18 |
|
MD5 | 2cdd5eb29fc348d7de9266421241d84f |
|
BLAKE2b-256 | 1ead62c8703199770933081127ac69f36d252cb58a07bbf53bc7060d2d32bde3 |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1f9fcd2ddc4212a54d7c589f0040acaf35692f8b431085e2729481e0734f07d |
|
MD5 | f67a9fccc7f22203fd81ebf957d7236b |
|
BLAKE2b-256 | 763c489fc20073d63be3e63cdca8ff83b4eac0eaf40c088ae9b19c8e85ae7396 |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fd9aeea6cde88c2b33c74153f4d4cec3fd290392918cd508fd75561601eed1b |
|
MD5 | b1ee2ea578fa47ecbc45b2da06e44e96 |
|
BLAKE2b-256 | fbdbb84c653f67aa5cc51ca266501e6ed9fba785a7a201859215654a36b669f3 |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a19c4ab80601639464fa962c126ce1e8f49e41c505bd2011c0e9285f1131fbb9 |
|
MD5 | fa010848362341d2ac1663eddbda5ef3 |
|
BLAKE2b-256 | 6bd9064f7bf630bd390803ff2ef7e729bf2df9347ce239755af55724545886bb |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3117e2d92f4ccb35adfba6c5cb93e55384cc177e9d417c123b0ce65ca3a5ce54 |
|
MD5 | b343152dc06ef62ce39ee98da6cf13d0 |
|
BLAKE2b-256 | 8f3d51df7df1d03f61d7fb6c2205417fbe3d2317665488658cf390b33257731c |
Close
Hashes for pysqlx_core-0.1.50-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecbdc620ed8837bb5507677ef183ee8110109e20b5f371420c22e7d351e11a83 |
|
MD5 | 7cdd9095762baef4d59b58269c942ff6 |
|
BLAKE2b-256 | f94900d182643f2926fdb1b294a68d7a64dc91e5b7cf2740763f39bd66833e0d |
Close
Hashes for pysqlx_core-0.1.50-cp38-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77b1c6f5e6b9b557ba19935d1061d88afc8a91bc1186e253a48144325b10c300 |
|
MD5 | 0e916d5f77d9a20ef684ed46d7c96e2b |
|
BLAKE2b-256 | 2bdac42a32bca54b7e5396ccf3757121f8604f356932f4a9552bf1304e3c2772 |
Close
Hashes for pysqlx_core-0.1.50-cp38-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95469fd91c8be8d538a846210c2f9d36dbb5b69f4c8652b4adc6989ba37378f7 |
|
MD5 | ab1fe6d4730f36c8ea62612c2486ba85 |
|
BLAKE2b-256 | aa5a53375f07d8faf4431d69b8cbb680e9e9d5e49ffc0b9f1a67e5ae812cbc52 |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 399325ab709fbf1a155410aed10c8c51056b04cfa7e5b62dc5f150fcb78bb9de |
|
MD5 | b3d28dc25ed162363714aa8e016b8629 |
|
BLAKE2b-256 | 5ed7cb60ddfc4615d305a4ea878f5311e8d9baaf7fabd0b5c3b7b40520f8fb5d |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06f14ed5c7a25f2b39366c00f61f4dee87f89a0403222c7c20f0ce640b08a91a |
|
MD5 | fc51ecfc1715d93ee9c50dd9686114db |
|
BLAKE2b-256 | 8b49b7f674e57f575bb132baa515f8428ca8a504af6f7ebc8d5dfcf5190e3ee1 |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7365e57947827268e2f8e097a8262c3f0cee87e6bb8618fa86b6441781bb3738 |
|
MD5 | cd716845c0a3cbe5b35ea2cc3bcb77e7 |
|
BLAKE2b-256 | 3db4b11c2850e01381b9a0b7a99063a1deb5cbd731305a4a569730614e623c76 |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4ff4487058d27cbac8051b78a97eff35b04b81e94bee5de95f50c054cf8169c |
|
MD5 | 5d09dfb084d727eba940296331dcfc89 |
|
BLAKE2b-256 | 7fcc313540ca147bc62cb58160972e9944c6a9e643faa60371b44b6cc238a1a9 |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5228f81a82e440842ec65597a0f9766945cd85990b83060dc0496a42a56bdd46 |
|
MD5 | e281bda20628653c738f8a74c7276879 |
|
BLAKE2b-256 | 982d2f91c53ef28cfacc36744859f446a508f5043ef586faec094423824041e6 |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d9d0b1420709f5af7334486fbffd7e002c037aaac270f460e1305399885390b |
|
MD5 | 608d9c55704d612daf50c6e527bb617c |
|
BLAKE2b-256 | 0774659fb984bca5ab749f1bea0e2929c9269016fc25a7ffad648e36813ea4de |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b4020e4dfd4edc9e995bcdb9ba220fd10fe05cdcff575565dc3f31caad7699f |
|
MD5 | 8bfe39d4c59afa699c229a1076f556e1 |
|
BLAKE2b-256 | 8686c3d129f656a3824927ed7884d280576122411514425b1c8172c975f69186 |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6848d12899030d97c99620ee2d279800c25fee7a55741eb9f722f2aa3f8dc75f |
|
MD5 | 010875bfa0497214bb6eb595acc442bb |
|
BLAKE2b-256 | fb27de12585e54c1ee7809bbe4292242fa1f0ee7bc8f7d546a9aa0368ef7c416 |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d257717ab78f13b1b5a9d9288cfbb1e4696c8020fe3ee51ea0917514b825a8f0 |
|
MD5 | f4c45172b8d64cd44a194127779a5917 |
|
BLAKE2b-256 | 9498ae9518fa8f2d9528a1c2cb4a60232ad56559aadab7180440f2985b3b8ca6 |
Close
Hashes for pysqlx_core-0.1.50-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69f28ebc76b07cf89d42f73c34f272ecf42e461aa464f550e822f60747d9a965 |
|
MD5 | 0759b00f086b0d60f85ff326b3bc8776 |
|
BLAKE2b-256 | 7567f0bfe9d2199fbf4b09fee4ed070e410dc4f216e99924feeeb1066fc1ae90 |
Close
Hashes for pysqlx_core-0.1.50-cp37-none-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fb1b11d40864671b1d16a7c67a236cb11b26dd7c6dc46c281cf31b9b00f16e8 |
|
MD5 | 4990ecfca5c0a7a6e64fe1a74fce8958 |
|
BLAKE2b-256 | 1ed6568b6bb538f7ac3ae8923b8e50c53e7d6a1a27adfa902600fb1467776449 |
Close
Hashes for pysqlx_core-0.1.50-cp37-none-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28191fa0de1bdc862d5534f264ed5ba9ff649adeec90fce1177c1f002a62b819 |
|
MD5 | 1cca675b01932e9cd050e43fcebd7d3d |
|
BLAKE2b-256 | c531c3ab43749caf0d03b33b706eabfe133141d1cabdf4200e1a252fe99ac4e8 |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a006fa7db87a63ac0d54b4beff0ac174f1c62af9c57caeec685e83c75e5bee13 |
|
MD5 | 51f4fc3e2832344f9f5d00d92acb4401 |
|
BLAKE2b-256 | 84db1c3ed12df90ab190ae3e52b73522509168c5e0d79c5064df1449f8501ed7 |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bb348a8b5fc2a68cef09abcff2f8a074a029d77e1141865be22f94600bea862 |
|
MD5 | 0d31e2b272ca4f60e6baa9c5d2d10442 |
|
BLAKE2b-256 | 598992f5207d144f4ffd19c692b483f7d077ca83bf50cb0039fea5b100d2d009 |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 189d3b3e3a7a5b138e4d650d0e3e6e0a3ce2119f23aadfad1aed6e5963dcc772 |
|
MD5 | 1eee7ee3e35eff7f05b54158f69e0077 |
|
BLAKE2b-256 | f8d43a8969482388de20b6f0cc03842ac56569badfbee3cf1da849577fa3e943 |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 315bc7680d18c676be73b45a6e76cf24a6fe603811d379f5f690552cd68d0f4e |
|
MD5 | 52e3419ef5ce1316b2cf2f653342137b |
|
BLAKE2b-256 | 7d706af6a349abf0204327c2217bfc6e65f3c27920777311fa71e86ca7db4c4c |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | abc70bd2eeb73791057245bdd6cd249066077b8de95ac9acd441432d62721a47 |
|
MD5 | 011492ab10c118d703af1e8a1c9d52ff |
|
BLAKE2b-256 | 29c85da570f56bc4f947aaf41b26601d6320822323f2b161afff10ed2bac9739 |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab9d637d7a2d85a34c3d955ea63a66d4c26331dcfb512fa2e05d6fd7405aab4a |
|
MD5 | 3f07f1da31b1fcc22921ce8ea7aaf452 |
|
BLAKE2b-256 | f7c09444bacd58feefde9e6509b3946a2ca74f9156e9ff6a0bfb1525abb40d7e |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c6b2fdabf5be75b47b4bfa516a39d07caaa41e9c28bca0b7f9b7c79b105ef7b |
|
MD5 | eea02c8bf12fea3865bfb6d8de5c3844 |
|
BLAKE2b-256 | ca68f64cc0c7005a74a6f8292daef11b643581008e602dbd047f32eefec01909 |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ede181df57b82d271580507768887532a951b2d3ebeaa5934745d122ccb3f99 |
|
MD5 | 3ce06266628b53d4ddad47582b5dec1d |
|
BLAKE2b-256 | 9476091d6ba1052e8a2f79743b7239df4c0acc2b99f19fb90db393d4a7d7912a |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12f5d3a57189e01661bcbb977be291d0c4a4392043545558fe92fd78eb841ae0 |
|
MD5 | 0ed1825d7cee04e4e66bcf36bb8e0250 |
|
BLAKE2b-256 | d91927f850d88839bd85f8eadeec5fa620f93b9282292ef2b99d8ee07f53d994 |
Close
Hashes for pysqlx_core-0.1.50-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8120fb02bef36b7070b2fd5ad080229a428c187f9732477e9f52d1d78fe3aa7e |
|
MD5 | a7a3c0b150b10ff399da009a772226f5 |
|
BLAKE2b-256 | 9621662bdbb83bd59ddb0c556332cf76917846fd38f37dacafbbec5d30e54775 |