Skip to main content

Snowflake SQL API V2

Project description

Snowflake SQL API Client

The Snowflake SQL API is a REST API that you can use to access and update data in a Snowflake database.

Contact Support - Email: tungnq@gmail.com

Requirements.

Python 2.7 and 3.4+

Installation & Usage

Install a Virtual Environment using Venv

pip install virtualenv

Go to project folder

python -m venv env

Activate the Virtual Environment

 env/Scripts/activate.bat //In CMD
 env/Scripts/Activate.ps1 //In Powershel

pip install

pip install -r requirements.txt

If the python package is hosted on Github, you can install directly from Github

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import snowflake_sql_api_client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import snowflake_sql_api_client

Build package

python setup.py build

Getting Started

Please follow the installation procedure and then run the following:

from __future__ import print_function
import time
import snowflake_sql_api_client
from snowflake_sql_api_client.rest import ApiException
from pprint import pprint

from snowflake_sql_api_client.utilities.sql_api_generate_jwt import JWTGenerator 

# Generate JWT Token
jwt_token = JWTGenerator(
    account=[YOUR SNOWFLAKE HOST]
    , user=[YOUR USERNAME]
    , private_key=[YOUR USENAME PRIVATE_KEY]
    , lifetime=timedelta(minutes=lifetime_in_minutes)
    , renewal_delay=timedelta(minutes=renewal_delay_in_minutes)
    ).get_token()

# Configure API key authorization: bearerAuth
configuration = snowflake_sql_api_client.Configuration()
configuration.api_key['Authorization'] = jwt_token
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
configuration.api_key_prefix['Authorization'] = 'Bearer'

# create an instance of the API class
api_instance = snowflake_sql_api_client.Apiv2statementsApi(snowflake_sql_api_client.ApiClient(configuration))
body = NULL # object |  (optional)
user_agent = 'user_agent_example' # str | (Required) Set this to the name and version of your application (e.g. “applicationName/applicationVersion”). You must use a value that complies with RFC 7231. (optional)
x_snowflake_authorization_token_type = 'x_snowflake_authorization_token_type_example' # str | Specify the authorization token type for the Authorization header. KEYPAIR_JWT is for Keypair JWT or OAUTH for oAuth token. If not specified, OAUTH is assumed. (optional)
content_type = 'content_type_example' # str |  (optional)
accept = 'accept_example' # str |  (optional)
request_id = 'request_id_example' # str | Unique ID of the API request. This ensures that the execution is idempotent. If not specified, a new UUID is generated and assigned. (optional)
_async = '_async_example' # str | Set to true to execute the statement asynchronously and return the statement handle. If the parameter is not specified or is set to false, a statement is executed and the first result is returned if the execution is completed in 45 seconds. If the statement execution takes longer to complete, the statement handle is returned. (optional)
nullable = 'nullable_example' # str | Set to true to execute the statement to generate the result set including null. If the parameter is set to false, the result set value null will be replaced with a string 'null'. (optional)

try:
    # Submits a SQL statement for execution.
    api_response = api_instance.api_v2_statements_post(body=body, user_agent=user_agent, x_snowflake_authorization_token_type=x_snowflake_authorization_token_type, content_type=content_type, accept=accept, request_id=request_id, _async=_async, nullable=nullable)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling Apiv2statementsApi->api_v2_statements_post: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://virtserver.swaggerhub.com/Home4677/Snowflake_SQL_API_V2/1.0.0

Class Method HTTP request Description
Apiv2statementsApi api_v2_statements_post POST /api/v2/statements Submits a SQL statement for execution.
Apiv2statementsStatementHandleApi api_v2_statements_statement_handle_cancel_post POST /api/v2/statements/{statementHandle}/cancel Cancels the execution of a statement.
Apiv2statementsStatementHandleApi api_v2_statements_statement_handle_get GET /api/v2/statements/{statementHandle} Checks the status of the execution of a statement

Documentation For Models

Documentation For Authorization

bearerAuth

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Author

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

snowflake-sql-api-client-2.0.5.tar.gz (21.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

snowflake_sql_api_client-2.0.5-py3-none-any.whl (27.0 kB view details)

Uploaded Python 3

File details

Details for the file snowflake-sql-api-client-2.0.5.tar.gz.

File metadata

  • Download URL: snowflake-sql-api-client-2.0.5.tar.gz
  • Upload date:
  • Size: 21.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.12

File hashes

Hashes for snowflake-sql-api-client-2.0.5.tar.gz
Algorithm Hash digest
SHA256 f909edbab160bd6e06b79925bb64d233f3fc650a5c484a861a05a3267512b8fe
MD5 b38b4390f227a85a297d6d9d7f840d0f
BLAKE2b-256 99b4eea266a225ec506fa6ec3d88277d000dedb1157914b69cdeda8ff5783727

See more details on using hashes here.

File details

Details for the file snowflake_sql_api_client-2.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for snowflake_sql_api_client-2.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 74759452fdc266774a067819a24f9900f86165dec716cade12c5f5b3923d6014
MD5 c27eabca96b734cc71fea99565b52e77
BLAKE2b-256 30b5c646dcfb9059f8421a64a3eb3abe514fedb4fa5de0f77e2f015ed4d2a7bd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page