You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can create your own functions and then call them inside our [NoCode table](https://priceloop.ai/nocode), just like a builtin function. Here are some easy examples that you can use to write your own functions. Some of them are also deployed on our platform.
3
+
You can create your own functions and then call them inside our [NoCode table](https://priceloop.ai/nocode), just like a built-in function. Here are some easy examples that you can use to write your own functions. Some of them are also deployed on our platform.
The easiest way to deploy our external functions are via our cli:
7
+
### Getting Started
8
+
9
+
Let's start with creating a Python environment first. You can use `virtualenv` or `conda` to do this. At the moment, we only support Python 3.8 due to the pre-built lambda layer:
10
+
11
+
```bash
12
+
conda create -n my_example python=3.8
13
+
source activate my_example
14
+
```
15
+
16
+
The easiest way to deploy our external functions is via our cli:
0 commit comments