Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jupyter-naas
GitHub Repository: jupyter-naas/awesome-notebooks
Path: blob/master/Bubble/Bubble_Send_data.ipynb
2973 views
Kernel: Python 3

Bubble.png

Bubble - Send data

Give Feedback | Bug report

Tags: #bubble #naas_drivers #operations #snippet

Last update: 2023-04-12 (Created: 2022-03-20)

Description: This notebook allows users to easily send data through a secure, cloud-based platform.

Input

Import library

from naas_drivers import bubble

Variables

url = "https://appname.bubbleapps.io/api/1.1/wf/endpoint_name" data = {"first_name": "Bryan", "last_name": "Helmig", "age": 27}

Model

Trigger workflow

def send_data(url, data): bubble.send(url, data)

Output

Send result

result = send_data(url, data)