Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 1.09 KB

File metadata and controls

12 lines (10 loc) · 1.09 KB

Examples

Golang

  1. hello world: A simple function showcasing unstructured logging and a structured response
  2. Compliance checker: use Regex to find patterns of SSN, Credit card numbers, etc. in text input
  3. rabbitmq: Configured to connect to RabbitMQ to read messages and write them to local ephemeral storage. If triggered with HTTP GET, returns the messages it read from RabbitMQ (multi trigger function)

Python

  1. hello world: A simple function showcasing unstructured logging and a structured response
  2. encrypt: Uses a 3rd party Python package to encrypt the event body. Showcases build commands to install both OS level packages and Python packages
  3. face recognizer: Uses Microsoft's face API configured by function environment variables. Uses 3rd party Python packages installed through inline configuration
  4. sentiment analysis: Use vaderSentiment lib to classify text strings to neg/pos sentiment score