Registry / database / snowflake-connector-python-nightly

snowflake-connector-python-nightly

JSON →
library2025.12.13pypypi✓ verified 84d ago

Nightly build of the Snowflake Connector for Python. Version 2025.12.13, updated daily. Provides early access to features and fixes before the stable snowflake-connector-python release.

pip install snowflake-connector-python-nightly
INSTALL
IMPORT
SIG · SNOWFLAKE-CONNECTO
S
snowflake-connector-python-nightly
databasepythonv2025.12.13
Install
7.0s avg
Import
2274ms
Disk
88MB
Pass rate
5/ 10
Env Coverage5 / 10
glibc
3.93.13
musl
3.93.13
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
musl
py 3.103.95 runs
build_error
glibc
py 3.103.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()
Debug
Known issues
gotchaThe nightly build may contain unstable or untested changes. Not for production use.
fix
Use snowflake-connector-python (stable) for production.
affects: all
breakingThe package name is 'snowflake-connector-python-nightly' but the import path is 'snowflake.connector', same as stable. This can lead to conflicts if both are installed.
fix
Use a virtual environment and install only one version of the connector.
affects: all
deprecatedKey pair authentication using a private key file may require updated cryptography library version with nightly builds.
fix
Use 'pip install cryptography>=3.4' if you encounter 'cryptography.hazmat' errors.
affects: 2025.0.0+
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'snowflake'
The package is installed but import path is incorrect.
fix
Use 'import snowflake.connector'.
snowflake.connector.errors.InterfaceError: 403 Forbidden
Firewall or network restrictions blocking Snowflake port 443.
fix
Ensure 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.

Agent activity
50 hits · last 30 days
node
42
Meta
2
OpenAI (training)
1
Resources
snowflake-connector-python-nightly — pip install snowflake-connector-python-nightly · libregistry