{"library":"snowflake-connector-python-nightly","title":"Snowflake Connector Python Nightly","type":"library","description":"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.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install snowflake-connector-python-nightly"],"cli":null},"imports":["import snowflake.connector"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":"https://www.snowflake.com/","github":"https://github.com/snowflakedb/snowflake-connector-python","docs":"https://docs.snowflake.com/en/user-guide/python-connector.html","changelog":"https://github.com/snowflakedb/snowflake-connector-python/blob/main/DESCRIPTION.md","pypi":"https://pypi.org/project/snowflake-connector-python-nightly/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"import snowflake.connector\n\nconn = snowflake.connector.connect(\n    user='USER',\n    password='PASSWORD',\n    account='ACCOUNT',\n    warehouse='WAREHOUSE',\n    database='DATABASE',\n    schema='SCHEMA'\n)\n\ncur = conn.cursor()\ntry:\n    cur.execute('SELECT current_version()')\n    row = cur.fetchone()\n    print(row[0])\nfinally:\n    cur.close()\nconn.close()","lang":"python","description":"Basic connection and query execution with nightly connector.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}