FLOJOY_CLOUD_UPLOAD
Download Flojoy Studio to try this app
Upload a DataContainer to Flojoy Cloud (beta). Flojoy Cloud is still in beta, feel free to try it out and give us feedback! Params: default : DataContainer The data to be uploaded to Flojoy Cloud. hardware_device_id : str The measurement id of the data to be uploaded to Flojoy Cloud. test_id : str The test id of the data to be uploaded to Flojoy Cloud. name : str A name describing the test. pass_fail : Boolean Optional parameter to define if the test passed or failed. Returns: out : DataContainer The input DataContainer will be returned as it is.
Python Code
import os
import pandas as pd
from flojoy import (
DataContainer,
flojoy,
get_env_var,
node_preflight,
Boolean,
DataFrame,
OrderedPair,
OrderedTriple,
)
from flojoy.data_container import (
ParametricOrderedPair,
ParametricOrderedTriple,
ParametricSurface,
Surface,
Vector,
)
import flojoy_cloud
from typing import Optional
from datetime import datetime
FLOJOY_CLOUD_URI: str = os.environ.get("FLOJOY_CLOUD_URI") or "https://cloud.flojoy.ai"
@node_preflight
def preflight():
api_key = get_env_var("FLOJOY_CLOUD_KEY")
if api_key is None:
raise KeyError(
"Flojoy Cloud key is not found! You can set it under Settings -> Environment Variables."
)
@flojoy
def FLOJOY_CLOUD_UPLOAD(
default: DataContainer,
hardware_id: str,
test_id: str,
name: str | None = None,
pass_fail: Optional[Boolean] = None,
) -> DataContainer:
"""Upload a DataContainer to Flojoy Cloud (beta).
Flojoy Cloud is still in beta, feel free to try it out and give us feedback!
Parameters
----------
default : DataContainer
The data to be uploaded to Flojoy Cloud.
hardware_device_id : str
The measurement id of the data to be uploaded to Flojoy Cloud.
test_id : str
The test id of the data to be uploaded to Flojoy Cloud.
name: str
A name describing the test.
pass_fail: Boolean
Optional parameter to define if the test passed or failed.
Returns
-------
DataContainer
The input DataContainer will be returned as it is.
"""
api_key = get_env_var("FLOJOY_CLOUD_KEY")
if api_key is None:
raise KeyError(
"Flojoy Cloud key is not found! You can set it under Settings -> Environment Variables."
)
if default:
# Only upload if the data is not empty, otherwise pass through
cloud = flojoy_cloud.FlojoyCloud(workspace_secret=api_key)
data = None
# Optimist approach, assume that the data is at a castable dimension
if isinstance(default, DataFrame):
data = default.m
elif isinstance(default, Boolean):
data = default.b
elif isinstance(default, Vector):
data = pd.DataFrame(default.v)
elif isinstance(default, OrderedPair):
data = pd.DataFrame(
{
"x": default.x,
"y": default.y,
}
)
elif isinstance(default, ParametricOrderedPair):
data = pd.DataFrame(
{
"x": default.x,
"y": default.y,
"t": default.t,
}
)
elif isinstance(default, OrderedTriple):
data = pd.DataFrame({"x": default.x, "y": default.y, "z": default.z})
elif isinstance(default, ParametricOrderedTriple):
data = pd.DataFrame(
{"x": default.x, "y": default.y, "z": default.z, "t": default.t}
)
elif isinstance(default, Surface):
data = pd.DataFrame({"x": default.x, "y": default.y, "z": default.z})
elif isinstance(default, ParametricSurface):
data = pd.DataFrame(
{
"x": default.x,
"y": default.y,
"z": default.z,
"t": default.t,
}
)
else:
# TODO: Add other data types as they become available
raise TypeError(f"Unsupported data type: {type(default)}")
cloud.upload(
data=data,
test_id=test_id,
hardware_id=hardware_id,
name=name,
created_at=datetime.now(),
passed=pass_fail.b if pass_fail is not None else None,
)
return default
Example App
Having problems with this example app? Join our Discord community and we will help you out!
This is the exact same as the default example app, except we will stream the result of the ADD node to Flojoy Cloud