Official Skytable client library for Python
Project description
Skytable Python Client
This is the official Python client driver for Skytable. The driver has been tested to work with Skytable 0.8.2 using the Skyhash/2 Protocol. The Python client driver provides first-class async
support using asyncio
and does not have any additional dependencies at the moment.
Example usage
Install the dependency:
pip install skytable-py
Use in your code:
import asyncio
from skytable_py import Config, Query
c = Config("root", "mypassword123456789")
async def main():
db = None
try:
db = await c.connect()
# init space
assert (await db.run_simple_query(Query("create space apps"))).is_empty()
# init model
assert (await db.run_simple_query(Query("create model apps.auth(username: string, password: string)"))).is_empty()
# insert our test row
assert (await db.run_simple_query(Query("insert into apps.auth(?, ?)", "sayan", "mypassword"))).is_empty()
# fetch data
username, password = (await db.run_simple_query(Query("select * from apps.auth where username = ?", "sayan"))).row().columns
# output
print(f"username={username.string()}, password={password.string()}")
except Exception as e:
print(f"failed with error {e}")
finally:
if db:
await db.close()
if __name__ == "__main__":
asyncio.run(main())
License
This client library is distributed under the Apache-2.0 License.
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
skytable_py-0.1.3.tar.gz
(11.7 kB
view details)
Built Distribution
File details
Details for the file skytable_py-0.1.3.tar.gz
.
File metadata
- Download URL: skytable_py-0.1.3.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0be20585588bc32931fad4a0430feb41fd5bbdabd1eae6cf7d8c73ae4e035fd |
|
MD5 | 2eedc203b154074959fdcbf3dbc84a63 |
|
BLAKE2b-256 | f1f560b0a672b5cc5b33f3c39e29b78511887131eff68f742e290c3a3c34a83d |
File details
Details for the file skytable_py-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: skytable_py-0.1.3-py3-none-any.whl
- Upload date:
- Size: 14.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c02d8ec020f805d1feb80552fee4bc7084b0d8408cb51c61abc6050b4d130f3e |
|
MD5 | 5e54e6c654e4e61f98956ea85963d7c5 |
|
BLAKE2b-256 | 185f89e55572af4f7343c0bf961a801cfe446d5b9b7c04a0b2e4267c604d50af |