Registry /
database / snowflake-connector-python-nightly
Install & Compatibility
Where this runs
tested against v2025.12.13 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
build_error
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 7.0s · import 2.274s · 89MB
88MB installed
● package 88MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
connector
✓ import snowflake.connector
✗ import snowflake_connector_python
The connector is accessed via 'snowflake.connector', not the package name.
Basic connection and query execution with nightly connector.
import snowflake.connector
conn = snowflake.connector.connect(
user='USER',
password='PASSWORD',
account='ACCOUNT',
warehouse='WAREHOUSE',
database='DATABASE',
schema='SCHEMA'
)
cur = conn.cursor()
try:
cur.execute('SELECT current_version()')
row = cur.fetchone()
print(row[0])
finally:
cur.close()
conn.close()
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'snowflake'
The package is installed but import path is incorrect.
fixUse 'import snowflake.connector'.
snowflake.connector.errors.InterfaceError: 403 Forbidden
Firewall or network restrictions blocking Snowflake port 443.
fixEnsure outbound HTTPS traffic to your Snowflake account URL is allowed.
Upgrade
Version history
2025.12.13latest on PyPI · released Dec 13, 2025
Audit
Dependencies
No dependency data recorded yet.