Skip to content

Commit a4485e3

Browse files
authored
chore: add demo video to readme
1 parent 5fd1053 commit a4485e3

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
# 🧶 Priceloop NoCode Python External Functions Templates
22

3-
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.
44

5-
### Deployment
5+
https://user-images.githubusercontent.com/3866530/200024328-ea5cad88-c930-4544-a9d4-9838437978f0.mp4
66

7-
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:
817

918
```bash
1019
npm install -g @priceloop/cli

0 commit comments

Comments
 (0)