snowflake-connector-python


Namesnowflake-connector-python JSON
Version 3.9.0 PyPI version JSON
download
home_pagehttps://www.snowflake.com/
SummarySnowflake Connector for Python
upload_time2024-04-18 21:38:42
maintainerNone
docs_urlNone
authorSnowflake, Inc
requires_python>=3.8
licenseApache-2.0
keywords snowflake db database cloud analytics warehouse
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            This package includes the Snowflake Connector for Python, which conforms to the Python DB API 2.0 specification:
https://www.python.org/dev/peps/pep-0249/

Snowflake Documentation is available at:
https://docs.snowflake.com/

Source code is also available at: https://github.com/snowflakedb/snowflake-connector-python

# Release Notes

- v3.9.0(April 20,2024)

  - Added easy logging configuration so that users can easily generate log file by setup log config in `$SNOWFLAKE_HOME/config.toml`.
  - Improved s3 acceleration logic when connecting to China endpoint.

- v3.8.1(April 09, 2024)

  - Reverted the change "Updated `write_pandas` to skip TABLE IF NOT EXISTS in truncate mode." introduced in v3.8.0 (yanked) as it's a breaking change. `write_pandas` will be fixed in the future in a non-breaking way.

- v3.8.0(April 04,2024)

  - Improved `externalbrowser` auth in containerized environments
    - Instruct browser to not fetch `/favicon` on success page
    - Simple retry strategy on empty socket.recv
    - Add `SNOWFLAKE_AUTH_SOCKET_REUSE_PORT` flag (usage: `SNOWFLAKE_AUTH_SOCKET_REUSE_PORT=true`) to set the underlying socket's `SO_REUSEPORT` flag (described in the [socket man page](https://man7.org/linux/man-pages/man7/socket.7.html))
      - Useful when the randomized port used in the localhost callback url is being followed before the container engine completes port forwarding to host
      - Statically map a port between your host and container and allow that port to be reused in rapid succession with:
         `SF_AUTH_SOCKET_PORT=3037 SNOWFLAKE_AUTH_SOCKET_REUSE_PORT=true poetry run python somescript.py`
    - Add `SNOWFLAKE_AUTH_SOCKET_MSG_DONTWAIT` flag (usage: `SNOWFLAKE_AUTH_SOCKET_MSG_DONTWAIT=true`) to make a non-blocking socket.recv call and retry on Error
      - Consider using this if running in a containerized environment and externalbrowser auth frequently hangs while waiting for callback
      - NOTE: this has not been tested extensively, but has been shown to improve the experience when using WSL
  - Added support for parsing structured type information in schema queries.
  - Bumped platformdirs from >=2.6.0,<4.0.0 to >=2.6.0,<5.0.0
  - Updated diagnostics to use system$allowlist instead of system$whitelist.
  - Updated `write_pandas` to skip TABLE IF NOT EXISTS in truncate mode.
  - Improved cleanup logic for connection to rely on interpreter shutdown instead of the `__del__` method.
  - Updated the logging level from INFO to DEBUG when logging the executed query using `SnowflakeCursor.execute`.
  - Fixed a bug that the truncated password in log is not masked.

- v3.7.1(February 21, 2024)

  - Bumped pandas dependency from >=1.0.0,<2.2.0 to >=1.0.0,<3.0.0.
  - Bumped cryptography dependency from <42.0.0,>=3.1.0 to >=3.1.0,<43.0.0.
  - Bumped pyOpenSSL dependency from >=16.2.0,<24.0.0 to >=16.2.0,<25.0.0.
  - Fixed a memory leak in decimal data conversion.
  - Fixed a bug where `write_pandas` wasn't truncating the target table.
  - Bumped keyring dependency lower bound to 23.1.0 to address security vulnerability.

- v3.7.0(January 25,2024)

  - Added a new boolean parameter `force_return_table` to `SnowflakeCursor.fetch_arrow_all` to force returning `pyarrow.Table` in case of zero rows.
  - Cleanup some C++ code warnings and performance issues.
  - Added support for Python 3.12
  - Make local testing more robust against implicit assumptions.
  - Fixed PyArrow Table type hinting
  - Added support for connecting using an existing connection via the session and master token.
  - Added support for connecting to Snowflake by authenticating with multiple SAML IDP using external browser.
  - Added support for structured types (OBJECT, MAP, ARRAY) to nanoarrow converters.
  - Fixed compilation issue due to missing cstdint header on gcc13.
  - Improved config permissions warning message.

- v3.6.0(December 09,2023)

  - Added support for Vector types
  - Changed urllib3 version pin to only affect Python versions < 3.10.
  - Support for `private_key_file` and `private_key_file_pwd` connection parameters
  - Added a new flag `expired` to `SnowflakeConnection` class, that keeps track of whether the connection's master token has expired.
  - Fixed a bug where date insertion failed when date format is set and qmark style binding is used.

- v3.5.0(November 13,2023)

  - Version 3.5.0 is the snowflake-connector-python purely built upon apache arrow-nanoarrow project.
    - Reduced the wheel size to ~1MB and installation size to ~5MB.
    - Removed a hard dependency on a specific version of pyarrow.
  - Deprecated the usage of the following class/variable/environment variable for the sake of pure nanoarrow converter:
    - Deprecated class `snowflake.connector.cursor.NanoarrowUsage`.
    - Deprecated environment variable `NANOARROW_USAGE`.
    - Deprecated module variable `snowflake.connector.cursor.NANOARROW_USAGE`.

- v3.4.1(November 08,2023)

  - Bumped vendored `urllib3` to 1.26.18
  - Bumped vendored `requests` to 2.31.0

- v3.4.0(November 03,2023)

  - Added support for `use_logical_type` in `write_pandas`.
  - Removed dependencies on pycryptodomex and oscrypto. All connections now go through OpenSSL via the cryptography library, which was already a dependency.
  - Fixed issue with ingesting files over 80 GB to S3.
  - Added the `backoff_policy` argument to `snowflake.connector.connect` allowing for configurable backoff policy between retries of failed requests. See available implementations in the `backoff_policies` module.
  - Added the `socket_timeout` argument to `snowflake.connector.connect` specifying socket read and connect timeout.
  - Fixed `login_timeout` and `network_timeout` behaviour. Retries of login and network requests are now properly halted after these timeouts expire.
  - Fixed bug for issue https://github.com/urllib3/urllib3/issues/1878 in vendored `urllib`.
  - Add User-Agent header for diagnostic report for tracking.

- v3.3.1(October 16,2023)

  - Added for non-Windows platforms command suggestions (chown/chmod) for insufficient file permissions of config files.
  - Fixed issue with connection diagnostics failing to complete certificate checks.
  - Fixed issue that arrow iterator causes `ImportError` when the c extensions are not compiled.

- v3.3.0(October 10,2023)

  - Updated to Apache arrow-nanoarrow project for result arrow data conversion.
  - Introduced the `NANOARROW_USAGE` environment variable to allows switching between the nanoarrow converter and the arrow converter. Valid values include:
    - `FOLLOW_SESSION_PARAMETER`, which uses the converter configured in the server.
    - `DISABLE_NANOARROW`, which uses arrow converter, overriding the server setting.
    - `ENABLE_NANOARROW`, which uses the nanoarrow converter, overriding the server setting.
  - Introduced the `snowflake.connector.cursor.NanoarrowUsage` enum, whose members include:
    - `NanoarrowUsage.FOLLOW_SESSION_PARAMETER`, which uses the converter configured in the server.
    - `NanoarrowUsage.DISABLE_NANOARROW`, which uses arrow converter, overriding the server setting.
    - `NanoarrowUsage.ENABLE_NANOARROW`, which uses the nanoarrow converter, overriding the server setting.
  - Introduced the `snowflake.connector.cursor.NANOARROW_USAGE` module variable to allow switching between the nanoarrow converter and the arrow converter. It works in conjunction with the `snowflake.connector.cursor.NanoarrowUsage` enum.
  - The newly-introduced environment variable, enum, and module variable are temporary. They will be removed in a future release when switch from arrow to nanoarrow for data conversion is complete.

- v3.2.1(September 26,2023)

  - Fixed a bug where url port and path were ignored in private link oscp retry.
  - Added thread safety in telemetry when instantiating multiple connections concurrently.
  - Bumped platformdirs dependency from >=2.6.0,<3.9.0 to >=2.6.0,<4.0.0.0 and made necessary changes to allow this.
  - Removed the deprecation warning from the vendored urllib3 about urllib3.contrib.pyopenssl deprecation.
  - Improved robustness in handling authentication response.

- v3.2.0(September 06,2023)

  - Made the ``parser`` -> ``manager`` renaming more consistent in ``snowflake.connector.config_manager`` module.
  - Added support for default values for ConfigOptions
  - Added default_connection_name to config.toml file

- v3.1.1(August 28,2023)

  - Fixed a bug in retry logic for okta authentication to refresh token.
  - Support `RSAPublicKey` when constructing `AuthByKeyPair` in addition to raw bytes.
  - Fixed a bug when connecting through SOCKS5 proxy, the attribute `proxy_header` is missing on `SOCKSProxyManager`.
  - Cherry-picked https://github.com/urllib3/urllib3/commit/fd2759aa16b12b33298900c77d29b3813c6582de onto vendored urllib3 (v1.26.15) to enable enforce_content_length by default.
  - Fixed a bug in tag generation of OOB telemetry event.

- v3.1.0(July 31,2023)

  - Added a feature that lets you add connection definitions to the `connections.toml` configuration file. A connection definition refers to a collection of connection parameters, for example, if you wanted to define a connection named `prod``:

    ```toml
    [prod]
    account = "my_account"
    user = "my_user"
    password = "my_password"
    ```
    By default, we look for the `connections.toml` file in the location specified in the `SNOWFLAKE_HOME` environment variable (default: `~/.snowflake`). If this folder does not exist, the Python connector looks for the file in the [platformdirs](https://github.com/platformdirs/platformdirs/blob/main/README.rst) location, as follows:

    - On Linux: `~/.config/snowflake/`,  but follows XDG settings
    - On Mac: `~/Library/Application Support/snowflake/`
    - On Windows: `%USERPROFILE%\AppData\Local\snowflake\`

    You can determine which file is used by running the following command:

    ```
    python -c "from snowflake.connector.constants import CONNECTIONS_FILE; print(str(CONNECTIONS_FILE))"
    ```
  - Bumped cryptography dependency from <41.0.0,>=3.1.0 to >=3.1.0,<42.0.0.
  - Improved OCSP response caching to remove tmp cache files on Windows.
  - Improved OCSP response caching to reduce the times of disk writing.
  - Added a parameter `server_session_keep_alive` in `SnowflakeConnection` that skips session deletion when client connection closes.
  - Tightened our pinning of platformdirs, to prevent their new releases breaking us.
  - Fixed a bug where SFPlatformDirs would incorrectly append application_name/version to its path.
  - Added retry reason for queries that are retried by the client.
  - Fixed a bug where `write_pandas` fails when user does not have the privilege to create stage or file format in the target schema, but has the right privilege for the current schema.
  - Remove Python 3.7 support.
  - Worked around a segfault which sometimes occurred during cache serialization in multi-threaded scenarios.
  - Improved error handling of connection reset error.
  - Fixed a bug about deleting the temporary files happened when running PUT command.
  - Allowed to pass `type_mapper` to `fetch_pandas_batches()` and `fetch_pandas_all()`.
  - Fixed a bug where pickle.dump segfaults during cache serialization in multi-threaded scenarios.
  - Improved retry logic for okta authentication to refresh token if authentication gets throttled.
  - Note that this release does not include the changes introduced in the previous 3.1.0a1 release. Those will be released at a later time.

- v3.0.4(May 23,2023)
  - Fixed a bug in which `cursor.execute()` could modify the argument statement_params dictionary object when executing a multistatement query.
  - Added the json_result_force_utf8_decoding connection parameter to force decoding JSON content in utf-8 when the result format is JSON.
  - Fixed a bug in which we cannot call `SnowflakeCursor.nextset` before fetching the result of the first query if the cursor runs an async multistatement query.
  - Bumped vendored library urllib3 to 1.26.15
  - Bumped vendored library requests to 2.29.0
  - Fixed a bug when `_prefetch_hook()` was not called before yielding results of `execute_async()`.
  - Fixed a bug where some ResultMetadata fields were marked as required when they were optional.
  - Bumped pandas dependency from <1.6.0,>=1.0.0 to >=1.0.0,<2.1.0
  - Fixed a bug where bulk insert converts date incorrectly.
  - Add support for Geometry types.

- v3.0.3(April 20, 2023)
  - Fixed a bug that prints error in logs for GET command on GCS.
  - Added a parameter that allows users to skip file uploads to stage if file exists on stage and contents of the file match.
  - Fixed a bug that occurred when writing a Pandas DataFrame with non-default index in `snowflake.connector.pandas_tool.write_pandas`.
  - Fixed a bug that occurred when writing a Pandas DataFrame with column names containing double quotes in `snowflake.connector.pandas_tool.write_pandas`.
  - Fixed a bug that occurred when writing a Pandas DataFrame with binary data in `snowflake.connector.pandas_tool.write_pandas`.
  - Improved type hint of `SnowflakeCursor.execute` method.
  - Fail instantly upon receiving `403: Forbidden` HTTP response for a login-request.
  - Improved GET logging to warn when downloading multiple files with the same name.

- v3.0.2(March 23, 2023)

  - Fixed a memory leak in the logging module of the Cython extension.
  - Fixed a bug where the `put` command on AWS raised `AttributeError` when uploading file composed of multiple parts.
  - Fixed a bug of incorrect type hints of `SnowflakeCursor.fetch_arrow_all` and `SnowflakeCursor.fetchall`.
  - Fixed a bug where `snowflake.connector.util_text.split_statements` swallows the final line break in the case when there are no space between lines.
  - Improved logging to mask tokens in case of errors.
  - Validate SSO URL before opening it in the browser for External browser authenticator.

- v3.0.1(February 28, 2023)

  - Improved the robustness of OCSP response caching to handle errors in cases of serialization and deserialization.
  - Updated async_executes method's doc-string.
  - Errors raised now have a query field that contains the SQL query that caused them when available.
  - Fixed a bug where MFA token caching would refuse to work until restarted instead of reauthenticating.
  - Replaced the dependency on setuptools in favor of packaging.
  - Fixed a bug where `AuthByKeyPair.handle_timeout` should pass keyword arguments instead of positional arguments when calling `AuthByKeyPair.prepare`.

- v3.0.0(January 26, 2023)

  - Fixed a bug where write_pandas did not use user-specified schema and database to create intermediate objects
  - Fixed a bug where HTTP response code of 429 were not retried
  - Fixed a bug where MFA token caching was not working
  - Bumped pyarrow dependency from >=8.0.0,<8.1.0 to >=10.0.1,<10.1.0
  - Bumped pyOpenSSL dependency from <23.0.0 to <24.0.0
  - During browser-based authentication, the SSO url is now printed before opening it in the browser
  - Increased the level of a log for when ArrowResult cannot be imported
  - Added a minimum MacOS version check when compiling C-extensions
  - Enabled `fetch_arrow_all` and `fetch_arrow_batches` to handle async query results

- v2.9.0(December 9, 2022)

  - Fixed a bug where the permission of the file downloaded via GET command is changed
  - Reworked authentication internals to allow users to plug custom key-pair authenticators
  - Multi-statement query execution is now supported through `cursor.execute` and `cursor.executemany`
    - The Snowflake parameter `MULTI_STATEMENT_COUNT` can be altered at the account, session, or statement level. An additional argument, `num_statements`, can be provided to `execute` to use this parameter at the statement level. It *must* be provided to `executemany` to submit a multi-statement query through the method. Note that bulk insert optimizations available through `executemany` are not available when submitting multi-statement queries.
      - By default the parameter is 1, meaning only a single query can be submitted at a time
      - Set to 0 to submit any number of statements in a multi-statement query
      - Set to >1 to submit the specified exact number of statements in a multi-statement query
    - Bindings are accepted in the same way for multi-statements as they are for single statement queries
    - Asynchronous multi-statement query execution is supported. Users should still use `get_results_from_sfqid` to retrieve results
    - To access the results of each query, users can call `SnowflakeCursor.nextset()` as specified in the DB 2.0 API (PEP-249), to iterate through each statements results
      - The first statement's results are accessible immediately after calling `execute` (or `get_results_from_sfqid` if asynchronous) through the existing `fetch*()` methods

- v2.8.3(November 28,2022)

  - Bumped cryptography dependency from <39.0.0 to <41.0.0
  - Fixed a bug where expired OCSP response cache caused infinite recursion during cache loading

- v2.8.2(November 18,2022)

  - Improved performance of OCSP response caching
  - During the execution of GET commands we no longer resolve target location on the local machine
  - Improved performance of regexes used for PUT/GET SQL statement detection. CVE-2022-42965

- v2.8.1(October 30,2022)

   - Bumped cryptography dependency from <37.0.0 to <39.0.0
   - Bumped pandas dependency from <1.5.0 to <1.6.0
   - Fixed a bug where write_pandas wouldn't write an empty DataFrame to Snowflake
   - When closing connection async query status checking is now parallelized
   - Fixed a bug where test logging would be enabled on Jenkins workers in non-Snowflake Jenkins machines
   - Enhanced the atomicity of write_pandas when overwrite is set to True

- v2.8.0(September 27,2022)

  - Fixed a bug where rowcount was deleted when the cursor was closed
  - Fixed a bug where extTypeName was used even when it was empty
  - Updated how telemetry entries are constructed
  - Added telemetry for imported root packages during run-time
  - Added telemetry for using write_pandas
  - Fixed missing dtypes when calling fetch_pandas_all() on empty result
  - The write_pandas function now supports providing additional arguments to be used by DataFrame.to_parquet
  - All optional parameters of write_pandas can now be provided to pd_writer and make_pd_writer to be used with DataFrame.to_sql

- v2.7.12(August 26,2022)

   - Fixed a bug where timestamps fetched as pandas.DataFrame or pyarrow.Table would overflow for the sake of unnecessary precision. In the case where an overflow cannot be prevented a clear error will be raised now.
   - Added in-file caching for OCSP response caching
   - The write_pandas function now supports transient tables through the new table_type argument which supersedes create_temp_table argument
   - Fixed a bug where calling fetch_pandas_batches incorrectly raised NotSupportedError after an async query was executed
   - Added support for OKTA Identity Engine

- v2.7.11(July 26,2022)

   - Added minimum version pin to typing_extensions

- v2.7.10(July 22,2022)

   - Release wheels are now built on manylinux2014
   - Bumped supported pyarrow version to >=8.0.0,<8.1.0
   - Updated vendored library versions requests to 2.28.1 and urllib3 to 1.26.10
   - Added in-memory cache to OCSP requests
   - Added overwrite option to write_pandas
   - Added attribute `lastrowid` to `SnowflakeCursor` in compliance with PEP249.
   - Fixed a bug where gzip compressed http requests might be garbled by an unflushed buffer
   - Added new connection diagnostics capabilities to snowflake-connector-python
   - Bumped numpy dependency from <1.23.0 to <1.24.0


- v2.7.9(June 26,2022)

   - Fixed a bug where errors raised during get_results_from_sfqid() were missing errno
   - Fixed a bug where empty results containing GEOGRAPHY type raised IndexError


- v2.7.8(May 28,2022)

   - Updated PyPi documentation link to python specific main page
   - Fixed an error message that appears when pandas optional dependency group is required but is not installed
   - Implemented the DB API 2 callproc() method
   - Fixed a bug where decryption took place before decompression when downloading files from stages
   - Fixed a bug where s3 accelerate configuration was handled incorrectly
   - Extra named arguments given executemany() are now forwarded to execute()
   - Automatically sets the application name to streamlit when streamlit is imported and application name was not explicitly set
   - Bumped pyopenssl dependency version to >=16.2.0,<23.0.0


- v2.7.7(April 30,2022)

   - Bumped supported pandas version to < 1.5.0
   - Fixed a bug where partner name (from SF_PARTNER environmental variable) was set after connection was established
   - Added a new _no_retry option to executing queries
   - Fixed a bug where extreme timestamps lost precision


- v2.7.6(March 17,2022)

   - Fixed missing python_requires tag in setup.cfg

- v2.7.5(March 17,2022)

   - Added an option for partners to inject their name through an environmental variable (SF_PARTNER)
   - Fixed a bug where we would not wait for input if a browser window couldn't be opened for SSO login
   - Deprecate support for Python 3.6
   - Exported a type definition for SnowflakeConnection
   - Fixed a bug where final Arrow table would contain duplicate index numbers when using fetch_pandas_all

- v2.7.4(February 05,2022)

   - Add Geography Types
   - Removing automated incident reporting code
   - Fixed a bug where circular reference would prevent garbage collection on some objects
   - Fixed a bug where `DatabaseError` was thrown when executing against a closed cursor instead of `InterfaceError`
   - Fixed a bug where calling `executemany` would crash if an iterator was supplied as args
   - Fixed a bug where violating `NOT NULL` constraint raised `DatabaseError` instead of `IntegrityError`

- v2.7.3(January 22,2022)

   - Fixed a bug where timezone was missing from retrieved Timestamp_TZ columns
   - Fixed a bug where a long running PUT/GET command could hit a Storage Credential Error while renewing credentials
   - Fixed a bug where py.typed was not being included in our release wheels
   - Fixed a bug where negative numbers were mangled when fetched with the connection parameter arrow_number_to_decimal
   - Improved the error message that is encountered when running GET for a non-existing file
   - Fixed rendering of our long description for PyPi
   - Fixed a bug where DUO authentication ran into errors if sms authentication was disabled for the user
   - Add the ability to auto-create a table when writing a pandas DataFrame to a Snowflake table
   - Bumped the maximum dependency version of numpy from <1.22.0 to <1.23.0

- v2.7.2(December 17,2021)

   - Added support for Python version 3.10.
   - Fixed an issue bug where _get_query_status failed if there was a network error.
   - Added the interpolate_empty_sequences connection parameter to control interpolating empty sequences into queries.
   - Fixed an issue where where BLOCKED was considered to be an error by is_an_error.
   - Added source field to Telemetry.
   - Increased the cryptography dependency version.
   - Increased the pyopenssl dependency version.
   - Fixed an issue where dbapi.Binary returned a string instead of bytes.
   - Increased the required version of numpy.
   - Increased the required version of keyring.
   - Fixed issue so that fetch functions now return a typed DataFrames and pyarrow Tables for empty results.
   - Added py.typed
   - Improved error messages for PUT/GET.
   - Added Cursor.query attribute for accessing last query.
   - Increased the required version of pyarrow.


- v2.7.1(November 19,2021)

   - Fixed a bug where uploading a streaming file with multiple parts did not work.
   - JWT tokens are now regenerated when a request is retired.
   - Updated URL escaping when uploading to AWS S3 to match how S3 escapes URLs.
   - Removed the unused s3_connection_pool_size connection parameter.
   - Blocked queries are now be considered to be still running.
   - Snowflake specific exceptions are now set using Exception arguments.
   - Fixed an issue where use_s3_regional_url was not set correctly by the connector.


- v2.7.0(October 25,2021)

   - Removing cloud sdks.snowflake-connector-python will not install them anymore. Recreate your virtualenv to get rid of unnecessary dependencies.
   - Include Standard C++ headers.
   - Update minimum dependency version pin of cryptography.
   - Fixed a bug where error number would not be added to Exception messages.
   - Fixed a bug where client_prefetch_threads parameter was not respected when pre-fetching results.
   - Update signature of SnowflakeCursor.execute's params argument.


- v2.6.2(September 27,2021)

   - Updated vendored urllib3 and requests versions.
   - Fixed a bug where GET commands would fail to download files from sub directories from stages.
   - Added a feature where where the connector will print the url it tried to open when it is unable to open it for external browser authentication.


- v2.6.1(September 16,2021)

   - Bump pandas version from <1.3 to <1.4
   - Fixing Python deprecation warnings.
   - Added more type-hints.
   - Marked HeartBeatTimer threads as daemon threads.
   - Force cast a column into integer in write_pandas to avoid a rare behavior that would lead to crashing.
   - Implement AWS signature V4 to new SDKless PUT and GET.
   - Removed a deprecated setuptools option from setup.py.
   - Fixed a bug where error logs would be printed for query executions that produce no results.
   - Fixed a bug where the temporary stage for bulk array inserts exists.


- v2.6.0(August 29,2021)

   - Internal change to the implementation of result fetching.
   - Upgraded Pyarrow version from 3.0 to 5.0.
   - Internal change to the implementation for PUT and GET. A new connection parameter use_new_put_get was added to toggle between implementations.
   - Fixed a bug where executemany did not detect the type of data it was inserting.
   - Updated the minimum Mac OSX build target from 10.13 to 10.14.


- v2.5.1(July 31,2021)

   - Fixes Python Connector bug that prevents the connector from using AWS S3 Regional URL. The driver currently overrides the regional URL information with the default S3 URL causing failure in PUT.


- v2.5.0(July 22,2021)

   - Fixed a bug in write_pandas when quote_identifiers is set to True the function would not actually quote column names.
   - Bumping idna dependency pin from <3,>=2.5 to >=2.5,<4
   - Fix describe method when running `insert into ...` commands


- v2.4.6(June 25,2021)

   - Fixed a potential memory leak.
   - Removed upper certifi version pin.
   - Updated vendored libraries , urllib(1.26.5) and requests(2.25.1).
   - Replace pointers with UniqueRefs.
   - Changed default value of client_session_keep_alive to None.
   - Added the ability to retrieve metadata/schema without executing the query (describe method).

- v2.4.5(June 15,2021)

   - Fix for incorrect JWT token invalidity when an account alias with a dash in it is used for regionless account URL.

- v2.4.4(May 30,2021)

   - Fixed a segfault issue when using DictCursor and arrow result format with out of range dates.
   - Adds new make_pd_writer helper function


- v2.4.3(April 29,2021)

   - Uses s3 regional URL in private links when a param is set.
   - New Arrow NUMBER to Decimal converter option.
   - Update pyopenssl requirement from <20.0.0,>=16.2.0 to >=16.2.0,<21.0.0.
   - Update pandas requirement from <1.2.0,>=1.0.0 to >=1.0.0,<1.3.0.
   - Update numpy requirement from <1.20.0 to <1.21.0.


- v2.4.2(April 03,2021)

   - PUT statements are now thread-safe.


- v2.4.1(March 04,2021)

   - Make connection object exit() aware of status of parameter `autocommit`


- v2.4.0(March 04,2021)

   - Added support for Python 3.9 and PyArrow 3.0.x.
   - Added support for the upcoming multipart PUT threshold keyword.
   - Added support for using the PUT command with a file-like object.
   - Added some compilation flags to ease building conda community package.
   - Removed the pytz pin because it doesn't follow semantic versioning release format.
   - Added support for optimizing batch inserts through bulk array binding.


- v2.3.10(February 01,2021)

   - Improved query ID logging and added request GUID logging.
   - For dependency checking, increased the version condition for the pyjwt package from <2.0.0 to <3.0.0.


- v2.3.9(January 27,2021)

   - The fix to add proper proxy CONNECT headers for connections made over proxies.


- v2.3.8(January 14,2021)

   - Arrow result conversion speed up.
   - Send all Python Connector exceptions to in-band or out-of-band telemetry.
   - Vendoring requests and urllib3 to contain OCSP monkey patching to our library only.
   - Declare dependency on setuptools.


- v2.3.7(December 10,2020)

   - Added support for upcoming downscoped GCS credentials.
   - Tightened the pyOpenSSL dependency pin.
   - Relaxed the boto3 dependency pin up to the next major release.
   - Relaxed the cffi dependency pin up to the next major release.
   - Added support for executing asynchronous queries.
   - Dropped support for Python 3.5.

- v2.3.6(November 16,2020)

   - Fixed a bug that was preventing the connector from working on Windows with Python 3.8.
   - Improved the string formatting in exception messages.
   - For dependency checking, increased the version condition for the cryptography package from <3.0.0 to <4.0.0.
   - For dependency checking, increased the version condition for the pandas package from <1.1 to <1.2.

- v2.3.5(November 03,2020)

   - Updated the dependency on the cryptography package from version 2.9.2 to 3.2.1.

- v2.3.4(October 26,2020)

   - Added an optional parameter to the write_pandas function to specify that identifiers should not be quoted before being sent to the server.
   - The write_pandas function now honors default and auto-increment values for columns when inserting new rows.
   - Updated the Python Connector OCSP error messages and accompanying telemetry Information.
   - Enabled the runtime pyarrow version verification to fail gracefully. Fixed a bug with AWS glue environment.
   - Upgraded the version of boto3 from 1.14.47 to 1.15.9.
   - Upgraded the version of idna from 2.9 to 2.10.

- v2.3.3(October 05,2020)

   - Simplified the configuration files by consolidating test settings.
   - In the Connection object, the execute_stream and execute_string methods now filter out empty lines from their inputs.

- v2.3.2(September 14,2020)

   - Fixed a bug where a file handler was not closed properly.
   - Fixed various documentation typos.

- v2.3.1(August 25,2020)

   - Fixed a bug where 2 constants were removed by mistake.

- v2.3.0(August 24,2020)

   - When the log level is set to DEBUG, log the OOB telemetry entries that are sent to Snowflake.
   - Fixed a bug in the PUT command where long running PUTs would fail to re-authenticate to GCP for storage.
   - Updated the minimum build target MacOS version to 10.13.

- v2.2.10(August 03,2020)

    - Improved an error message for when "pandas" optional dependency group is not installed and user tries to fetch data into a pandas DataFrame. It'll now point user to our online documentation.

- v2.2.9(July 13,2020)

    - Connection parameter validate_default_parameters now verifies known connection parameter names and types. It emits warnings for anything unexpected types or names.
    - Correct logging messages for compiled C++ code.
    - Fixed an issue in write_pandas with location determination when database, or schema name was included.
    - Bumped boto3 dependency version.
    - Fixed an issue where uploading a file with special UTF-8 characters in their names corrupted file.

- v2.2.8(June 22,2020)

    - Switched docstring style to Google from Epydoc and added automated tests to enforce the standard.
    - Fixed a memory leak in DictCursor's Arrow format code.

- v2.2.7(June 1,2020)

    - Support azure-storage-blob v12 as well as v2 (for Python 3.5.0-3.5.1) by Python Connector
    - Fixed a bug where temporary directory path was not Windows compatible in write_pandas function
    - Added out of band telemetry error reporting of unknown errors

- v2.2.6(May 11,2020)

    - Update Pyarrow version from 0.16.0 to 0.17.0 for Python connector
    - Remove more restrictive application name enforcement.
    - Missing keyring dependency will not raise an exception, only emit a debug log from now on.
    - Bumping boto3 to <1.14
    - Fix flake8 3.8.0 new issues
    - Implement Python log interceptor

- v2.2.5(April 30,2020)

    - Added more efficient way to ingest a pandas.Dataframe into Snowflake, located in snowflake.connector.pandas_tools
    - More restrictive application name enforcement and standardizing it with other Snowflake drivers
    - Added checking and warning for users when they have a wrong version of pyarrow installed

- v2.2.4(April 10,2020)

    - Emit warning only if trying to set different setting of use_openssl_only parameter

- v2.2.3(March 30,2020)

    - Secure SSO ID Token
    - Add use_openssl_only connection parameter, which disables the usage of pure Python cryptographic libraries for FIPS
    - Add manylinux1 as well as manylinux2010
    - Fix a bug where a certificate file was opened and never closed in snowflake-connector-python.
    - Fix python connector skips validating GCP URLs
    - Adds additional client driver config information to in band telemetry.

- v2.2.2(March 9,2020)

    - Fix retry with chunck_downloader.py for stability.
    - Support Python 3.8 for Linux and Mac.

- v2.2.1(February 18,2020)

    - Fix use DictCursor with execute_string #248

- v2.2.0(January 27,2020)

    - Drop Python 2.7 support
    - AWS: When OVERWRITE is false, which is set by default, the file is uploaded if no same file name exists in the stage. This used to check the content signature but it will no longer check. Azure and GCP already work this way.
    - Document Python connector dependencies on our GitHub page in addition to Snowflake docs.
    - Fix sqlalchemy and possibly python-connector warnings.
    - Fix GCP exception using the Python connector to PUT a file in a stage with auto_compress=false.
    - Bump up botocore requirements to 1.14.
    - Fix uppercaseing authenticator breaks Okta URL which may include case-sensitive elements(#257).
    - Fix wrong result bug while using fetch_pandas_all() to get fixed numbers with large scales.
    - Increase multi part upload threshold for S3 to 64MB.

- v2.1.3(January 06,2020)

    - Fix GCP Put failed after hours

- v2.1.2(December 16,2019)

    - Fix the arrow bundling issue for python connector on mac.
    - Fix the arrow dll bundle issue on windows.Add more logging.

- v2.1.1(December 12,2019)

    - Fix GZIP uncompressed content for Azure GET command.
    - Add support for GCS PUT and GET for private preview.
    - Support fetch as numpy value in arrow result format.
    - Fix NameError: name 'EmptyPyArrowIterator' is not defined for Mac.
    - Return empty dataframe for fetch_pandas_all() api if result set is empty.

- v2.1.0(December 2,2019)

    - Fix default `ssl_context` options
    - Pin more dependencies for Python Connector
    - Fix import of SnowflakeOCSPAsn1Crypto crashes Python on MacOS Catalina
    - Update the release note that 1.9.0 was removed
    - Support DictCursor for arrow result format
    - Upgrade Python's arrow lib to 0.15.1
    - Raise Exception when PUT fails to Upload Data
    - Handle year out of range correctly in arrow result format

- v2.0.4(November 13,2019)

    - Increase OCSP Cache expiry time from 24 hours to 120 hours.
    - Fix pyarrow cxx11 abi compatibility issue
    - Use new query result format parameter in python tests

- v2.0.3(November 1,2019)

    - Fix for ,Pandas fetch API did not handle the case that first chunk is empty correctly.
    - Updated with botocore, boto3 and requests packages to the latest version.
    - Pinned stable versions of Azure urllib3 packages.

- v2.0.2(October 21,2019)

    - Fix sessions remaining open even if they are disposed manually. Retry deleting session if the connection is explicitly closed.
    - Fix memory leak in the new fetch pandas API
    - Fix Auditwheel failed with python37
    - Reduce the footprint of Python Connector
    - Support asn1crypto 1.1.x
    - Ensure that the cython components are present for Conda package

- v2.0.1(October 04,2019)

    - Add asn1crypto requirement to mitigate incompatibility change

- v2.0.0(September 30,2019)

    - Release Python Connector 2.0.0 for Arrow format change.
    - Fix SF_OCSP_RESPONSE_CACHE_DIR referring to the OCSP cache response file directory and not the top level of directory.
    - Fix Malformed certificate ID key causes uncaught KeyError.
    - No retry for certificate errors.
    - Fix In-Memory OCSP Response Cache - PythonConnector
    - Move AWS_ID and AWS_SECRET_KEY to their newer versions in the Python client
    - Fix result set downloader for ijson 2.5
    - Make authenticator field case insensitive earlier
    - Update USER-AGENT to be consistent with new format
    - Update Python Driver URL Whitelist to support US Gov domain
    - Fix memory leak in python connector panda df fetch API

- v1.9.1(October 4,2019)

    - Add asn1crypto requirement to mitigate incompatibility change.

- v1.9.0(August 26,2019) **REMOVED from pypi due to dependency compatibility issues**

    - Implement converter for all arrow data types in python connector extension
    - Fix arrow error when returning empty result using python connecter
    - Fix OCSP responder hang, AttributeError: 'ReadTimeout' object has no attribute 'message'
    - Update OCSP Connection timeout.
    - Fix RevokedCertificateError OOB Telemetry events are not sent
    - Uncaught RevocationCheckError for FAIL_OPEN in create_pair_issuer_subject
    - Fix uncaught exception in generate_telemetry_data function
    - Fix connector looses context after connection drop/restore by retrying IncompleteRead error.
    - Make tzinfo class at the module level instead of inlining

- v1.8.7(August 12,2019)

    - Rewrote validateDefaultParameters to validate the database, schema and warehouse at connection time. False by default.
    - Fix OCSP Server URL problem in multithreaded env
    - Fix Azure Gov PUT and GET issue

- v1.8.6(July 29,2019)

    - Reduce retries for OCSP from Python Driver
    - Azure PUT issue: ValueError: I/O operation on closed file
    - Add client information to USER-AGENT HTTP header - PythonConnector
    - Better handling of OCSP cache download failure

- v1.8.5(July 15,2019)

    - Drop Python 3.4 support for Python Connector

- v1.8.4(July 01,2019)

    - Update Python Connector to discard invalid OCSP Responses while merging caches

- v1.8.3(June 17,2019)

    - Update Client Driver OCSP Endpoint URL for Private Link Customers
    - Ignore session gone 390111 when closing
    - Python3.4 using requests 2.21.0 needs older version of urllib3
    - Use Account Name for Global URL

- v1.8.2 (June 03,2019)

    - Pendulum datatype support

- v1.8.1 (May 20,2019)

    - Revoked OCSP Responses persists in Driver Cache + Logging Fix
    - Fixed DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated

- v1.8.0 (May 10, 2019)

    - support ``numpy.bool_`` in binding type
    - Add Option to Skip Request Pooling
    - Add OCSP_MODE metric
    - Fixed PUT URI issue for Windows path
    - OCSP SoftFail

- v1.7.11 (April 22, 2019)

    - numpy timestamp with timezone support
    - qmark not binding None

- v1.7.10 (April 8, 2019)

    - Fix the incorrect custom Server URL in Python Driver for Privatelink

- v1.7.9 (March 25,2019)

    - Python Interim Solution for Custom Cache Server URL
    - Internal change for pending feature

- v1.7.8 (March 12,2019)

    - Add OCSP signing certificate validity check

- v1.7.7 (February 22,2019)

    - Skip HEAD operation when OVERWRITE=true for PUT
    - Update copyright year from 2018 to 2019 for Python

- v1.7.6 (February 08,2019)

    - Adjusted pyasn1 and pyasn1-module requirements for Python Connector
    - Added idna to setup.py. made pyasn1 optional for Python2

- v1.7.5 (January 25, 2019)

    - Incorporate "kwargs" style group of key-value pairs in connection's "execute_string" function.

- v1.7.4 (January 3, 2019)

    - Invalidate outdated OCSP response when checking cache hit
    - Made keyring use optional in Python Connector
    - Added SnowflakeNullConverter for Python Connector to skip all client side conversions
    - Honor ``CLIENT_PREFETCH_THREADS`` to download the result set.
    - Fixed the hang when region=us-west-2 is specified.
    - Added Python 3.7 tests

- v1.7.3 (December 11, 2018)

    - Improved the progress bar control for SnowSQL
    - Fixed PUT/GET progress bar for Azure

- v1.7.2 (December 4, 2018)

    - Refactored OCSP checks
    - Adjusted log level to mitigate confusions

- v1.7.1 (November 27, 2018)

    - Fixed regex pattern warning in cursor.py
    - Fixed 403 error for EU deployment
    - Fixed the epoch time to datetime object converter for Windoww

- v1.7.0 (November 13, 2018)

    - Internal change for pending feature.

- v1.6.12 (October 30, 2018)

    - Updated ``boto3`` and ``botocore`` version dependeny.
    - Catch socket.EAI_NONAME for localhost socket and raise a better error message
    - Added ``client_session_keep_alive_heartbeat_frequency`` to control heartbeat timings for ``client_session_keep_alive``.

- v1.6.11 (October 23, 2018)

    - Fixed exit_on_error=true didn't work if PUT / GET error occurs
    - Fixed a backslash followed by a quote in a literal was not taken into account.
    - Added ``request_guid`` to each HTTP request for tracing.

- v1.6.10 (September 25, 2018)

    - Added ``client_session_keep_alive`` support.
    - Fixed multiline double quote expressions PR #117 (@bensowden)
    - Fixed binding ``datetime`` for TIMESTAMP type in ``qmark`` binding mode. PR #118 (@rhlahuja)
    - Retry HTTP 405 to mitigate Nginx bug.
    - Accept consent response for id token cache. WIP.

- v1.6.9 (September 13, 2018)

    - Changed most INFO logs to DEBUG. Added INFO for key operations.
    - Fixed the URL query parser to get multiple values.

- v1.6.8 (August 30, 2018)

    - Updated ``boto3`` and ``botocore`` version dependeny.

- v1.6.7 (August 22, 2018)

    - Enforce virtual host URL for PUT and GET.
    - Added retryCount, clientStarTime for query-request for better service.

- v1.6.6 (August 9, 2018)

    - Replaced ``pycryptodome`` with ``pycryptodomex`` to avoid namespace conflict with ``PyCrypto``.
    - Fixed hang if the connection is not explicitly closed since 1.6.4.
    - Reauthenticate for externalbrowser while running a query.
    - Fixed remove_comments option for SnowSQL.

- v1.6.5 (July 13, 2018)

    - Fixed the current object cache in the connection for id token use.
    - Added no OCSP cache server use option.

- v1.6.4 (July 5, 2018)

    - Fixed div by zero for Azure PUT command.
    - Cache id token for SSO. This feature is WIP.
    - Added telemetry client and job timings by @dsouzam.

- v1.6.3 (June 14, 2018)

    - Fixed binding long value for Python 2.

- v1.6.2 (June 7, 2018)

    - Removes username restriction for OAuth. PR 86(@tjj5036)
    - Retry OpenSSL.SysError in tests
    - Updated concurrent insert test as the server improved.

- v1.6.1 (May 17, 2018)

    - Enable OCSP Dynamic Cache server for privatelink.
    - Ensure the type of ``login_timeout`` attribute is ``int``.

- v1.6.0 (May 3, 2018)

    - Enable OCSP Cache server by default.

- v1.5.8 (April 26, 2018)

    - Fixed PUT command error 'Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.' for Azure deployment.

- v1.5.7 (April 19, 2018)

    - Fixed object has no attribute errors in Python3 for Azure deployment.
    - Removed ContentEncoding=gzip from the header for PUT command. This caused COPY failure if autocompress=false.

- v1.5.6 (April 5, 2018)

    - Updated ``boto3`` and ``botocore`` version dependeny.

- v1.5.5 (March 22, 2018)

    - Fixed TypeError: list indices must be integers or slices, not str. PR/Issue 75 (@daniel-sali).
    - Updated ``cryptography`` dependency.

- v1.5.4 (March 15, 2018)

    - Tightened ``pyasn`` and ``pyasn1-modules`` version requirements
    - Added OS and OS_VERSION session info.
    - Relaxed ``pycryptodome`` version requirements. No 3.5.0 should be used.

- v1.5.3 (March 9, 2018)

    - Pulled back ``pyasn1`` for OCSP check in Python 2. Python 3 continue using ``asn1crypto`` for better performance.
    - Limit the upper bound of ``pycryptodome`` version to less than 3.5.0 for Issue 65.

- v1.5.2 (March 1, 2018)

    - Fixed failue in case HOME/USERPROFILE is not set.
    - Updated ``boto3`` and ``botocore`` version dependeny.

- v1.5.1 (February 15, 2018)

    - Prototyped oauth. Won't work without the server change.
    - Retry OCSP data parse failure
    - Fixed paramstyle=qmark binding for SQLAlchemy

- v1.5.0 (January 26, 2018)

    - Removed ``pyasn1`` and ``pyasn1-modules`` from the dependency.
    - Prototyped key pair authentication.
    - Fixed OCSP response cache expiration check.

- v1.4.17 (January 19, 2018)

    - Adjusted ``pyasn1`` and ``pyasn1-modules`` version dependency. PR 48 (@baxen)
    - Started replacing ``pyasn1`` with ``asn1crypto`` Not activated yet.

- v1.4.16 (January 16, 2018)

    - Added OCSP cache related tools.

- v1.4.15 (January 11, 2018)

    - Added OCSP cache server option.

- v1.4.14 (December 14, 2017)

    - Improved OCSP response dump util.

- v1.4.13 (November 30, 2017)

    - Updated ``boto3`` and ``botocore`` version dependeny.

- v1.4.12 (November 16, 2017)

    - Added ``qmark`` and ``numeric`` paramstyle support for server side binding.
    - Added ``timezone`` session parameter support to connections.
    - Fixed a file handler leak in OCSP checks.

- v1.4.11 (November 9, 2017)

    - Fixed Azure PUT command to use AES CBC key encryption.
    - Added retry for intermittent PyAsn1Error.

- v1.4.10 (October 26, 2017)

    - Added Azure support for PUT and GET commands.
    - Updated ``cryptography``, ``boto3`` and ``botocore`` version dependeny.

- v1.4.9 (October 10, 2017)

    - Fixed a regression caused by ``pyasn1`` upgrade.

- v1.4.8 (October 5, 2017)

    - Updated Fed/SSO parameters. The production version of Fed/SSO from Python Connector requires this version.
    - Refactored for Azure support
    - Set CLIENT_APP_ID and CLIENT_APP_VERSION in all requests
    - Support new behaviors of newer version of ``pyasn1``. Relaxed the dependency.
    - Making socket timeout same as the login time
    - Fixed the case where no error message is attached.

- v1.4.7 (September 20, 2017)

    - Refresh AWS token in PUT command if S3UploadFailedError includes the ExpiredToken error
    - Retry all of 5xx in connection

- v1.4.6 (September 14, 2017)

    - Mitigated sigint handler config failure for SQLAlchemy
    - Improved the message for invalid SSL certificate error
    - Retry forever for query to mitigate 500 errors

- v1.4.5 (August 31, 2017)

    - Fixed regression in #34 by rewriting SAML 2.0 compliant service application support.
    - Cleaned up logger by moving instance to module.

- v1.4.4 (August 24, 2017)

    - Fixed Azure blob certificate issue. OCSP response structure bug fix
    - Added SAML 2.0 compliant service application support. preview feature.
    - Upgraded SSL wrapper with the latest urllib3 pyopenssl glue module. It uses kqueue, epoll or poll in replacement of select to read data from socket if available.

- v1.4.3 (August 17, 2017)

    - Changed the log levels for some messages from ERROR to DEBUG to address confusion as real incidents. In fact, they are not real issues but signals for connection retry.
    - Added ``certifi`` to the dependent component list to mitigate CA root certificate out of date issue.
    - Set the maximum versions of dependent components ``boto3`` and ``botocore``.
    - Updated ``cryptography`` and ``pyOpenSSL`` version dependeny change.
    - Added a connection parameter ``validate_default_parameters`` to validate the default database, schema and warehouse. If the specified object doesn't exist, it raises an error.

- v1.4.2 (August 3, 2017)

    - Fixed retry HTTP 400 in upload file when AWS token expires
    - Relaxed the version of dependent components ``pyasn1`` and ``pyasn1-modules``

- v1.4.1 (July 26, 2017)

    - Pinned ``pyasn1`` and ``pyasn1-modules`` versions to 0.2.3 and 0.0.9, respectively

- v1.4.0 (July 6, 2017)

    - Relaxed the versions of dependent components ``boto3``, ``botocore``, ``cffi`` and ``cryptography`` and ``pyOpenSSL``
    - Minor improvements in OCSP response file cache

- v1.3.18 (June 15, 2017)

    - Fixed OCSP response cache file not found issue on Windows. Drive letter was taken off
    - Use less restrictive cryptography>=1.7,<1.8
    - Added ORC detection in PUT command

- v1.3.17 (June 1, 2017)

    - Timeout OCSP request in 60 seconds and retry
    - Set autocommit and abort_detached_query session parameters in authentication time if specified
    - Fixed cross region stage issue. Could not get files in us-west-2 region S3 bucket from us-east-1

- v1.3.16 (April 20, 2017)

    - Fixed issue in fetching ``DATE`` causing [Error 22] Invalid argument on Windows
    - Retry on ``RuntimeError`` in requests

- v1.3.15 (March 30, 2017)

    - Refactored data converters in fetch to improve performance
    - Fixed timestamp format FF to honor the scale of data type
    - Improved the security of OKTA authentication with hostname verifications
    - Retry PUT on the error ``OpenSSL.SSL.SysCallError`` 10053 with lower concurrency
    - Added ``raw_msg`` attribute to ``Error`` class
    - Refactored session managements

- v1.3.14 (February 24, 2017)

    - Improved PUT and GET error handler.
    - Added proxy support to OCSP checks.
    - Use proxy parameters for PUT and GET commands.
    - Added ``sfqid`` and ``sqlstate`` to the results from query results.
    - Fixed the connection timeout calculation based on ``login_timeout`` and ``network_timeout``.
    - Improved error messages in case of 403, 502 and 504 HTTP reponse code.
    - Upgraded ``cryptography`` to 1.7.2, ``boto3`` to 1.4.4 and ``botocore`` to 1.5.14.
    - Removed explicit DNS lookup for OCSP URL.

- v1.3.13 (February 9, 2017)

    - Fixed AWS SQS connection error with OCSP checks
    - Added ``login_timeout`` and ``network_timeout`` parameters to the ``Connection`` objects.
    - Fixed forbidden access error handing

- v1.3.12 (February 2, 2017)

    - Fixed ``region`` parameter. One character was truncated from the tail of account name
    - Improved performance of fetching data by refactoring fetchone method

- v1.3.11 (January 27, 2017)

    - Fixed the regression in 1.3.8 that caused intermittent 504 errors

- v1.3.10 (January 26, 2017)

    - Compress data in HTTP requests at all times except empty data or OKTA request
    - Refactored FIXED, REAL and TIMESTAMP data fetch to improve performance. This mainly impacts SnowSQL
    - Added ``region`` option to support EU deployments better
    - Increased the retry counter for OCSP servers to mitigate intermittent failure
    - Refactored HTTP access retry logic

- v1.3.9 (January 16, 2017)

    - Upgraded ``botocore`` to 1.4.93 to fix and ``boto3`` to 1.4.3 to fix the HTTPS request failure in Python 3.6
    - Fixed python2 incomaptible import http.client
    - Retry OCSP validation in case of non-200 HTTP code returned

- v1.3.8 (January 12, 2017)

    - Convert non-UTF-8 data in the large result set chunk to Unicode replacement characters to avoid decode error.
    - Updated copyright year to 2017.
    - Use `six` package to support both PY2 and PY3 for some functions
    - Upgraded ``cryptography`` to 1.7.1 to address MacOS Python 3.6 build issue.
    - Fixed OverflowError caused by invalid range of timetamp data for SnowSQL.

- v1.3.7 (December 8, 2016)

    - Increased the validity date acceptance window to prevent OCSP returning invalid responses due to out-of-scope validity dates for certificates.
    - Enabled OCSP response cache file by default.

- v1.3.6 (December 1, 2016)

    - Upgraded ``cryptography`` to 1.5.3, ``pyOpenSSL`` to 16.2.0 and ``cffi`` to 1.9.1.

- v1.3.5 (November 17, 2016)

    - Fixed CA list cache race condition
    - Added retry intermittent 400 HTTP ``Bad Request`` error

- v1.3.4 (November 3, 2016)

    - Added ``quoted_name`` data type support for binding by SQLAlchemy
    - Not to compress ``parquiet`` file in PUT command

- v1.3.3 (October 20, 2016)

    - Downgraded ``botocore`` to 1.4.37 due to potential regression.
    - Increased the stability of PUT and GET commands

- v1.3.2 (October 12, 2016)

    - Upgraded ``botocore`` to 1.4.52.
    - Set the signature version to v4 to AWS client. This impacts ``PUT``, ``GET`` commands and fetching large result set.

- v1.3.1 (September 30, 2016)

    - Added an account name including subdomain.

- v1.3.0 (September 26, 2016)

    - Added support for the ``BINARY`` data type, which enables support for more Python data types:

        - Python 3:

            - ``bytes`` and ``bytearray`` can be used for binding.
            - ``bytes`` is also used for fetching ``BINARY`` data type.

        - Python 2:

            - ``bytearray`` can be used for binding
            - ``str`` is used for fetching ``BINARY`` data type.

    - Added ``proxy_user`` and ``proxy_password`` connection parameters for proxy servers that require authentication.

- v1.2.8 (August 16, 2016)

    - Upgraded ``botocore`` to 1.4.37.
    - Added ``Connection.execute_string`` and ``Connection.execute_stream`` to run multiple statements in a string and stream.
    - Increased the stability of fetching data for Python 2.
    - Refactored memory usage in fetching large result set (Work in Progress).

- v1.2.7 (July 31, 2016)

    - Fixed ``snowflake.cursor.rowcount`` for INSERT ALL.
    - Force OCSP cache invalidation after 24 hours for better security.
    - Use ``use_accelerate_endpoint`` in PUT and GET if Transfer acceleration is enabled for the S3 bucket.
    - Fixed the side effect of ``python-future`` that loads ``test.py`` in the current directory.

- v1.2.6 (July 13, 2016)

    - Fixed the AWS token renewal issue with PUT command when uploading uncompressed large files.

- v1.2.5 (July 8, 2016)

    - Added retry for errors ``S3UploadFailedError`` and ``RetriesExceededError`` in PUT and GET, respectively.

- v1.2.4 (July 6, 2016)

    - Added ``max_connection_pool`` parameter to Connection so that you can specify the maximum number of HTTP/HTTPS connections in the pool.
    - Minor enhancements for SnowSQL.

- v1.2.3 (June 29, 2016)

    - Fixed 404 issue in GET command. An extra slash character changed the S3 path and failed to identify the file to download.

- v1.2.2 (June 21, 2016)

    - Upgraded ``botocore`` to 1.4.26.
    - Added retry for 403 error when accessing S3.

- v1.2.1 (June 13, 2016)

    - Improved fetch performance for data types (part 2): DATE, TIME, TIMESTAMP, TIMESTAMP_LTZ, TIMESTAMP_NTZ and TIMESTAMP_TZ.

- v1.2.0 (June 10, 2016)

    - Improved fetch performance for data types (part 1): FIXED, REAL, STRING.

- v1.1.5 (June 2, 2016)

    - Upgraded ``boto3`` to 1.3.1 and ``botocore`` and 1.4.22.
    - Fixed ``snowflake.cursor.rowcount`` for DML by ``snowflake.cursor.executemany``.
    - Added ``numpy`` data type binding support. ``numpy.intN``, ``numpy.floatN`` and ``numpy.datetime64`` can be bound and fetched.

- v1.1.4 (May 21, 2016)

    - Upgraded ``cffi`` to 1.6.0.
    - Minor enhancements to SnowSQL.

- v1.1.3 (May 5, 2016)

    - Upgraded ``cryptography`` to 1.3.2.

- v1.1.2 (May 4, 2016)

    - Changed the dependency of ``tzlocal`` optional.
    - Fixed charmap error in OCSP checks.

- v1.1.1 (Apr 11, 2016)

    - Fixed OCSP revocation check issue with the new certificate and AWS S3.
    - Upgraded ``cryptography`` to 1.3.1 and ``pyOpenSSL`` to 16.0.0.

- v1.1.0 (Apr 4, 2016)

    - Added ``bzip2`` support in ``PUT`` command. This feature requires a server upgrade.
    - Replaced the self contained packages in ``snowflake._vendor`` with the dependency of ``boto3`` 1.3.0 and ``botocore`` 1.4.2.

- v1.0.7 (Mar 21, 2016)

    - Keep ``pyOpenSSL`` at 0.15.1.

- v1.0.6 (Mar 15, 2016)

    - Upgraded ``cryptography`` to 1.2.3.
    - Added support for ``TIME`` data type, which is now a Snowflake supported data type. This feature requires a server upgrade.
    - Added ``snowflake.connector.DistCursor`` to fetch the results in ``dict`` instead of ``tuple``.
    - Added compression to the SQL text and commands.

- v1.0.5 (Mar 1, 2016)

    - Upgraded ``cryptography`` to 1.2.2 and ``cffi`` to 1.5.2.
    - Fixed the conversion from ``TIMESTAMP_LTZ`` to datetime in queries.

- v1.0.4 (Feb 15, 2016)

    - Fixed the truncated parallel large result set.
    - Added retry OpenSSL low level errors ``ETIMEDOUT`` and ``ECONNRESET``.
    - Time out all HTTPS requests so that the Python Connector can retry the job or recheck the status.
    - Fixed the location of encrypted data for ``PUT`` command. They used to be in the same directory as the source data files.
    - Added support for renewing the AWS token used in ``PUT`` commands if the token expires.

- v1.0.3 (Jan 13, 2016)

    - Added support for the ``BOOLEAN`` data type (i.e. ``TRUE`` or ``FALSE``). This changes the behavior of the binding for the ``bool`` type object:

        - Previously, ``bool`` was bound as a numeric value (i.e. ``1`` for ``True``, ``0`` for ``False``).
        - Now, ``bool`` is bound as native SQL data (i.e. ``TRUE`` or ``FALSE``).

    - Added the ``autocommit`` method to the ``Connection`` object:

        - By default, ``autocommit`` mode is ON (i.e. each DML statement commits the change).
        - If ``autocommit`` mode is OFF, the ``commit`` and ``rollback`` methods are enabled.

    - Avoid segfault issue for ``cryptography`` 1.2 in Mac OSX by using 1.1 until resolved.

- v1.0.2 (Dec 15, 2015)

    - Upgraded ``boto3`` 1.2.2, ``botocore`` 1.3.12.
    - Removed ``SSLv3`` mapping from the initial table.

- v1.0.1 (Dec 8, 2015)

    - Minor bug fixes.

- v1.0.0 (Dec 1, 2015)

    - General Availability release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.snowflake.com/",
    "name": "snowflake-connector-python",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "Snowflake db database cloud analytics warehouse",
    "author": "Snowflake, Inc",
    "author_email": "snowflake-python-libraries-dl@snowflake.com",
    "download_url": "https://files.pythonhosted.org/packages/e0/61/609bfab9853dc7e751185b436eb53d4d23d1e9f21f76660d18f3bd66b552/snowflake_connector_python-3.9.0.tar.gz",
    "platform": null,
    "description": "This package includes the Snowflake Connector for Python, which conforms to the Python DB API 2.0 specification:\nhttps://www.python.org/dev/peps/pep-0249/\n\nSnowflake Documentation is available at:\nhttps://docs.snowflake.com/\n\nSource code is also available at: https://github.com/snowflakedb/snowflake-connector-python\n\n# Release Notes\n\n- v3.9.0(April 20,2024)\n\n  - Added easy logging configuration so that users can easily generate log file by setup log config in `$SNOWFLAKE_HOME/config.toml`.\n  - Improved s3 acceleration logic when connecting to China endpoint.\n\n- v3.8.1(April 09, 2024)\n\n  - Reverted the change \"Updated `write_pandas` to skip TABLE IF NOT EXISTS in truncate mode.\" introduced in v3.8.0 (yanked) as it's a breaking change. `write_pandas` will be fixed in the future in a non-breaking way.\n\n- v3.8.0(April 04,2024)\n\n  - Improved `externalbrowser` auth in containerized environments\n    - Instruct browser to not fetch `/favicon` on success page\n    - Simple retry strategy on empty socket.recv\n    - Add `SNOWFLAKE_AUTH_SOCKET_REUSE_PORT` flag (usage: `SNOWFLAKE_AUTH_SOCKET_REUSE_PORT=true`) to set the underlying socket's `SO_REUSEPORT` flag (described in the [socket man page](https://man7.org/linux/man-pages/man7/socket.7.html))\n      - Useful when the randomized port used in the localhost callback url is being followed before the container engine completes port forwarding to host\n      - Statically map a port between your host and container and allow that port to be reused in rapid succession with:\n         `SF_AUTH_SOCKET_PORT=3037 SNOWFLAKE_AUTH_SOCKET_REUSE_PORT=true poetry run python somescript.py`\n    - Add `SNOWFLAKE_AUTH_SOCKET_MSG_DONTWAIT` flag (usage: `SNOWFLAKE_AUTH_SOCKET_MSG_DONTWAIT=true`) to make a non-blocking socket.recv call and retry on Error\n      - Consider using this if running in a containerized environment and externalbrowser auth frequently hangs while waiting for callback\n      - NOTE: this has not been tested extensively, but has been shown to improve the experience when using WSL\n  - Added support for parsing structured type information in schema queries.\n  - Bumped platformdirs from >=2.6.0,<4.0.0 to >=2.6.0,<5.0.0\n  - Updated diagnostics to use system$allowlist instead of system$whitelist.\n  - Updated `write_pandas` to skip TABLE IF NOT EXISTS in truncate mode.\n  - Improved cleanup logic for connection to rely on interpreter shutdown instead of the `__del__` method.\n  - Updated the logging level from INFO to DEBUG when logging the executed query using `SnowflakeCursor.execute`.\n  - Fixed a bug that the truncated password in log is not masked.\n\n- v3.7.1(February 21, 2024)\n\n  - Bumped pandas dependency from >=1.0.0,<2.2.0 to >=1.0.0,<3.0.0.\n  - Bumped cryptography dependency from <42.0.0,>=3.1.0 to >=3.1.0,<43.0.0.\n  - Bumped pyOpenSSL dependency from >=16.2.0,<24.0.0 to >=16.2.0,<25.0.0.\n  - Fixed a memory leak in decimal data conversion.\n  - Fixed a bug where `write_pandas` wasn't truncating the target table.\n  - Bumped keyring dependency lower bound to 23.1.0 to address security vulnerability.\n\n- v3.7.0(January 25,2024)\n\n  - Added a new boolean parameter `force_return_table` to `SnowflakeCursor.fetch_arrow_all` to force returning `pyarrow.Table` in case of zero rows.\n  - Cleanup some C++ code warnings and performance issues.\n  - Added support for Python 3.12\n  - Make local testing more robust against implicit assumptions.\n  - Fixed PyArrow Table type hinting\n  - Added support for connecting using an existing connection via the session and master token.\n  - Added support for connecting to Snowflake by authenticating with multiple SAML IDP using external browser.\n  - Added support for structured types (OBJECT, MAP, ARRAY) to nanoarrow converters.\n  - Fixed compilation issue due to missing cstdint header on gcc13.\n  - Improved config permissions warning message.\n\n- v3.6.0(December 09,2023)\n\n  - Added support for Vector types\n  - Changed urllib3 version pin to only affect Python versions < 3.10.\n  - Support for `private_key_file` and `private_key_file_pwd` connection parameters\n  - Added a new flag `expired` to `SnowflakeConnection` class, that keeps track of whether the connection's master token has expired.\n  - Fixed a bug where date insertion failed when date format is set and qmark style binding is used.\n\n- v3.5.0(November 13,2023)\n\n  - Version 3.5.0 is the snowflake-connector-python purely built upon apache arrow-nanoarrow project.\n    - Reduced the wheel size to ~1MB and installation size to ~5MB.\n    - Removed a hard dependency on a specific version of pyarrow.\n  - Deprecated the usage of the following class/variable/environment variable for the sake of pure nanoarrow converter:\n    - Deprecated class `snowflake.connector.cursor.NanoarrowUsage`.\n    - Deprecated environment variable `NANOARROW_USAGE`.\n    - Deprecated module variable `snowflake.connector.cursor.NANOARROW_USAGE`.\n\n- v3.4.1(November 08,2023)\n\n  - Bumped vendored `urllib3` to 1.26.18\n  - Bumped vendored `requests` to 2.31.0\n\n- v3.4.0(November 03,2023)\n\n  - Added support for `use_logical_type` in `write_pandas`.\n  - Removed dependencies on pycryptodomex and oscrypto. All connections now go through OpenSSL via the cryptography library, which was already a dependency.\n  - Fixed issue with ingesting files over 80 GB to S3.\n  - Added the `backoff_policy` argument to `snowflake.connector.connect` allowing for configurable backoff policy between retries of failed requests. See available implementations in the `backoff_policies` module.\n  - Added the `socket_timeout` argument to `snowflake.connector.connect` specifying socket read and connect timeout.\n  - Fixed `login_timeout` and `network_timeout` behaviour. Retries of login and network requests are now properly halted after these timeouts expire.\n  - Fixed bug for issue https://github.com/urllib3/urllib3/issues/1878 in vendored `urllib`.\n  - Add User-Agent header for diagnostic report for tracking.\n\n- v3.3.1(October 16,2023)\n\n  - Added for non-Windows platforms command suggestions (chown/chmod) for insufficient file permissions of config files.\n  - Fixed issue with connection diagnostics failing to complete certificate checks.\n  - Fixed issue that arrow iterator causes `ImportError` when the c extensions are not compiled.\n\n- v3.3.0(October 10,2023)\n\n  - Updated to Apache arrow-nanoarrow project for result arrow data conversion.\n  - Introduced the `NANOARROW_USAGE` environment variable to allows switching between the nanoarrow converter and the arrow converter. Valid values include:\n    - `FOLLOW_SESSION_PARAMETER`, which uses the converter configured in the server.\n    - `DISABLE_NANOARROW`, which uses arrow converter, overriding the server setting.\n    - `ENABLE_NANOARROW`, which uses the nanoarrow converter, overriding the server setting.\n  - Introduced the `snowflake.connector.cursor.NanoarrowUsage` enum, whose members include:\n    - `NanoarrowUsage.FOLLOW_SESSION_PARAMETER`, which uses the converter configured in the server.\n    - `NanoarrowUsage.DISABLE_NANOARROW`, which uses arrow converter, overriding the server setting.\n    - `NanoarrowUsage.ENABLE_NANOARROW`, which uses the nanoarrow converter, overriding the server setting.\n  - Introduced the `snowflake.connector.cursor.NANOARROW_USAGE` module variable to allow switching between the nanoarrow converter and the arrow converter. It works in conjunction with the `snowflake.connector.cursor.NanoarrowUsage` enum.\n  - The newly-introduced environment variable, enum, and module variable are temporary. They will be removed in a future release when switch from arrow to nanoarrow for data conversion is complete.\n\n- v3.2.1(September 26,2023)\n\n  - Fixed a bug where url port and path were ignored in private link oscp retry.\n  - Added thread safety in telemetry when instantiating multiple connections concurrently.\n  - Bumped platformdirs dependency from >=2.6.0,<3.9.0 to >=2.6.0,<4.0.0.0 and made necessary changes to allow this.\n  - Removed the deprecation warning from the vendored urllib3 about urllib3.contrib.pyopenssl deprecation.\n  - Improved robustness in handling authentication response.\n\n- v3.2.0(September 06,2023)\n\n  - Made the ``parser`` -> ``manager`` renaming more consistent in ``snowflake.connector.config_manager`` module.\n  - Added support for default values for ConfigOptions\n  - Added default_connection_name to config.toml file\n\n- v3.1.1(August 28,2023)\n\n  - Fixed a bug in retry logic for okta authentication to refresh token.\n  - Support `RSAPublicKey` when constructing `AuthByKeyPair` in addition to raw bytes.\n  - Fixed a bug when connecting through SOCKS5 proxy, the attribute `proxy_header` is missing on `SOCKSProxyManager`.\n  - Cherry-picked https://github.com/urllib3/urllib3/commit/fd2759aa16b12b33298900c77d29b3813c6582de onto vendored urllib3 (v1.26.15) to enable enforce_content_length by default.\n  - Fixed a bug in tag generation of OOB telemetry event.\n\n- v3.1.0(July 31,2023)\n\n  - Added a feature that lets you add connection definitions to the `connections.toml` configuration file. A connection definition refers to a collection of connection parameters, for example, if you wanted to define a connection named `prod``:\n\n    ```toml\n    [prod]\n    account = \"my_account\"\n    user = \"my_user\"\n    password = \"my_password\"\n    ```\n    By default, we look for the `connections.toml` file in the location specified in the `SNOWFLAKE_HOME` environment variable (default: `~/.snowflake`). If this folder does not exist, the Python connector looks for the file in the [platformdirs](https://github.com/platformdirs/platformdirs/blob/main/README.rst) location, as follows:\n\n    - On Linux: `~/.config/snowflake/`,  but follows XDG settings\n    - On Mac: `~/Library/Application Support/snowflake/`\n    - On Windows: `%USERPROFILE%\\AppData\\Local\\snowflake\\`\n\n    You can determine which file is used by running the following command:\n\n    ```\n    python -c \"from snowflake.connector.constants import CONNECTIONS_FILE; print(str(CONNECTIONS_FILE))\"\n    ```\n  - Bumped cryptography dependency from <41.0.0,>=3.1.0 to >=3.1.0,<42.0.0.\n  - Improved OCSP response caching to remove tmp cache files on Windows.\n  - Improved OCSP response caching to reduce the times of disk writing.\n  - Added a parameter `server_session_keep_alive` in `SnowflakeConnection` that skips session deletion when client connection closes.\n  - Tightened our pinning of platformdirs, to prevent their new releases breaking us.\n  - Fixed a bug where SFPlatformDirs would incorrectly append application_name/version to its path.\n  - Added retry reason for queries that are retried by the client.\n  - Fixed a bug where `write_pandas` fails when user does not have the privilege to create stage or file format in the target schema, but has the right privilege for the current schema.\n  - Remove Python 3.7 support.\n  - Worked around a segfault which sometimes occurred during cache serialization in multi-threaded scenarios.\n  - Improved error handling of connection reset error.\n  - Fixed a bug about deleting the temporary files happened when running PUT command.\n  - Allowed to pass `type_mapper` to `fetch_pandas_batches()` and `fetch_pandas_all()`.\n  - Fixed a bug where pickle.dump segfaults during cache serialization in multi-threaded scenarios.\n  - Improved retry logic for okta authentication to refresh token if authentication gets throttled.\n  - Note that this release does not include the changes introduced in the previous 3.1.0a1 release. Those will be released at a later time.\n\n- v3.0.4(May 23,2023)\n  - Fixed a bug in which `cursor.execute()` could modify the argument statement_params dictionary object when executing a multistatement query.\n  - Added the json_result_force_utf8_decoding connection parameter to force decoding JSON content in utf-8 when the result format is JSON.\n  - Fixed a bug in which we cannot call `SnowflakeCursor.nextset` before fetching the result of the first query if the cursor runs an async multistatement query.\n  - Bumped vendored library urllib3 to 1.26.15\n  - Bumped vendored library requests to 2.29.0\n  - Fixed a bug when `_prefetch_hook()` was not called before yielding results of `execute_async()`.\n  - Fixed a bug where some ResultMetadata fields were marked as required when they were optional.\n  - Bumped pandas dependency from <1.6.0,>=1.0.0 to >=1.0.0,<2.1.0\n  - Fixed a bug where bulk insert converts date incorrectly.\n  - Add support for Geometry types.\n\n- v3.0.3(April 20, 2023)\n  - Fixed a bug that prints error in logs for GET command on GCS.\n  - Added a parameter that allows users to skip file uploads to stage if file exists on stage and contents of the file match.\n  - Fixed a bug that occurred when writing a Pandas DataFrame with non-default index in `snowflake.connector.pandas_tool.write_pandas`.\n  - Fixed a bug that occurred when writing a Pandas DataFrame with column names containing double quotes in `snowflake.connector.pandas_tool.write_pandas`.\n  - Fixed a bug that occurred when writing a Pandas DataFrame with binary data in `snowflake.connector.pandas_tool.write_pandas`.\n  - Improved type hint of `SnowflakeCursor.execute` method.\n  - Fail instantly upon receiving `403: Forbidden` HTTP response for a login-request.\n  - Improved GET logging to warn when downloading multiple files with the same name.\n\n- v3.0.2(March 23, 2023)\n\n  - Fixed a memory leak in the logging module of the Cython extension.\n  - Fixed a bug where the `put` command on AWS raised `AttributeError` when uploading file composed of multiple parts.\n  - Fixed a bug of incorrect type hints of `SnowflakeCursor.fetch_arrow_all` and `SnowflakeCursor.fetchall`.\n  - Fixed a bug where `snowflake.connector.util_text.split_statements` swallows the final line break in the case when there are no space between lines.\n  - Improved logging to mask tokens in case of errors.\n  - Validate SSO URL before opening it in the browser for External browser authenticator.\n\n- v3.0.1(February 28, 2023)\n\n  - Improved the robustness of OCSP response caching to handle errors in cases of serialization and deserialization.\n  - Updated async_executes method's doc-string.\n  - Errors raised now have a query field that contains the SQL query that caused them when available.\n  - Fixed a bug where MFA token caching would refuse to work until restarted instead of reauthenticating.\n  - Replaced the dependency on setuptools in favor of packaging.\n  - Fixed a bug where `AuthByKeyPair.handle_timeout` should pass keyword arguments instead of positional arguments when calling `AuthByKeyPair.prepare`.\n\n- v3.0.0(January 26, 2023)\n\n  - Fixed a bug where write_pandas did not use user-specified schema and database to create intermediate objects\n  - Fixed a bug where HTTP response code of 429 were not retried\n  - Fixed a bug where MFA token caching was not working\n  - Bumped pyarrow dependency from >=8.0.0,<8.1.0 to >=10.0.1,<10.1.0\n  - Bumped pyOpenSSL dependency from <23.0.0 to <24.0.0\n  - During browser-based authentication, the SSO url is now printed before opening it in the browser\n  - Increased the level of a log for when ArrowResult cannot be imported\n  - Added a minimum MacOS version check when compiling C-extensions\n  - Enabled `fetch_arrow_all` and `fetch_arrow_batches` to handle async query results\n\n- v2.9.0(December 9, 2022)\n\n  - Fixed a bug where the permission of the file downloaded via GET command is changed\n  - Reworked authentication internals to allow users to plug custom key-pair authenticators\n  - Multi-statement query execution is now supported through `cursor.execute` and `cursor.executemany`\n    - The Snowflake parameter `MULTI_STATEMENT_COUNT` can be altered at the account, session, or statement level. An additional argument, `num_statements`, can be provided to `execute` to use this parameter at the statement level. It *must* be provided to `executemany` to submit a multi-statement query through the method. Note that bulk insert optimizations available through `executemany` are not available when submitting multi-statement queries.\n      - By default the parameter is 1, meaning only a single query can be submitted at a time\n      - Set to 0 to submit any number of statements in a multi-statement query\n      - Set to >1 to submit the specified exact number of statements in a multi-statement query\n    - Bindings are accepted in the same way for multi-statements as they are for single statement queries\n    - Asynchronous multi-statement query execution is supported. Users should still use `get_results_from_sfqid` to retrieve results\n    - To access the results of each query, users can call `SnowflakeCursor.nextset()` as specified in the DB 2.0 API (PEP-249), to iterate through each statements results\n      - The first statement's results are accessible immediately after calling `execute` (or `get_results_from_sfqid` if asynchronous) through the existing `fetch*()` methods\n\n- v2.8.3(November 28,2022)\n\n  - Bumped cryptography dependency from <39.0.0 to <41.0.0\n  - Fixed a bug where expired OCSP response cache caused infinite recursion during cache loading\n\n- v2.8.2(November 18,2022)\n\n  - Improved performance of OCSP response caching\n  - During the execution of GET commands we no longer resolve target location on the local machine\n  - Improved performance of regexes used for PUT/GET SQL statement detection. CVE-2022-42965\n\n- v2.8.1(October 30,2022)\n\n   - Bumped cryptography dependency from <37.0.0 to <39.0.0\n   - Bumped pandas dependency from <1.5.0 to <1.6.0\n   - Fixed a bug where write_pandas wouldn't write an empty DataFrame to Snowflake\n   - When closing connection async query status checking is now parallelized\n   - Fixed a bug where test logging would be enabled on Jenkins workers in non-Snowflake Jenkins machines\n   - Enhanced the atomicity of write_pandas when overwrite is set to True\n\n- v2.8.0(September 27,2022)\n\n  - Fixed a bug where rowcount was deleted when the cursor was closed\n  - Fixed a bug where extTypeName was used even when it was empty\n  - Updated how telemetry entries are constructed\n  - Added telemetry for imported root packages during run-time\n  - Added telemetry for using write_pandas\n  - Fixed missing dtypes when calling fetch_pandas_all() on empty result\n  - The write_pandas function now supports providing additional arguments to be used by DataFrame.to_parquet\n  - All optional parameters of write_pandas can now be provided to pd_writer and make_pd_writer to be used with DataFrame.to_sql\n\n- v2.7.12(August 26,2022)\n\n   - Fixed a bug where timestamps fetched as pandas.DataFrame or pyarrow.Table would overflow for the sake of unnecessary precision. In the case where an overflow cannot be prevented a clear error will be raised now.\n   - Added in-file caching for OCSP response caching\n   - The write_pandas function now supports transient tables through the new table_type argument which supersedes create_temp_table argument\n   - Fixed a bug where calling fetch_pandas_batches incorrectly raised NotSupportedError after an async query was executed\n   - Added support for OKTA Identity Engine\n\n- v2.7.11(July 26,2022)\n\n   - Added minimum version pin to typing_extensions\n\n- v2.7.10(July 22,2022)\n\n   - Release wheels are now built on manylinux2014\n   - Bumped supported pyarrow version to >=8.0.0,<8.1.0\n   - Updated vendored library versions requests to 2.28.1 and urllib3 to 1.26.10\n   - Added in-memory cache to OCSP requests\n   - Added overwrite option to write_pandas\n   - Added attribute `lastrowid` to `SnowflakeCursor` in compliance with PEP249.\n   - Fixed a bug where gzip compressed http requests might be garbled by an unflushed buffer\n   - Added new connection diagnostics capabilities to snowflake-connector-python\n   - Bumped numpy dependency from <1.23.0 to <1.24.0\n\n\n- v2.7.9(June 26,2022)\n\n   - Fixed a bug where errors raised during get_results_from_sfqid() were missing errno\n   - Fixed a bug where empty results containing GEOGRAPHY type raised IndexError\n\n\n- v2.7.8(May 28,2022)\n\n   - Updated PyPi documentation link to python specific main page\n   - Fixed an error message that appears when pandas optional dependency group is required but is not installed\n   - Implemented the DB API 2 callproc() method\n   - Fixed a bug where decryption took place before decompression when downloading files from stages\n   - Fixed a bug where s3 accelerate configuration was handled incorrectly\n   - Extra named arguments given executemany() are now forwarded to execute()\n   - Automatically sets the application name to streamlit when streamlit is imported and application name was not explicitly set\n   - Bumped pyopenssl dependency version to >=16.2.0,<23.0.0\n\n\n- v2.7.7(April 30,2022)\n\n   - Bumped supported pandas version to < 1.5.0\n   - Fixed a bug where partner name (from SF_PARTNER environmental variable) was set after connection was established\n   - Added a new _no_retry option to executing queries\n   - Fixed a bug where extreme timestamps lost precision\n\n\n- v2.7.6(March 17,2022)\n\n   - Fixed missing python_requires tag in setup.cfg\n\n- v2.7.5(March 17,2022)\n\n   - Added an option for partners to inject their name through an environmental variable (SF_PARTNER)\n   - Fixed a bug where we would not wait for input if a browser window couldn't be opened for SSO login\n   - Deprecate support for Python 3.6\n   - Exported a type definition for SnowflakeConnection\n   - Fixed a bug where final Arrow table would contain duplicate index numbers when using fetch_pandas_all\n\n- v2.7.4(February 05,2022)\n\n   - Add Geography Types\n   - Removing automated incident reporting code\n   - Fixed a bug where circular reference would prevent garbage collection on some objects\n   - Fixed a bug where `DatabaseError` was thrown when executing against a closed cursor instead of `InterfaceError`\n   - Fixed a bug where calling `executemany` would crash if an iterator was supplied as args\n   - Fixed a bug where violating `NOT NULL` constraint raised `DatabaseError` instead of `IntegrityError`\n\n- v2.7.3(January 22,2022)\n\n   - Fixed a bug where timezone was missing from retrieved Timestamp_TZ columns\n   - Fixed a bug where a long running PUT/GET command could hit a Storage Credential Error while renewing credentials\n   - Fixed a bug where py.typed was not being included in our release wheels\n   - Fixed a bug where negative numbers were mangled when fetched with the connection parameter arrow_number_to_decimal\n   - Improved the error message that is encountered when running GET for a non-existing file\n   - Fixed rendering of our long description for PyPi\n   - Fixed a bug where DUO authentication ran into errors if sms authentication was disabled for the user\n   - Add the ability to auto-create a table when writing a pandas DataFrame to a Snowflake table\n   - Bumped the maximum dependency version of numpy from <1.22.0 to <1.23.0\n\n- v2.7.2(December 17,2021)\n\n   - Added support for Python version 3.10.\n   - Fixed an issue bug where _get_query_status failed if there was a network error.\n   - Added the interpolate_empty_sequences connection parameter to control interpolating empty sequences into queries.\n   - Fixed an issue where where BLOCKED was considered to be an error by is_an_error.\n   - Added source field to Telemetry.\n   - Increased the cryptography dependency version.\n   - Increased the pyopenssl dependency version.\n   - Fixed an issue where dbapi.Binary returned a string instead of bytes.\n   - Increased the required version of numpy.\n   - Increased the required version of keyring.\n   - Fixed issue so that fetch functions now return a typed DataFrames and pyarrow Tables for empty results.\n   - Added py.typed\n   - Improved error messages for PUT/GET.\n   - Added Cursor.query attribute for accessing last query.\n   - Increased the required version of pyarrow.\n\n\n- v2.7.1(November 19,2021)\n\n   - Fixed a bug where uploading a streaming file with multiple parts did not work.\n   - JWT tokens are now regenerated when a request is retired.\n   - Updated URL escaping when uploading to AWS S3 to match how S3 escapes URLs.\n   - Removed the unused s3_connection_pool_size connection parameter.\n   - Blocked queries are now be considered to be still running.\n   - Snowflake specific exceptions are now set using Exception arguments.\n   - Fixed an issue where use_s3_regional_url was not set correctly by the connector.\n\n\n- v2.7.0(October 25,2021)\n\n   - Removing cloud sdks.snowflake-connector-python will not install them anymore. Recreate your virtualenv to get rid of unnecessary dependencies.\n   - Include Standard C++ headers.\n   - Update minimum dependency version pin of cryptography.\n   - Fixed a bug where error number would not be added to Exception messages.\n   - Fixed a bug where client_prefetch_threads parameter was not respected when pre-fetching results.\n   - Update signature of SnowflakeCursor.execute's params argument.\n\n\n- v2.6.2(September 27,2021)\n\n   - Updated vendored urllib3 and requests versions.\n   - Fixed a bug where GET commands would fail to download files from sub directories from stages.\n   - Added a feature where where the connector will print the url it tried to open when it is unable to open it for external browser authentication.\n\n\n- v2.6.1(September 16,2021)\n\n   - Bump pandas version from <1.3 to <1.4\n   - Fixing Python deprecation warnings.\n   - Added more type-hints.\n   - Marked HeartBeatTimer threads as daemon threads.\n   - Force cast a column into integer in write_pandas to avoid a rare behavior that would lead to crashing.\n   - Implement AWS signature V4 to new SDKless PUT and GET.\n   - Removed a deprecated setuptools option from setup.py.\n   - Fixed a bug where error logs would be printed for query executions that produce no results.\n   - Fixed a bug where the temporary stage for bulk array inserts exists.\n\n\n- v2.6.0(August 29,2021)\n\n   - Internal change to the implementation of result fetching.\n   - Upgraded Pyarrow version from 3.0 to 5.0.\n   - Internal change to the implementation for PUT and GET. A new connection parameter use_new_put_get was added to toggle between implementations.\n   - Fixed a bug where executemany did not detect the type of data it was inserting.\n   - Updated the minimum Mac OSX build target from 10.13 to 10.14.\n\n\n- v2.5.1(July 31,2021)\n\n   - Fixes Python Connector bug that prevents the connector from using AWS S3 Regional URL. The driver currently overrides the regional URL information with the default S3 URL causing failure in PUT.\n\n\n- v2.5.0(July 22,2021)\n\n   - Fixed a bug in write_pandas when quote_identifiers is set to True the function would not actually quote column names.\n   - Bumping idna dependency pin from <3,>=2.5 to >=2.5,<4\n   - Fix describe method when running `insert into ...` commands\n\n\n- v2.4.6(June 25,2021)\n\n   - Fixed a potential memory leak.\n   - Removed upper certifi version pin.\n   - Updated vendored libraries , urllib(1.26.5) and requests(2.25.1).\n   - Replace pointers with UniqueRefs.\n   - Changed default value of client_session_keep_alive to None.\n   - Added the ability to retrieve metadata/schema without executing the query (describe method).\n\n- v2.4.5(June 15,2021)\n\n   - Fix for incorrect JWT token invalidity when an account alias with a dash in it is used for regionless account URL.\n\n- v2.4.4(May 30,2021)\n\n   - Fixed a segfault issue when using DictCursor and arrow result format with out of range dates.\n   - Adds new make_pd_writer helper function\n\n\n- v2.4.3(April 29,2021)\n\n   - Uses s3 regional URL in private links when a param is set.\n   - New Arrow NUMBER to Decimal converter option.\n   - Update pyopenssl requirement from <20.0.0,>=16.2.0 to >=16.2.0,<21.0.0.\n   - Update pandas requirement from <1.2.0,>=1.0.0 to >=1.0.0,<1.3.0.\n   - Update numpy requirement from <1.20.0 to <1.21.0.\n\n\n- v2.4.2(April 03,2021)\n\n   - PUT statements are now thread-safe.\n\n\n- v2.4.1(March 04,2021)\n\n   - Make connection object exit() aware of status of parameter `autocommit`\n\n\n- v2.4.0(March 04,2021)\n\n   - Added support for Python 3.9 and PyArrow 3.0.x.\n   - Added support for the upcoming multipart PUT threshold keyword.\n   - Added support for using the PUT command with a file-like object.\n   - Added some compilation flags to ease building conda community package.\n   - Removed the pytz pin because it doesn't follow semantic versioning release format.\n   - Added support for optimizing batch inserts through bulk array binding.\n\n\n- v2.3.10(February 01,2021)\n\n   - Improved query ID logging and added request GUID logging.\n   - For dependency checking, increased the version condition for the pyjwt package from <2.0.0 to <3.0.0.\n\n\n- v2.3.9(January 27,2021)\n\n   - The fix to add proper proxy CONNECT headers for connections made over proxies.\n\n\n- v2.3.8(January 14,2021)\n\n   - Arrow result conversion speed up.\n   - Send all Python Connector exceptions to in-band or out-of-band telemetry.\n   - Vendoring requests and urllib3 to contain OCSP monkey patching to our library only.\n   - Declare dependency on setuptools.\n\n\n- v2.3.7(December 10,2020)\n\n   - Added support for upcoming downscoped GCS credentials.\n   - Tightened the pyOpenSSL dependency pin.\n   - Relaxed the boto3 dependency pin up to the next major release.\n   - Relaxed the cffi dependency pin up to the next major release.\n   - Added support for executing asynchronous queries.\n   - Dropped support for Python 3.5.\n\n- v2.3.6(November 16,2020)\n\n   - Fixed a bug that was preventing the connector from working on Windows with Python 3.8.\n   - Improved the string formatting in exception messages.\n   - For dependency checking, increased the version condition for the cryptography package from <3.0.0 to <4.0.0.\n   - For dependency checking, increased the version condition for the pandas package from <1.1 to <1.2.\n\n- v2.3.5(November 03,2020)\n\n   - Updated the dependency on the cryptography package from version 2.9.2 to 3.2.1.\n\n- v2.3.4(October 26,2020)\n\n   - Added an optional parameter to the write_pandas function to specify that identifiers should not be quoted before being sent to the server.\n   - The write_pandas function now honors default and auto-increment values for columns when inserting new rows.\n   - Updated the Python Connector OCSP error messages and accompanying telemetry Information.\n   - Enabled the runtime pyarrow version verification to fail gracefully. Fixed a bug with AWS glue environment.\n   - Upgraded the version of boto3 from 1.14.47 to 1.15.9.\n   - Upgraded the version of idna from 2.9 to 2.10.\n\n- v2.3.3(October 05,2020)\n\n   - Simplified the configuration files by consolidating test settings.\n   - In the Connection object, the execute_stream and execute_string methods now filter out empty lines from their inputs.\n\n- v2.3.2(September 14,2020)\n\n   - Fixed a bug where a file handler was not closed properly.\n   - Fixed various documentation typos.\n\n- v2.3.1(August 25,2020)\n\n   - Fixed a bug where 2 constants were removed by mistake.\n\n- v2.3.0(August 24,2020)\n\n   - When the log level is set to DEBUG, log the OOB telemetry entries that are sent to Snowflake.\n   - Fixed a bug in the PUT command where long running PUTs would fail to re-authenticate to GCP for storage.\n   - Updated the minimum build target MacOS version to 10.13.\n\n- v2.2.10(August 03,2020)\n\n    - Improved an error message for when \"pandas\" optional dependency group is not installed and user tries to fetch data into a pandas DataFrame. It'll now point user to our online documentation.\n\n- v2.2.9(July 13,2020)\n\n    - Connection parameter validate_default_parameters now verifies known connection parameter names and types. It emits warnings for anything unexpected types or names.\n    - Correct logging messages for compiled C++ code.\n    - Fixed an issue in write_pandas with location determination when database, or schema name was included.\n    - Bumped boto3 dependency version.\n    - Fixed an issue where uploading a file with special UTF-8 characters in their names corrupted file.\n\n- v2.2.8(June 22,2020)\n\n    - Switched docstring style to Google from Epydoc and added automated tests to enforce the standard.\n    - Fixed a memory leak in DictCursor's Arrow format code.\n\n- v2.2.7(June 1,2020)\n\n    - Support azure-storage-blob v12 as well as v2 (for Python 3.5.0-3.5.1) by Python Connector\n    - Fixed a bug where temporary directory path was not Windows compatible in write_pandas function\n    - Added out of band telemetry error reporting of unknown errors\n\n- v2.2.6(May 11,2020)\n\n    - Update Pyarrow version from 0.16.0 to 0.17.0 for Python connector\n    - Remove more restrictive application name enforcement.\n    - Missing keyring dependency will not raise an exception, only emit a debug log from now on.\n    - Bumping boto3 to <1.14\n    - Fix flake8 3.8.0 new issues\n    - Implement Python log interceptor\n\n- v2.2.5(April 30,2020)\n\n    - Added more efficient way to ingest a pandas.Dataframe into Snowflake, located in snowflake.connector.pandas_tools\n    - More restrictive application name enforcement and standardizing it with other Snowflake drivers\n    - Added checking and warning for users when they have a wrong version of pyarrow installed\n\n- v2.2.4(April 10,2020)\n\n    - Emit warning only if trying to set different setting of use_openssl_only parameter\n\n- v2.2.3(March 30,2020)\n\n    - Secure SSO ID Token\n    - Add use_openssl_only connection parameter, which disables the usage of pure Python cryptographic libraries for FIPS\n    - Add manylinux1 as well as manylinux2010\n    - Fix a bug where a certificate file was opened and never closed in snowflake-connector-python.\n    - Fix python connector skips validating GCP URLs\n    - Adds additional client driver config information to in band telemetry.\n\n- v2.2.2(March 9,2020)\n\n    - Fix retry with chunck_downloader.py for stability.\n    - Support Python 3.8 for Linux and Mac.\n\n- v2.2.1(February 18,2020)\n\n    - Fix use DictCursor with execute_string #248\n\n- v2.2.0(January 27,2020)\n\n    - Drop Python 2.7 support\n    - AWS: When OVERWRITE is false, which is set by default, the file is uploaded if no same file name exists in the stage. This used to check the content signature but it will no longer check. Azure and GCP already work this way.\n    - Document Python connector dependencies on our GitHub page in addition to Snowflake docs.\n    - Fix sqlalchemy and possibly python-connector warnings.\n    - Fix GCP exception using the Python connector to PUT a file in a stage with auto_compress=false.\n    - Bump up botocore requirements to 1.14.\n    - Fix uppercaseing authenticator breaks Okta URL which may include case-sensitive elements(#257).\n    - Fix wrong result bug while using fetch_pandas_all() to get fixed numbers with large scales.\n    - Increase multi part upload threshold for S3 to 64MB.\n\n- v2.1.3(January 06,2020)\n\n    - Fix GCP Put failed after hours\n\n- v2.1.2(December 16,2019)\n\n    - Fix the arrow bundling issue for python connector on mac.\n    - Fix the arrow dll bundle issue on windows.Add more logging.\n\n- v2.1.1(December 12,2019)\n\n    - Fix GZIP uncompressed content for Azure GET command.\n    - Add support for GCS PUT and GET for private preview.\n    - Support fetch as numpy value in arrow result format.\n    - Fix NameError: name 'EmptyPyArrowIterator' is not defined for Mac.\n    - Return empty dataframe for fetch_pandas_all() api if result set is empty.\n\n- v2.1.0(December 2,2019)\n\n    - Fix default `ssl_context` options\n    - Pin more dependencies for Python Connector\n    - Fix import of SnowflakeOCSPAsn1Crypto crashes Python on MacOS Catalina\n    - Update the release note that 1.9.0 was removed\n    - Support DictCursor for arrow result format\n    - Upgrade Python's arrow lib to 0.15.1\n    - Raise Exception when PUT fails to Upload Data\n    - Handle year out of range correctly in arrow result format\n\n- v2.0.4(November 13,2019)\n\n    - Increase OCSP Cache expiry time from 24 hours to 120 hours.\n    - Fix pyarrow cxx11 abi compatibility issue\n    - Use new query result format parameter in python tests\n\n- v2.0.3(November 1,2019)\n\n    - Fix for ,Pandas fetch API did not handle the case that first chunk is empty correctly.\n    - Updated with botocore, boto3 and requests packages to the latest version.\n    - Pinned stable versions of Azure urllib3 packages.\n\n- v2.0.2(October 21,2019)\n\n    - Fix sessions remaining open even if they are disposed manually. Retry deleting session if the connection is explicitly closed.\n    - Fix memory leak in the new fetch pandas API\n    - Fix Auditwheel failed with python37\n    - Reduce the footprint of Python Connector\n    - Support asn1crypto 1.1.x\n    - Ensure that the cython components are present for Conda package\n\n- v2.0.1(October 04,2019)\n\n    - Add asn1crypto requirement to mitigate incompatibility change\n\n- v2.0.0(September 30,2019)\n\n    - Release Python Connector 2.0.0 for Arrow format change.\n    - Fix\u00a0SF_OCSP_RESPONSE_CACHE_DIR referring to the OCSP cache response file directory and not the top level of directory.\n    - Fix Malformed certificate ID key causes uncaught KeyError.\n    - No retry for certificate errors.\n    - Fix In-Memory OCSP Response Cache - PythonConnector\n    - Move AWS_ID and AWS_SECRET_KEY to their newer versions in the Python client\n    - Fix result set downloader for ijson 2.5\n    - Make authenticator field case insensitive earlier\n    - Update\u00a0USER-AGENT to be consistent with new format\n    - Update Python Driver URL Whitelist to support US Gov domain\n    - Fix memory leak in python connector panda df fetch API\n\n- v1.9.1(October 4,2019)\n\n    - Add asn1crypto requirement to mitigate incompatibility change.\n\n- v1.9.0(August 26,2019) **REMOVED from pypi due to dependency compatibility issues**\n\n    - Implement converter for all arrow data types in python connector extension\n    - Fix arrow error when returning empty result using python connecter\n    - Fix OCSP responder hang, AttributeError: 'ReadTimeout' object has no attribute 'message'\n    - Update OCSP Connection timeout.\n    - Fix RevokedCertificateError OOB Telemetry events are not sent\n    - Uncaught RevocationCheckError for FAIL_OPEN in create_pair_issuer_subject\n    - Fix uncaught exception in generate_telemetry_data function\n    - Fix connector looses context after connection drop/restore by retrying IncompleteRead error.\n    - Make tzinfo class at the module level instead of inlining\n\n- v1.8.7(August 12,2019)\n\n    - Rewrote validateDefaultParameters to validate the database, schema and warehouse at connection time. False by default.\n    - Fix OCSP Server URL problem in multithreaded env\n    - Fix Azure Gov PUT and GET issue\n\n- v1.8.6(July 29,2019)\n\n    - Reduce retries for OCSP from Python Driver\n    - Azure PUT issue: ValueError: I/O operation on closed file\n    - Add client information to USER-AGENT HTTP header - PythonConnector\n    - Better handling of OCSP cache download failure\n\n- v1.8.5(July 15,2019)\n\n    - Drop Python 3.4 support for Python Connector\n\n- v1.8.4(July 01,2019)\n\n    - Update Python Connector to discard invalid OCSP Responses while merging caches\n\n- v1.8.3(June 17,2019)\n\n    - Update Client Driver OCSP Endpoint URL for Private Link Customers\n    - Ignore session gone 390111 when closing\n    - Python3.4 using requests 2.21.0 needs older version of urllib3\n    - Use Account Name for Global URL\n\n- v1.8.2 (June 03,2019)\n\n    - Pendulum datatype support\n\n- v1.8.1 (May 20,2019)\n\n    - Revoked OCSP Responses persists in Driver Cache + Logging Fix\n    - Fixed DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated\n\n- v1.8.0 (May 10, 2019)\n\n    - support ``numpy.bool_`` in binding type\n    - Add Option to Skip Request Pooling\n    - Add OCSP_MODE metric\n    - Fixed PUT URI issue for Windows path\n    - OCSP SoftFail\n\n- v1.7.11 (April 22, 2019)\n\n    - numpy timestamp with timezone support\n    - qmark not binding None\n\n- v1.7.10 (April 8, 2019)\n\n    - Fix the incorrect custom Server URL in Python Driver for Privatelink\n\n- v1.7.9 (March 25,2019)\n\n    - Python Interim Solution for Custom Cache Server URL\n    - Internal change for pending feature\n\n- v1.7.8 (March 12,2019)\n\n    - Add OCSP signing certificate validity check\n\n- v1.7.7 (February 22,2019)\n\n    - Skip HEAD operation when OVERWRITE=true for PUT\n    - Update copyright year from 2018 to 2019 for Python\n\n- v1.7.6 (February 08,2019)\n\n    - Adjusted pyasn1 and pyasn1-module requirements for Python Connector\n    - Added idna to setup.py. made pyasn1 optional for Python2\n\n- v1.7.5 (January 25, 2019)\n\n    - Incorporate \"kwargs\" style group of key-value pairs in connection's \"execute_string\" function.\n\n- v1.7.4 (January 3, 2019)\n\n    - Invalidate outdated OCSP response when checking cache hit\n    - Made keyring use optional in Python Connector\n    - Added SnowflakeNullConverter for Python Connector to skip all client side conversions\n    - Honor ``CLIENT_PREFETCH_THREADS`` to download the result set.\n    - Fixed the hang when region=us-west-2 is specified.\n    - Added Python 3.7 tests\n\n- v1.7.3 (December 11, 2018)\n\n    - Improved the progress bar control for SnowSQL\n    - Fixed PUT/GET progress bar for Azure\n\n- v1.7.2 (December 4, 2018)\n\n    - Refactored OCSP checks\n    - Adjusted log level to mitigate confusions\n\n- v1.7.1 (November 27, 2018)\n\n    - Fixed regex pattern warning in cursor.py\n    - Fixed 403 error for EU deployment\n    - Fixed the epoch time to datetime object converter for Windoww\n\n- v1.7.0 (November 13, 2018)\n\n    - Internal change for pending feature.\n\n- v1.6.12 (October 30, 2018)\n\n    - Updated ``boto3`` and ``botocore`` version dependeny.\n    - Catch socket.EAI_NONAME for localhost socket and raise a better error message\n    - Added ``client_session_keep_alive_heartbeat_frequency`` to control heartbeat timings for ``client_session_keep_alive``.\n\n- v1.6.11 (October 23, 2018)\n\n    - Fixed exit_on_error=true didn't work if PUT / GET error occurs\n    - Fixed a backslash followed by a quote in a literal was not taken into account.\n    - Added ``request_guid`` to each HTTP request for tracing.\n\n- v1.6.10 (September 25, 2018)\n\n    - Added ``client_session_keep_alive`` support.\n    - Fixed multiline double quote expressions PR #117 (@bensowden)\n    - Fixed binding ``datetime`` for TIMESTAMP type in ``qmark`` binding mode. PR #118 (@rhlahuja)\n    - Retry HTTP 405 to mitigate Nginx bug.\n    - Accept consent response for id token cache. WIP.\n\n- v1.6.9 (September 13, 2018)\n\n    - Changed most INFO logs to DEBUG. Added INFO for key operations.\n    - Fixed the URL query parser to get multiple values.\n\n- v1.6.8 (August 30, 2018)\n\n    - Updated ``boto3`` and ``botocore`` version dependeny.\n\n- v1.6.7 (August 22, 2018)\n\n    - Enforce virtual host URL for PUT and GET.\n    - Added retryCount, clientStarTime for query-request for better service.\n\n- v1.6.6 (August 9, 2018)\n\n    - Replaced ``pycryptodome`` with ``pycryptodomex`` to avoid namespace conflict with ``PyCrypto``.\n    - Fixed hang if the connection is not explicitly closed since 1.6.4.\n    - Reauthenticate for externalbrowser while running a query.\n    - Fixed remove_comments option for SnowSQL.\n\n- v1.6.5 (July 13, 2018)\n\n    - Fixed the current object cache in the connection for id token use.\n    - Added no OCSP cache server use option.\n\n- v1.6.4 (July 5, 2018)\n\n    - Fixed div by zero for Azure PUT command.\n    - Cache id token for SSO. This feature is WIP.\n    - Added telemetry client and job timings by @dsouzam.\n\n- v1.6.3 (June 14, 2018)\n\n    - Fixed binding long value for Python 2.\n\n- v1.6.2 (June 7, 2018)\n\n    - Removes username restriction for OAuth. PR 86(@tjj5036)\n    - Retry OpenSSL.SysError in tests\n    - Updated concurrent insert test as the server improved.\n\n- v1.6.1 (May 17, 2018)\n\n    - Enable OCSP Dynamic Cache server for privatelink.\n    - Ensure the type of ``login_timeout`` attribute is ``int``.\n\n- v1.6.0 (May 3, 2018)\n\n    - Enable OCSP Cache server by default.\n\n- v1.5.8 (April 26, 2018)\n\n    - Fixed PUT command error 'Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.' for Azure deployment.\n\n- v1.5.7 (April 19, 2018)\n\n    - Fixed object has no attribute errors in Python3 for Azure deployment.\n    - Removed ContentEncoding=gzip from the header for PUT command. This caused COPY failure if autocompress=false.\n\n- v1.5.6 (April 5, 2018)\n\n    - Updated ``boto3`` and ``botocore`` version dependeny.\n\n- v1.5.5 (March 22, 2018)\n\n    - Fixed TypeError: list indices must be integers or slices, not str. PR/Issue 75 (@daniel-sali).\n    - Updated ``cryptography`` dependency.\n\n- v1.5.4 (March 15, 2018)\n\n    - Tightened ``pyasn`` and ``pyasn1-modules`` version requirements\n    - Added OS and OS_VERSION session info.\n    - Relaxed ``pycryptodome`` version requirements. No 3.5.0 should be used.\n\n- v1.5.3 (March 9, 2018)\n\n    - Pulled back ``pyasn1`` for OCSP check in Python 2. Python 3 continue using ``asn1crypto`` for better performance.\n    - Limit the upper bound of ``pycryptodome`` version to less than 3.5.0 for Issue 65.\n\n- v1.5.2 (March 1, 2018)\n\n    - Fixed failue in case HOME/USERPROFILE is not set.\n    - Updated ``boto3`` and ``botocore`` version dependeny.\n\n- v1.5.1 (February 15, 2018)\n\n    - Prototyped oauth. Won't work without the server change.\n    - Retry OCSP data parse failure\n    - Fixed paramstyle=qmark binding for SQLAlchemy\n\n- v1.5.0 (January 26, 2018)\n\n    - Removed ``pyasn1`` and ``pyasn1-modules`` from the dependency.\n    - Prototyped key pair authentication.\n    - Fixed OCSP response cache expiration check.\n\n- v1.4.17 (January 19, 2018)\n\n    - Adjusted ``pyasn1`` and ``pyasn1-modules`` version dependency. PR 48 (@baxen)\n    - Started replacing ``pyasn1`` with ``asn1crypto`` Not activated yet.\n\n- v1.4.16 (January 16, 2018)\n\n    - Added OCSP cache related tools.\n\n- v1.4.15 (January 11, 2018)\n\n    - Added OCSP cache server option.\n\n- v1.4.14 (December 14, 2017)\n\n    - Improved OCSP response dump util.\n\n- v1.4.13 (November 30, 2017)\n\n    - Updated ``boto3`` and ``botocore`` version dependeny.\n\n- v1.4.12 (November 16, 2017)\n\n    - Added ``qmark`` and ``numeric`` paramstyle support for server side binding.\n    - Added ``timezone`` session parameter support to connections.\n    - Fixed a file handler leak in OCSP checks.\n\n- v1.4.11 (November 9, 2017)\n\n    - Fixed Azure PUT command to use AES CBC key encryption.\n    - Added retry for intermittent PyAsn1Error.\n\n- v1.4.10 (October 26, 2017)\n\n    - Added Azure support for PUT and GET commands.\n    - Updated ``cryptography``, ``boto3`` and ``botocore`` version dependeny.\n\n- v1.4.9 (October 10, 2017)\n\n    - Fixed a regression caused by ``pyasn1`` upgrade.\n\n- v1.4.8 (October 5, 2017)\n\n    - Updated Fed/SSO parameters. The production version of Fed/SSO from Python Connector requires this version.\n    - Refactored for Azure support\n    - Set CLIENT_APP_ID and CLIENT_APP_VERSION in all requests\n    - Support new behaviors of newer version of ``pyasn1``. Relaxed the dependency.\n    - Making socket timeout same as the login time\n    - Fixed the case where no error message is attached.\n\n- v1.4.7 (September 20, 2017)\n\n    - Refresh AWS token in PUT command if S3UploadFailedError includes the ExpiredToken error\n    - Retry all of 5xx in connection\n\n- v1.4.6 (September 14, 2017)\n\n    - Mitigated sigint handler config failure for SQLAlchemy\n    - Improved the message for invalid SSL certificate error\n    - Retry forever for query to mitigate 500 errors\n\n- v1.4.5 (August 31, 2017)\n\n    - Fixed regression in #34 by rewriting SAML 2.0 compliant service application support.\n    - Cleaned up logger by moving instance to module.\n\n- v1.4.4 (August 24, 2017)\n\n    - Fixed Azure blob certificate issue. OCSP response structure bug fix\n    - Added SAML 2.0 compliant service application support. preview feature.\n    - Upgraded SSL wrapper with the latest urllib3 pyopenssl glue module. It uses kqueue, epoll or poll in replacement of select to read data from socket if available.\n\n- v1.4.3 (August 17, 2017)\n\n    - Changed the log levels for some messages from ERROR to DEBUG to address confusion as real incidents. In fact, they are not real issues but signals for connection retry.\n    - Added ``certifi`` to the dependent component list to mitigate CA root certificate out of date issue.\n    - Set the maximum versions of dependent components ``boto3`` and ``botocore``.\n    - Updated ``cryptography`` and ``pyOpenSSL`` version dependeny change.\n    - Added a connection parameter ``validate_default_parameters`` to validate the default database, schema and warehouse. If the specified object doesn't exist, it raises an error.\n\n- v1.4.2 (August 3, 2017)\n\n    - Fixed retry HTTP 400 in upload file when AWS token expires\n    - Relaxed the version of dependent components ``pyasn1`` and ``pyasn1-modules``\n\n- v1.4.1 (July 26, 2017)\n\n    - Pinned ``pyasn1`` and ``pyasn1-modules`` versions to 0.2.3 and 0.0.9, respectively\n\n- v1.4.0 (July 6, 2017)\n\n    - Relaxed the versions of dependent components ``boto3``, ``botocore``, ``cffi`` and ``cryptography`` and ``pyOpenSSL``\n    - Minor improvements in OCSP response file cache\n\n- v1.3.18 (June 15, 2017)\n\n    - Fixed OCSP response cache file not found issue on Windows. Drive letter was taken off\n    - Use less restrictive cryptography>=1.7,<1.8\n    - Added ORC detection in PUT command\n\n- v1.3.17 (June 1, 2017)\n\n    - Timeout OCSP request in 60 seconds and retry\n    - Set autocommit and abort_detached_query session parameters in authentication time if specified\n    - Fixed cross region stage issue. Could not get files in us-west-2 region S3 bucket from us-east-1\n\n- v1.3.16 (April 20, 2017)\n\n    - Fixed issue in fetching ``DATE`` causing [Error 22] Invalid argument on Windows\n    - Retry on ``RuntimeError`` in requests\n\n- v1.3.15 (March 30, 2017)\n\n    - Refactored data converters in fetch to improve performance\n    - Fixed timestamp format FF to honor the scale of data type\n    - Improved the security of OKTA authentication with hostname verifications\n    - Retry PUT on the error ``OpenSSL.SSL.SysCallError`` 10053 with lower concurrency\n    - Added ``raw_msg`` attribute to ``Error`` class\n    - Refactored session managements\n\n- v1.3.14 (February 24, 2017)\n\n    - Improved PUT and GET error handler.\n    - Added proxy support to OCSP checks.\n    - Use proxy parameters for PUT and GET commands.\n    - Added ``sfqid`` and ``sqlstate`` to the results from query results.\n    - Fixed the connection timeout calculation based on ``login_timeout`` and ``network_timeout``.\n    - Improved error messages in case of 403, 502 and 504 HTTP reponse code.\n    - Upgraded ``cryptography`` to 1.7.2, ``boto3`` to 1.4.4 and ``botocore`` to 1.5.14.\n    - Removed explicit DNS lookup for OCSP URL.\n\n- v1.3.13 (February 9, 2017)\n\n    - Fixed AWS SQS connection error with OCSP checks\n    - Added ``login_timeout`` and ``network_timeout`` parameters to the ``Connection`` objects.\n    - Fixed forbidden access error handing\n\n- v1.3.12 (February 2, 2017)\n\n    - Fixed ``region`` parameter. One character was truncated from the tail of account name\n    - Improved performance of fetching data by refactoring fetchone method\n\n- v1.3.11 (January 27, 2017)\n\n    - Fixed the regression in 1.3.8 that caused intermittent 504 errors\n\n- v1.3.10 (January 26, 2017)\n\n    - Compress data in HTTP requests at all times except empty data or OKTA request\n    - Refactored FIXED, REAL and TIMESTAMP data fetch to improve performance. This mainly impacts SnowSQL\n    - Added ``region`` option to support EU deployments better\n    - Increased the retry counter for OCSP servers to mitigate intermittent failure\n    - Refactored HTTP access retry logic\n\n- v1.3.9 (January 16, 2017)\n\n    - Upgraded ``botocore`` to 1.4.93 to fix and ``boto3`` to 1.4.3 to fix the HTTPS request failure in Python 3.6\n    - Fixed python2 incomaptible import http.client\n    - Retry OCSP validation in case of non-200 HTTP code returned\n\n- v1.3.8 (January 12, 2017)\n\n    - Convert non-UTF-8 data in the large result set chunk to Unicode replacement characters to avoid decode error.\n    - Updated copyright year to 2017.\n    - Use `six` package to support both PY2 and PY3 for some functions\n    - Upgraded ``cryptography`` to 1.7.1 to address MacOS Python 3.6 build issue.\n    - Fixed OverflowError caused by invalid range of timetamp data for SnowSQL.\n\n- v1.3.7 (December 8, 2016)\n\n    - Increased the validity date acceptance window to prevent OCSP returning invalid responses due to out-of-scope validity dates for certificates.\n    - Enabled OCSP response cache file by default.\n\n- v1.3.6 (December 1, 2016)\n\n    - Upgraded ``cryptography`` to 1.5.3, ``pyOpenSSL`` to 16.2.0 and ``cffi`` to 1.9.1.\n\n- v1.3.5 (November 17, 2016)\n\n    - Fixed CA list cache race condition\n    - Added retry intermittent 400 HTTP ``Bad Request`` error\n\n- v1.3.4 (November 3, 2016)\n\n    - Added ``quoted_name`` data type support for binding by SQLAlchemy\n    - Not to compress ``parquiet`` file in PUT command\n\n- v1.3.3 (October 20, 2016)\n\n    - Downgraded ``botocore`` to 1.4.37 due to potential regression.\n    - Increased the stability of PUT and GET commands\n\n- v1.3.2 (October 12, 2016)\n\n    - Upgraded ``botocore`` to 1.4.52.\n    - Set the signature version to v4 to AWS client. This impacts ``PUT``, ``GET`` commands and fetching large result set.\n\n- v1.3.1 (September 30, 2016)\n\n    - Added an account name including subdomain.\n\n- v1.3.0 (September 26, 2016)\n\n    - Added support for the ``BINARY`` data type, which enables support for more Python data types:\n\n        - Python 3:\n\n            - ``bytes`` and ``bytearray`` can be used for binding.\n            - ``bytes`` is also used for fetching ``BINARY`` data type.\n\n        - Python 2:\n\n            - ``bytearray`` can be used for binding\n            - ``str`` is used for fetching ``BINARY`` data type.\n\n    - Added ``proxy_user`` and ``proxy_password`` connection parameters for proxy servers that require authentication.\n\n- v1.2.8 (August 16, 2016)\n\n    - Upgraded ``botocore`` to 1.4.37.\n    - Added ``Connection.execute_string`` and ``Connection.execute_stream`` to run multiple statements in a string and stream.\n    - Increased the stability of fetching data for Python 2.\n    - Refactored memory usage in fetching large result set (Work in Progress).\n\n- v1.2.7 (July 31, 2016)\n\n    - Fixed ``snowflake.cursor.rowcount`` for INSERT ALL.\n    - Force OCSP cache invalidation after 24 hours for better security.\n    - Use ``use_accelerate_endpoint`` in PUT and GET if Transfer acceleration is enabled for the S3 bucket.\n    - Fixed the side effect of ``python-future`` that loads ``test.py`` in the current directory.\n\n- v1.2.6 (July 13, 2016)\n\n    - Fixed the AWS token renewal issue with PUT command when uploading uncompressed large files.\n\n- v1.2.5 (July 8, 2016)\n\n    - Added retry for errors ``S3UploadFailedError`` and ``RetriesExceededError`` in PUT and GET, respectively.\n\n- v1.2.4 (July 6, 2016)\n\n    - Added ``max_connection_pool`` parameter to Connection so that you can specify the maximum number of HTTP/HTTPS connections in the pool.\n    - Minor enhancements for SnowSQL.\n\n- v1.2.3 (June 29, 2016)\n\n    - Fixed 404 issue in GET command. An extra slash character changed the S3 path and failed to identify the file to download.\n\n- v1.2.2 (June 21, 2016)\n\n    - Upgraded ``botocore`` to 1.4.26.\n    - Added retry for 403 error when accessing S3.\n\n- v1.2.1 (June 13, 2016)\n\n    - Improved fetch performance for data types (part 2): DATE, TIME, TIMESTAMP, TIMESTAMP_LTZ, TIMESTAMP_NTZ and TIMESTAMP_TZ.\n\n- v1.2.0 (June 10, 2016)\n\n    - Improved fetch performance for data types (part 1): FIXED, REAL, STRING.\n\n- v1.1.5 (June 2, 2016)\n\n    - Upgraded ``boto3`` to 1.3.1 and ``botocore`` and 1.4.22.\n    - Fixed ``snowflake.cursor.rowcount`` for DML by ``snowflake.cursor.executemany``.\n    - Added ``numpy`` data type binding support. ``numpy.intN``, ``numpy.floatN`` and ``numpy.datetime64`` can be bound and fetched.\n\n- v1.1.4 (May 21, 2016)\n\n    - Upgraded ``cffi`` to 1.6.0.\n    - Minor enhancements to SnowSQL.\n\n- v1.1.3 (May 5, 2016)\n\n    - Upgraded ``cryptography`` to 1.3.2.\n\n- v1.1.2 (May 4, 2016)\n\n    - Changed the dependency of ``tzlocal`` optional.\n    - Fixed charmap error in OCSP checks.\n\n- v1.1.1 (Apr 11, 2016)\n\n    - Fixed OCSP revocation check issue with the new certificate and AWS S3.\n    - Upgraded ``cryptography`` to 1.3.1 and ``pyOpenSSL`` to 16.0.0.\n\n- v1.1.0 (Apr 4, 2016)\n\n    - Added ``bzip2`` support in ``PUT`` command. This feature requires a server upgrade.\n    - Replaced the self contained packages in ``snowflake._vendor`` with the dependency of ``boto3`` 1.3.0 and ``botocore`` 1.4.2.\n\n- v1.0.7 (Mar 21, 2016)\n\n    - Keep ``pyOpenSSL`` at 0.15.1.\n\n- v1.0.6 (Mar 15, 2016)\n\n    - Upgraded ``cryptography`` to 1.2.3.\n    - Added support for ``TIME`` data type, which is now a Snowflake supported data type. This feature requires a server upgrade.\n    - Added ``snowflake.connector.DistCursor`` to fetch the results in ``dict`` instead of ``tuple``.\n    - Added compression to the SQL text and commands.\n\n- v1.0.5 (Mar 1, 2016)\n\n    - Upgraded ``cryptography`` to 1.2.2 and ``cffi`` to 1.5.2.\n    - Fixed the conversion from ``TIMESTAMP_LTZ`` to datetime in queries.\n\n- v1.0.4 (Feb 15, 2016)\n\n    - Fixed the truncated parallel large result set.\n    - Added retry OpenSSL low level errors ``ETIMEDOUT`` and ``ECONNRESET``.\n    - Time out all HTTPS requests so that the Python Connector can retry the job or recheck the status.\n    - Fixed the location of encrypted data for ``PUT`` command. They used to be in the same directory as the source data files.\n    - Added support for renewing the AWS token used in ``PUT`` commands if the token expires.\n\n- v1.0.3 (Jan 13, 2016)\n\n    - Added support for the ``BOOLEAN`` data type (i.e. ``TRUE`` or ``FALSE``). This changes the behavior of the binding for the ``bool`` type object:\n\n        - Previously, ``bool`` was bound as a numeric value (i.e. ``1`` for ``True``, ``0`` for ``False``).\n        - Now, ``bool`` is bound as native SQL data (i.e. ``TRUE`` or ``FALSE``).\n\n    - Added the ``autocommit`` method to the ``Connection`` object:\n\n        - By default, ``autocommit`` mode is ON (i.e. each DML statement commits the change).\n        - If ``autocommit`` mode is OFF, the ``commit`` and ``rollback`` methods are enabled.\n\n    - Avoid segfault issue for ``cryptography`` 1.2 in Mac OSX by using 1.1 until resolved.\n\n- v1.0.2 (Dec 15, 2015)\n\n    - Upgraded ``boto3`` 1.2.2, ``botocore`` 1.3.12.\n    - Removed ``SSLv3`` mapping from the initial table.\n\n- v1.0.1 (Dec 8, 2015)\n\n    - Minor bug fixes.\n\n- v1.0.0 (Dec 1, 2015)\n\n    - General Availability release.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Snowflake Connector for Python",
    "version": "3.9.0",
    "project_urls": {
        "Changelog": "https://github.com/snowflakedb/snowflake-connector-python/blob/main/DESCRIPTION.md",
        "Documentation": "https://docs.snowflake.com/en/user-guide/python-connector.html",
        "Homepage": "https://www.snowflake.com/",
        "Issues": "https://github.com/snowflakedb/snowflake-connector-python/issues",
        "Source": "https://github.com/snowflakedb/snowflake-connector-python"
    },
    "split_keywords": [
        "snowflake",
        "db",
        "database",
        "cloud",
        "analytics",
        "warehouse"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e1bcbbabf61607e056a451b8949fcad9b4b04956f469666d116e5d17b87a852",
                "md5": "ddb8997ee72363628c6dc98f5e027097",
                "sha256": "71f2516c744fa2af784f1242441f950b3023152e98041aed930fc415078b0c69"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ddb8997ee72363628c6dc98f5e027097",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 953482,
            "upload_time": "2024-04-18T21:38:45",
            "upload_time_iso_8601": "2024-04-18T21:38:45.907586Z",
            "url": "https://files.pythonhosted.org/packages/8e/1b/cbbabf61607e056a451b8949fcad9b4b04956f469666d116e5d17b87a852/snowflake_connector_python-3.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ddf2944f436f0df7246f3287b07cdd38ec4be1b3bcd380240a1e9222d3b88cf",
                "md5": "81023f85c06ec097ab021e6f13c57615",
                "sha256": "3e2edcdc72d16d60c915170998d73aa77bf82e734f072f90f5f80d053149de55"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81023f85c06ec097ab021e6f13c57615",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 965820,
            "upload_time": "2024-04-18T21:38:48",
            "upload_time_iso_8601": "2024-04-18T21:38:48.470710Z",
            "url": "https://files.pythonhosted.org/packages/6d/df/2944f436f0df7246f3287b07cdd38ec4be1b3bcd380240a1e9222d3b88cf/snowflake_connector_python-3.9.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95df55b4f2dd387de9514a2248ede14686c4d990c736297c3e61e5e9c5831d4d",
                "md5": "7b16614d5dc7fed9b20499d2a275cc78",
                "sha256": "98256cf4bce1e7d0f6e83d08b7fd45a88dc5577e8b449f872020bb6f893331b2"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7b16614d5dc7fed9b20499d2a275cc78",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2535063,
            "upload_time": "2024-04-18T21:38:09",
            "upload_time_iso_8601": "2024-04-18T21:38:09.636115Z",
            "url": "https://files.pythonhosted.org/packages/95/df/55b4f2dd387de9514a2248ede14686c4d990c736297c3e61e5e9c5831d4d/snowflake_connector_python-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "852feb6a700d71e4a5e797ac62ca248ca1f2e58e90cf39df2afc06aeae5a4d5f",
                "md5": "1013f3c9e5c83b84efc9af3a04f35cfb",
                "sha256": "32405b0140c5c88cfe87003033dcc485c2ad35ce345415dbeb7c5195cc326fe5"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1013f3c9e5c83b84efc9af3a04f35cfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2558448,
            "upload_time": "2024-04-18T21:38:14",
            "upload_time_iso_8601": "2024-04-18T21:38:14.056564Z",
            "url": "https://files.pythonhosted.org/packages/85/2f/eb6a700d71e4a5e797ac62ca248ca1f2e58e90cf39df2afc06aeae5a4d5f/snowflake_connector_python-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77dc4d2220f761c23ec3fb2cb9e7cc944cb9e11837c49ef485dfe09c911c147e",
                "md5": "91288e10217b7287d2e49dedbd302da4",
                "sha256": "92e61ef469bdb83c1ad79a9bb41857e057d622180a3da9702459408081d48c76"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "91288e10217b7287d2e49dedbd302da4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 913788,
            "upload_time": "2024-04-18T21:39:14",
            "upload_time_iso_8601": "2024-04-18T21:39:14.891259Z",
            "url": "https://files.pythonhosted.org/packages/77/dc/4d2220f761c23ec3fb2cb9e7cc944cb9e11837c49ef485dfe09c911c147e/snowflake_connector_python-3.9.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6337138f6bb11e29f93a3fce5fc7df1ab2e0ae258b275c3b2a70c4d224fc9d44",
                "md5": "736341287493b00a93d2154b6064d545",
                "sha256": "4d5883961850b9da0c1f61c68345d5342cf15c749be2e7f4f28e09b7a33c788e"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "736341287493b00a93d2154b6064d545",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 953780,
            "upload_time": "2024-04-18T21:38:50",
            "upload_time_iso_8601": "2024-04-18T21:38:50.523138Z",
            "url": "https://files.pythonhosted.org/packages/63/37/138f6bb11e29f93a3fce5fc7df1ab2e0ae258b275c3b2a70c4d224fc9d44/snowflake_connector_python-3.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50442e43a9cfaf3f603059c2c8e7365e464f8cece4f5c8242aca8dad032db937",
                "md5": "424efc1f8b8a212cb3d5e17485314838",
                "sha256": "39ec09bee21674d5a84a7335ac5afdd2c103de410c91376ad3e9586443da2110"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "424efc1f8b8a212cb3d5e17485314838",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 965999,
            "upload_time": "2024-04-18T21:38:53",
            "upload_time_iso_8601": "2024-04-18T21:38:53.944604Z",
            "url": "https://files.pythonhosted.org/packages/50/44/2e43a9cfaf3f603059c2c8e7365e464f8cece4f5c8242aca8dad032db937/snowflake_connector_python-3.9.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b8db0d4609bb94a74863d1d6b54ad60d342530e2c88e8eff92f38d051a7eceb",
                "md5": "d7741f7d405f5a747cc88ceec864885e",
                "sha256": "ee479181949765e969e8e6a582fa7748e447cc958a27341d9191b14348bb8d93"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7741f7d405f5a747cc88ceec864885e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2557420,
            "upload_time": "2024-04-18T21:38:16",
            "upload_time_iso_8601": "2024-04-18T21:38:16.627479Z",
            "url": "https://files.pythonhosted.org/packages/1b/8d/b0d4609bb94a74863d1d6b54ad60d342530e2c88e8eff92f38d051a7eceb/snowflake_connector_python-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86d4bfc0806e4d751f13f6d16a02082b33fe22ed4ca7053fdbb9eba56597ac17",
                "md5": "fb27acbf2676bd130b03109d735f5329",
                "sha256": "a7da12fc3dd751d9f85e45f43d33b48a34e8b1b4526f5b4e26af9a48d113142c"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb27acbf2676bd130b03109d735f5329",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2580588,
            "upload_time": "2024-04-18T21:38:20",
            "upload_time_iso_8601": "2024-04-18T21:38:20.853742Z",
            "url": "https://files.pythonhosted.org/packages/86/d4/bfc0806e4d751f13f6d16a02082b33fe22ed4ca7053fdbb9eba56597ac17/snowflake_connector_python-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e6112d70591561dd66df517d7619a7e8739158984770b605891dfe0bf7ac889",
                "md5": "a43eb95cb90b8c4859b8fcd2b6b244d6",
                "sha256": "ef5f8c78ab9453c718e9900dfedc59c77bfbef38ab46d371c37ff8802e3a31c9"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a43eb95cb90b8c4859b8fcd2b6b244d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 913854,
            "upload_time": "2024-04-18T21:39:17",
            "upload_time_iso_8601": "2024-04-18T21:39:17.292324Z",
            "url": "https://files.pythonhosted.org/packages/9e/61/12d70591561dd66df517d7619a7e8739158984770b605891dfe0bf7ac889/snowflake_connector_python-3.9.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56e358a0c4c594861435196e412196ae981465cd22a9d52561eaff68f9b62250",
                "md5": "4506705b1356530d4655754a7cf68055",
                "sha256": "406626909067a4c854cda090ea6ce7c11625dfbbe4f96fd3a465c835a41acd44"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4506705b1356530d4655754a7cf68055",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 952862,
            "upload_time": "2024-04-18T21:38:56",
            "upload_time_iso_8601": "2024-04-18T21:38:56.678881Z",
            "url": "https://files.pythonhosted.org/packages/56/e3/58a0c4c594861435196e412196ae981465cd22a9d52561eaff68f9b62250/snowflake_connector_python-3.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a000dce808c0064507cfdc67bcb43fbeda63ee1b1959c242a3f338c0c2008640",
                "md5": "de4b61c9464b50d90a62946e906b07ba",
                "sha256": "d4bc8cd80b4a66dc3d05404ac975ac9ed453030dcb3c9d39a1883881926827ee"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de4b61c9464b50d90a62946e906b07ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 964208,
            "upload_time": "2024-04-18T21:38:58",
            "upload_time_iso_8601": "2024-04-18T21:38:58.653370Z",
            "url": "https://files.pythonhosted.org/packages/a0/00/dce808c0064507cfdc67bcb43fbeda63ee1b1959c242a3f338c0c2008640/snowflake_connector_python-3.9.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "104c27ebe1cc7e1a044d3d79dae6a7411837a6ce8fa5988df47973cfa3700519",
                "md5": "7f08027e2f0924221178d1affb18e4d9",
                "sha256": "50d683c036cb96a16132a793d16aef110092720e43c692a1efbf08839c75cbe2"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f08027e2f0924221178d1affb18e4d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2571307,
            "upload_time": "2024-04-18T21:38:24",
            "upload_time_iso_8601": "2024-04-18T21:38:24.080134Z",
            "url": "https://files.pythonhosted.org/packages/10/4c/27ebe1cc7e1a044d3d79dae6a7411837a6ce8fa5988df47973cfa3700519/snowflake_connector_python-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58bc7954aea64e2ec6b8c3170b80efab08d1332c6506990346710188f8c23339",
                "md5": "24afbb2d6e1f1f50ae1a20406cfa9d2d",
                "sha256": "7e12f4c6838e1f28872cb1829cf09f9c91e1ea2a6c94a1f50c7c2a7dd229ee8b"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24afbb2d6e1f1f50ae1a20406cfa9d2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2596024,
            "upload_time": "2024-04-18T21:38:27",
            "upload_time_iso_8601": "2024-04-18T21:38:27.952561Z",
            "url": "https://files.pythonhosted.org/packages/58/bc/7954aea64e2ec6b8c3170b80efab08d1332c6506990346710188f8c23339/snowflake_connector_python-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23ede00a87110fc0ccfb9d310ec1ef4d966a220b16f91e2e2ed8001f2c61e0d2",
                "md5": "eea5c00183a461166d1fb0fa01bfcce8",
                "sha256": "537b0d53494d8832561cbc31d7ad91b635007fbd29b7ad96575f680f802191c2"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eea5c00183a461166d1fb0fa01bfcce8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 912252,
            "upload_time": "2024-04-18T21:39:19",
            "upload_time_iso_8601": "2024-04-18T21:39:19.465610Z",
            "url": "https://files.pythonhosted.org/packages/23/ed/e00a87110fc0ccfb9d310ec1ef4d966a220b16f91e2e2ed8001f2c61e0d2/snowflake_connector_python-3.9.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "553a91a24bf94e15f882d32d85a2f98b9f01232b495f993c7510390e2687c539",
                "md5": "f692740dca6131519a33f767ea8214b1",
                "sha256": "5e6364eeb80e8a20768a4e42f5282d838d560129ac487f1544dc744dbc2efc1f"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f692740dca6131519a33f767ea8214b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 954303,
            "upload_time": "2024-04-18T21:39:01",
            "upload_time_iso_8601": "2024-04-18T21:39:01.921266Z",
            "url": "https://files.pythonhosted.org/packages/55/3a/91a24bf94e15f882d32d85a2f98b9f01232b495f993c7510390e2687c539/snowflake_connector_python-3.9.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24bd5c23f87395192a31f68263bc73ef7b759fe90ea1916a7da85d015a7c7325",
                "md5": "bb3050d80dce50b37b39debe3b210fb8",
                "sha256": "1071350c6e0540a8bb37bf122f9226a86004ace64435f2c2fa1132f7f6f1adb9"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb3050d80dce50b37b39debe3b210fb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 966418,
            "upload_time": "2024-04-18T21:39:05",
            "upload_time_iso_8601": "2024-04-18T21:39:05.259702Z",
            "url": "https://files.pythonhosted.org/packages/24/bd/5c23f87395192a31f68263bc73ef7b759fe90ea1916a7da85d015a7c7325/snowflake_connector_python-3.9.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b93b12ed10239cec78a41871bed0e7ae960fdf620b624faef3c62644742a8f62",
                "md5": "1b46166f2ec0e826931b725446eec4d5",
                "sha256": "ea363ee7c5ad21ef78181ab14464e8c18673e8df7991fd9e0e384c4dd20af546"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b46166f2ec0e826931b725446eec4d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2540352,
            "upload_time": "2024-04-18T21:38:30",
            "upload_time_iso_8601": "2024-04-18T21:38:30.326924Z",
            "url": "https://files.pythonhosted.org/packages/b9/3b/12ed10239cec78a41871bed0e7ae960fdf620b624faef3c62644742a8f62/snowflake_connector_python-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0718913a255e36bfbb76d5a7d4495231ba1149cd90e35cf51bf0fd8adfbb4802",
                "md5": "caef3ec68399dbef6c8b4e46a1004bb3",
                "sha256": "521926fa1d30337568b6a03450436e22b9808fc5963451a114d5c266cfd5df88"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "caef3ec68399dbef6c8b4e46a1004bb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2563004,
            "upload_time": "2024-04-18T21:38:34",
            "upload_time_iso_8601": "2024-04-18T21:38:34.186630Z",
            "url": "https://files.pythonhosted.org/packages/07/18/913a255e36bfbb76d5a7d4495231ba1149cd90e35cf51bf0fd8adfbb4802/snowflake_connector_python-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92115fbbf77ccbd8632a25a2112c3b49c66cef5ed494f47975e27899e13820a2",
                "md5": "0797325d1ffd40769e673cf1f340f892",
                "sha256": "09f015083dfc7a0a879cd5d80bbf2733ef6664761d497fe52412930a419cca20"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0797325d1ffd40769e673cf1f340f892",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 914523,
            "upload_time": "2024-04-18T21:39:21",
            "upload_time_iso_8601": "2024-04-18T21:39:21.895345Z",
            "url": "https://files.pythonhosted.org/packages/92/11/5fbbf77ccbd8632a25a2112c3b49c66cef5ed494f47975e27899e13820a2/snowflake_connector_python-3.9.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "229d5160e25da4e4a225b3e5dd303d1bb8cea2baaaba14e419fa7de43f505d7f",
                "md5": "8da73bd1907e11920cd8cd8cec0b07b9",
                "sha256": "d1e79bdf5f6b1946d2093f117a35e124e7b3965e40e47fd68c539623c3340dee"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8da73bd1907e11920cd8cd8cec0b07b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 954371,
            "upload_time": "2024-04-18T21:39:07",
            "upload_time_iso_8601": "2024-04-18T21:39:07.652425Z",
            "url": "https://files.pythonhosted.org/packages/22/9d/5160e25da4e4a225b3e5dd303d1bb8cea2baaaba14e419fa7de43f505d7f/snowflake_connector_python-3.9.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "805018c0997e90a948543f6e0ff2a22bacc873eecbc7f382c0498f7778df5153",
                "md5": "6b772d016827de58f1b78a65073bea74",
                "sha256": "2a840843c4594d534218eb5e8d36ccbfa9b54a8b5629311511c847ebe8aba7fd"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b772d016827de58f1b78a65073bea74",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 966326,
            "upload_time": "2024-04-18T21:39:10",
            "upload_time_iso_8601": "2024-04-18T21:39:10.823214Z",
            "url": "https://files.pythonhosted.org/packages/80/50/18c0997e90a948543f6e0ff2a22bacc873eecbc7f382c0498f7778df5153/snowflake_connector_python-3.9.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dabdd94dbb4ad4ffd5347acb7816f28b6c79c30c97e6495f38d9515bc71afa4",
                "md5": "9402ac979d66560494df7234d811b9b9",
                "sha256": "821b1890dee33d7d7e641dd571db2bfafc24c4df4744c4e1b4fe45e392f4b9b3"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9402ac979d66560494df7234d811b9b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2535338,
            "upload_time": "2024-04-18T21:38:36",
            "upload_time_iso_8601": "2024-04-18T21:38:36.952768Z",
            "url": "https://files.pythonhosted.org/packages/0d/ab/dd94dbb4ad4ffd5347acb7816f28b6c79c30c97e6495f38d9515bc71afa4/snowflake_connector_python-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "114e21ac200e80127796a688d73cbcaeb3ffaa17dbbe56e5100076bab252d464",
                "md5": "85be2dc963203661b15fef7cfc6ca235",
                "sha256": "d7d7f7ecf505e7c323dcbd348b37b133baeef6f9f093209fd55e290115da971a"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85be2dc963203661b15fef7cfc6ca235",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2558845,
            "upload_time": "2024-04-18T21:38:39",
            "upload_time_iso_8601": "2024-04-18T21:38:39.362901Z",
            "url": "https://files.pythonhosted.org/packages/11/4e/21ac200e80127796a688d73cbcaeb3ffaa17dbbe56e5100076bab252d464/snowflake_connector_python-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff74c1baadf8d4cadfbdd2adb8430f9a9b4ec66fd0220de915424675cbe0d313",
                "md5": "91f69c9d195d92745e208ccc446729da",
                "sha256": "29ab0ca9ece0a02130d7138f08185e41f6e25ba0b412cda26b998789ac3b6544"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "91f69c9d195d92745e208ccc446729da",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 914412,
            "upload_time": "2024-04-18T21:39:24",
            "upload_time_iso_8601": "2024-04-18T21:39:24.734437Z",
            "url": "https://files.pythonhosted.org/packages/ff/74/c1baadf8d4cadfbdd2adb8430f9a9b4ec66fd0220de915424675cbe0d313/snowflake_connector_python-3.9.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e061609bfab9853dc7e751185b436eb53d4d23d1e9f21f76660d18f3bd66b552",
                "md5": "2cb5a49d2705b481b13ebd2caf83d736",
                "sha256": "5360b720a3104047b0bc95c1de12c4523c486943c6cc283a8a099e1816eaccef"
            },
            "downloads": -1,
            "filename": "snowflake_connector_python-3.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2cb5a49d2705b481b13ebd2caf83d736",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 735300,
            "upload_time": "2024-04-18T21:38:42",
            "upload_time_iso_8601": "2024-04-18T21:38:42.359164Z",
            "url": "https://files.pythonhosted.org/packages/e0/61/609bfab9853dc7e751185b436eb53d4d23d1e9f21f76660d18f3bd66b552/snowflake_connector_python-3.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-18 21:38:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "snowflakedb",
    "github_project": "snowflake-connector-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "snowflake-connector-python"
}
        
Elapsed time: 0.25738s