https://github.com/cursusdb/cursusdb-py
CursusDB Python Native Client Package
https://github.com/cursusdb/cursusdb-py
client cursusdb database python
Last synced: 5 months ago
JSON representation
CursusDB Python Native Client Package
- Host: GitHub
- URL: https://github.com/cursusdb/cursusdb-py
- Owner: cursusdb
- License: gpl-3.0
- Created: 2023-12-10T00:10:50.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-06T23:03:31.000Z (over 2 years ago)
- Last Synced: 2024-01-07T05:30:17.500Z (over 2 years ago)
- Topics: client, cursusdb, database, python
- Language: Python
- Homepage: https://cursusdb.com
- Size: 16.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## CursusDB Python Native Client Package
pip
```
pip install cursusdb
```
Importing package
```
from cursusdb import Client
```
Using
```
# host/fqdn, port, db username, db password, TLS ?
c = Client("0.0.0.0", 7681, "username", "password", False)
print(c.connect())
print(c.query("ping;"))
c.close()
```