├── DeploymentTemplates ├── aws │ ├── BasicSetup.yaml │ └── README.md └── azure │ ├── BasicSetup.json │ └── README.md ├── ExtractEntitiesFromArticle ├── 1_entityExtraction.py ├── 2_entityExtraction.sql ├── entityExtractio_WithStockPrices.sql ├── example.png └── readme.md ├── FetchHTTPData ├── 1_handler.py ├── 2_fetchHTTPData.sql └── readme.md ├── FetchStockPricesAndIndicators ├── config.py ├── examplePayload.json ├── priceData.py ├── priceData.sql └── readme.md ├── LICENSE ├── MicrosoftTranslatorAPI_Python ├── ef_translate.py ├── ef_translate.sql ├── function.json ├── readme.md ├── requirements.txt └── sample.dat ├── ParseUserAgentString ├── 1_Setup.sql ├── 2_parseUserAgent.py ├── 3_parseUserAgent.sql └── readme.md ├── README.md ├── SendSNS ├── 1_Setup.sql ├── 2_LambdaCode.py ├── 3_Invocation.sql └── readme.md └── _Template_Python ├── example.sql ├── readme.md ├── template_python.py └── testData.json /DeploymentTemplates/aws/BasicSetup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/DeploymentTemplates/aws/BasicSetup.yaml -------------------------------------------------------------------------------- /DeploymentTemplates/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/DeploymentTemplates/aws/README.md -------------------------------------------------------------------------------- /DeploymentTemplates/azure/BasicSetup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/DeploymentTemplates/azure/BasicSetup.json -------------------------------------------------------------------------------- /DeploymentTemplates/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/DeploymentTemplates/azure/README.md -------------------------------------------------------------------------------- /ExtractEntitiesFromArticle/1_entityExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ExtractEntitiesFromArticle/1_entityExtraction.py -------------------------------------------------------------------------------- /ExtractEntitiesFromArticle/2_entityExtraction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ExtractEntitiesFromArticle/2_entityExtraction.sql -------------------------------------------------------------------------------- /ExtractEntitiesFromArticle/entityExtractio_WithStockPrices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ExtractEntitiesFromArticle/entityExtractio_WithStockPrices.sql -------------------------------------------------------------------------------- /ExtractEntitiesFromArticle/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ExtractEntitiesFromArticle/example.png -------------------------------------------------------------------------------- /ExtractEntitiesFromArticle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ExtractEntitiesFromArticle/readme.md -------------------------------------------------------------------------------- /FetchHTTPData/1_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/FetchHTTPData/1_handler.py -------------------------------------------------------------------------------- /FetchHTTPData/2_fetchHTTPData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/FetchHTTPData/2_fetchHTTPData.sql -------------------------------------------------------------------------------- /FetchHTTPData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/FetchHTTPData/readme.md -------------------------------------------------------------------------------- /FetchStockPricesAndIndicators/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/FetchStockPricesAndIndicators/config.py -------------------------------------------------------------------------------- /FetchStockPricesAndIndicators/examplePayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/FetchStockPricesAndIndicators/examplePayload.json -------------------------------------------------------------------------------- /FetchStockPricesAndIndicators/priceData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/FetchStockPricesAndIndicators/priceData.py -------------------------------------------------------------------------------- /FetchStockPricesAndIndicators/priceData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/FetchStockPricesAndIndicators/priceData.sql -------------------------------------------------------------------------------- /FetchStockPricesAndIndicators/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/FetchStockPricesAndIndicators/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /MicrosoftTranslatorAPI_Python/ef_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/MicrosoftTranslatorAPI_Python/ef_translate.py -------------------------------------------------------------------------------- /MicrosoftTranslatorAPI_Python/ef_translate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/MicrosoftTranslatorAPI_Python/ef_translate.sql -------------------------------------------------------------------------------- /MicrosoftTranslatorAPI_Python/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/MicrosoftTranslatorAPI_Python/function.json -------------------------------------------------------------------------------- /MicrosoftTranslatorAPI_Python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/MicrosoftTranslatorAPI_Python/readme.md -------------------------------------------------------------------------------- /MicrosoftTranslatorAPI_Python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/MicrosoftTranslatorAPI_Python/requirements.txt -------------------------------------------------------------------------------- /MicrosoftTranslatorAPI_Python/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/MicrosoftTranslatorAPI_Python/sample.dat -------------------------------------------------------------------------------- /ParseUserAgentString/1_Setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ParseUserAgentString/1_Setup.sql -------------------------------------------------------------------------------- /ParseUserAgentString/2_parseUserAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ParseUserAgentString/2_parseUserAgent.py -------------------------------------------------------------------------------- /ParseUserAgentString/3_parseUserAgent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ParseUserAgentString/3_parseUserAgent.sql -------------------------------------------------------------------------------- /ParseUserAgentString/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/ParseUserAgentString/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/README.md -------------------------------------------------------------------------------- /SendSNS/1_Setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/SendSNS/1_Setup.sql -------------------------------------------------------------------------------- /SendSNS/2_LambdaCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/SendSNS/2_LambdaCode.py -------------------------------------------------------------------------------- /SendSNS/3_Invocation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/SendSNS/3_Invocation.sql -------------------------------------------------------------------------------- /SendSNS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/SendSNS/readme.md -------------------------------------------------------------------------------- /_Template_Python/example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/_Template_Python/example.sql -------------------------------------------------------------------------------- /_Template_Python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/_Template_Python/readme.md -------------------------------------------------------------------------------- /_Template_Python/template_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/_Template_Python/template_python.py -------------------------------------------------------------------------------- /_Template_Python/testData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-external-functions-examples/HEAD/_Template_Python/testData.json --------------------------------------------------------------------------------