nuvolos - The database connectivity library for Nuvolos
Installation
$ pip install --upgrade nuvolos
Connecting to Snowflake with Nuvolos Connector
1. Using SQLAlchemy with Username/Password
from nuvolos import get_connection
from sqlalchemy import text
# Connect using username and password
conn = get_connection(
username="your_username",
password="your_password",
dbname="YOUR_DB",
schemaname="YOUR_SCHEMA"
)
try:
# Execute a query
result = conn.execute(text("SELECT * FROM YOUR_TABLE"))
for row in result:
print(row)
finally:
conn.close()
2. Using SQLAlchemy with RSA Key
import os
from nuvolos import get_connection
from sqlalchemy import text
# Set environment variables for RSA authentication
os.environ["SNOWFLAKE_RSA_KEY"] = "/path/to/rsa_key.p8"
os.environ["SNOWFLAKE_RSA_KEY_PASSPHRASE"] = "your_key_passphrase" # Optional
# Connect using RSA key authentication
conn = get_connection(
username="YOUR_USERNAME",
dbname="YOUR_DB",
schemaname="YOUR_SCHEMA"
)
try:
# Execute a query
result = conn.execute(text("SELECT * FROM YOUR_TABLE"))
for row in result:
print(row)
finally:
conn.close()
3. Using Raw Connector with Username/Password
from nuvolos import get_raw_connection
# Connect using username and password
conn = get_raw_connection(
username="your_username",
password="your_password",
dbname="YOUR_DB",
schemaname="YOUR_SCHEMA"
)
4. Using Raw Connector with RSA Key
import os
from nuvolos import get_raw_connection
# Set environment variables for RSA authentication
os.environ["SNOWFLAKE_RSA_KEY"] = "/path/to/rsa_key.p8"
os.environ["SNOWFLAKE_RSA_KEY_PASSPHRASE"] = "your_key_passphrase" # Optional
# Connect using RSA key authentication
conn = get_raw_connection(
username="YOUR_USERNAME",
dbname="YOUR_DB",
schemaname="YOUR_SCHEMA"
)
Documentation and examples available at: https://docs.nuvolos.cloud/data/access-data-from-applications#connecting-with-python
Release files for nuvolos 0.7.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| nuvolos-0.7.0.tar.gz | 12.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| nuvolos-0.7.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 23.9 kB
Release files / nuvolos-0.7.0.tar.gz
| Download URL | nuvolos-0.7.0.tar.gz |
|---|---|
| Size | 12.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
64565288d49c77ec7e7b3f023216169cb9dbb97eab6c5a90a276c0f08b11b82c
|
|
BLAKE2b-256 checksum How to use checksums |
bf2cf0cf5929109df4312174f45270d1da5aa6b31bdd9b93a4d4d8426afe5036
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 21, 2026.
Transparency logRelease files / nuvolos-0.7.0-py3-none-any.whl
| Download URL | nuvolos-0.7.0-py3-none-any.whl |
|---|---|
| Size | 11.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3459cdf349db2c4bdbeb6bb4aa44b280620f176f31ef951020b675acb24ca90c
|
|
BLAKE2b-256 checksum How to use checksums |
0f798d9223ef018bd4edaf00653d8926720b0f3a15e550e7a517770ea0e90d9c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 21, 2026.
Transparency log