🤖 Zrb (Read: Zaruba) : A Super Framework for Your Super App
🫰 Installation | 📖 Documentation | 🏁 Getting Started | 💃 Oops, I did it Again | ❓ FAQ
Zrb is a CLI-based automation tool and low-code platform. Once installed, Zrb will help you automate day-to-day tasks, generate projects and applications, and even deploy your applications to Kubernetes with a few commands.
To use Zrb, you need to be familiar with CLI.
Zrb task definitions are written in Python, and we have a good reason behind the decision.
Zrb as A Task-Automation Tool
At the very core, Zrb is a task automation tool. It helps you to automate some tedious jobs so that you can focus on what matters.
Let's say you want to describe the statistics property of any public CSV. To do this, you need to perform three tasks like the following:
- Install pandas.
- Download the CSV dataset (at the same time).
- Show statistics properties of the CSV dataset using pandas (right after the two first tasks are completed).
🐼
┌──────────────────┐
│ │
│ Install Pandas ├─┐ 📊
│ │ │ ┌─────────────────┐
└──────────────────┘ └─►│ │
│ Show Statistics │
┌──────────────────┐ ┌─►│ │
│ │ │ └─────────────────┘
│ Download Dataset ├─┘
│ │
└──────────────────┘
⬇️
To do this, you can create a file named zrb_init.py and define the tasks as follows:
# File name: zrb_init.py
from zrb import runner, CmdTask, python_task, StrInput
# 🐼 Define a task to install pandas
install_pandas = CmdTask(
name='install-pandas',
cmd='pip install pandas'
)
# ⬇️ Define a task to download dataset
download_dataset = CmdTask(
name='download-dataset',
inputs=[
# Allow user to put the CSV dataset URL.
StrInput(
name='url',
default='https://raw.githubusercontent.com/state-alchemists/datasets/main/iris.csv'
)
],
cmd='wget -O dataset.csv {{input.url}}'
)
# 📊 Define a task to show the statistics properties of the dataset
show_stat = CmdTask(
name='show-stat',
upstreams=[
# Let the following tasks to be show_stat's upstream:
download_dataset,
install_pandas
],
cmd='python -c "import pandas as pd; df=pd.read_csv(\'dataset.csv\'); print(df.describe())"' # noqa
)
# Register show_stat, so that the task is accessible from the CLI (i.e., zrb show-stat)
# WARNING: You should register the variable, not the name of the task
runner.register(show_stat)
📝 NOTE: In this example, we exclusively use
CmdTaskto execute CLI scripts. However, Zrb has many other task types, likepython_task. You can rewriteshow_stattask using@python_taskdecorator as follow:# 📊 Define a task to show the statistics properties of the dataset @python_task( name='show-stat', upstreams=[ # Let the following tasks to be show_stat's upstream: download_dataset, install_pandas ] ) def show_stat(*args, **kwargs): import pandas as pd df = pd.read_csv('dataset.csv') return df.describe()This will make more sense since
show_statis better written in Python.
Once you do so, you can invoke the task and get the output.
zrb show-stat
Url [https://raw.githubusercontent.com/state-alchemists/datasets/main/iris.csv]:
🤖 ○ ❁ 36725 → 1/3 🐨 download-dataset • Run script: wget -O dataset.csv https://raw.githubusercontent.com/state-alchemists/datasets/main/iris.csv
🤖 ○ ❁ 36725 → 1/3 🐨 download-dataset • Working directory: /home/gofrendi/playground/myproject
🤖 ○ ❁ 36725 → 1/3 🐻 install-pandas • Run script: pip install pandas
🤖 ○ ❁ 36725 → 1/3 🐻 install-pandas • Working directory: /home/gofrendi/playground/myproject
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset • --2023-11-11 16:15:54-- https://raw.githubusercontent.com/state-alchemists/datasets/main/iris.csv
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset • Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.109.133, 185.199.108.133, ...
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset • Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected.
🤖 ○ ❁ 36748 → 1/3 🐻 install-pandas • Requirement already satisfied: pandas in /home/gofrendi/zrb/.venv/lib/python3.10/site-packages (2.1.3)
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset • HTTP request sent, awaiting response... 200 OK
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset • Length: 4606 (4.5K) [text/plain]
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset • Saving to: ‘dataset.csv’
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset •
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset • 0K .... 100% 1.40M=0.003s
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset •
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset • 2023-11-11 16:15:54 (1.40 MB/s) - ‘dataset.csv’ saved [4606/4606]
🤖 △ ❁ 36746 → 1/3 🐨 download-dataset •
🤖 ○ ❁ 36748 → 1/3 🐻 install-pandas • Requirement already satisfied: numpy<2,>=1.22.4 in /home/gofrendi/zrb/.venv/lib/python3.10/site-packages (from pandas) (1.26.1)
🤖 ○ ❁ 36748 → 1/3 🐻 install-pandas • Requirement already satisfied: python-dateutil>=2.8.2 in /home/gofrendi/zrb/.venv/lib/python3.10/site-packages (from pandas) (2.8.2)
🤖 ○ ❁ 36748 → 1/3 🐻 install-pandas • Requirement already satisfied: pytz>=2020.1 in /home/gofrendi/zrb/.venv/lib/python3.10/site-packages (from pandas) (2023.3.post1)
🤖 ○ ❁ 36748 → 1/3 🐻 install-pandas • Requirement already satisfied: tzdata>=2022.1 in /home/gofrendi/zrb/.venv/lib/python3.10/site-packages (from pandas) (2023.3)
🤖 ○ ❁ 36748 → 1/3 🐻 install-pandas • Requirement already satisfied: six>=1.5 in /home/gofrendi/zrb/.venv/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas) (1.16.0)
🤖 ○ ❁ 36725 → 1/3 🍓 zrb show-stat • Run script: python -c "import pandas as pd; df=pd.read_csv('dataset.csv'); print(df.describe())"
🤖 ○ ❁ 36725 → 1/3 🍓 zrb show-stat • Working directory: /home/gofrendi/playground/myproject
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • sepal_length sepal_width petal_length petal_width
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • count 150.000000 150.000000 150.000000 150.000000
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • mean 5.843333 3.054000 3.758667 1.198667
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • std 0.828066 0.433594 1.764420 0.763161
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • min 4.300000 2.000000 1.000000 0.100000
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • 25% 5.100000 2.800000 1.600000 0.300000
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • 50% 5.800000 3.000000 4.350000 1.300000
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • 75% 6.400000 3.300000 5.100000 1.800000
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • max 7.900000 4.400000 6.900000 2.500000
Support zrb growth and development!
☕ Donate at: https://stalchmst.com/donation
🐙 Submit issues/PR at: https://github.com/state-alchemists/zrb
🐤 Follow us at: https://twitter.com/zarubastalchmst
🤖 ○ ❁ 36795 → 1/3 🍓 zrb show-stat • Completed in 2.24128794670105 seconds
sepal_length sepal_width petal_length petal_width
count 150.000000 150.000000 150.000000 150.000000
mean 5.843333 3.054000 3.758667 1.198667
std 0.828066 0.433594 1.764420 0.763161
min 4.300000 2.000000 1.000000 0.100000
25% 5.100000 2.800000 1.600000 0.300000
50% 5.800000 3.000000 4.350000 1.300000
75% 6.400000 3.300000 5.100000 1.800000
max 7.900000 4.400000 6.900000 2.500000
To run again: zrb show-stat --url "https://raw.githubusercontent.com/state-alchemists/datasets/main/iris.csv"
Now, you can get the statistics properties of any public CSV dataset.
📝 NOTE: When executing a task, you can also provide the parameter directly, for example you want to provide the
urlzrb show-stat --url https://raw.githubusercontent.com/state-alchemists/datasets/main/iris.csvWhen you provide the parameter directly, Zrb will not prompt you to supply the URL. Another way to disable the prompt is by set
ZRB_SHOW_PROMPTto0orfalse.
You can also run a Docker compose file, start a Web server, generate a CRUD application, or set up multiple servers simultaneously.
See our getting started guide to learn more about the details.
Zrb as A Low-Code Framework
Aside from defining your own tasks, Zrb also has some built-in tasks. Those built-in tasks allow you to build and run a CRUD application.
Let's see the following example.
# Create a project
zrb project create --project-dir my-project --project-name "My Project"
cd my-project
# Create a Fastapp
zrb project add fastapp --project-dir . --app-name "fastapp" --http-port 3000
# Add library module to fastapp
zrb project add fastapp-module --project-dir . --app-name "fastapp" --module-name "library"
# Add entity named "books"
zrb project add fastapp-crud --project-dir . --app-name "fastapp" --module-name "library" \
--entity-name "book" --plural-entity-name "books" --column-name "code"
# Add column to the entity
zrb project add fastapp-field --project-dir . --app-name "fastapp" --module-name "library" \
--entity-name "book" --column-name "title" --column-type "str"
# Run Fastapp as monolith
zrb project start-fastapp --fastapp-run-mode "monolith"
Once you invoke the commands, you will be able to access the CRUD application by pointing your browser to http://localhost:3000
Furthermore, you also split your application into microservices, run them as docker containers, and even deploy them to your kubernetes cluster.
# Run Fastapp as microservices
zrb project start-fastapp --fastapp-run-mode "microservices"
# Run Fastapp as container
zrb project start-fastapp-container --fastapp-run-mode "microservices"
zrb project stop-fastapp-container
# Deploy fastapp and all it's dependencies to kubernetes
docker login
zrb project deploy-fastapp --fastapp-deploy-mode "microservices"
You can visit our tutorials to see more cool tricks.
🫰 Installation
🚀 Using Installation Script
We provide an installation script to help you install pyenv and Zrb. You can run the installation script as follows:
curl https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh | bash
⚙️ As Python Package
Installing Zrb in your system is as easy as typing the following command in your terminal:
pip install zrb
Like any Python package, you can install Zrb in your virtual environment. Installing Zrb in a virtual environment allows you to have many versions of Zrb on the same computer.
⚠️ If the command doesn't work, you probably don't have Pip/Python on your computer. See
Main prerequisitessubsection to install them.
🐋 As Docker Container
If you prefer to work with Docker, you can create a docker-compose.yml file as follows:
version: '3'
x-logging: &default-logging
options:
max-size: "100m"
max-file: "5"
driver: json-file
networks:
zrb:
name: zrb
external: true
services:
zrb:
build:
dockerfile: Dockerfile
context: .
args:
ZRB_VERSION: ${ZRB_VERSION:-latest}
image: ${ZRB_IMAGE:-docker.io/stalchmst/zrb}
logging: *default-logging
container_name: zrb
hostname: zrb
command: sleep infinity
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./project:/project
ports:
- 3001:3001 # or/and any other ports you want to expose.
networks:
- zrb
Once you create a docker-compose file, you can invoke the following command to start the container:
docker compose up -d
You will be able to run any Zrb tasks by accessing the container's bash:
docker exec -it zrb bash
✅ Main Prerequisites
Since Zrb is written in Python, you need to install a few things before installing Zrb:
- 🐍
Python - 📦
Pip - 🏝️
Venv
If you are using 🐧 Ubuntu, the following command should work:
sudo apt install python3 python3-pip python3-venv python-is-python3
If you are using 🍎 Mac, the following command will work:
# Make sure you have homebrew installed, see: https://brew.sh/
brew install python3
ln -s venv/bin/pip3 /usr/local/bin/pip
ln -s venv/bin/python3 /usr/local/bin/python
If you prefer Python distribution like conda, that might work as well.
✔️ Other Prerequisites
If you want to generate applications using Zrb and run them on your computer, you will also need:
- 🐸
Node.JsandNpm.- You need Node.Js to modify/transpile frontend code into static files.
- You can visit the Node.Js website for installation instructions.
- 🐋
DockerandDocker-composeplugin.- You need
DockerandDocker-composeplugin to- Run docker-compose-based tasks
- Run some application prerequisites like RabbitMQ, Postgre, or Redpanda.
- The easiest way to install
Docker,Docker-composeplugin, and localKubernetesis by using Docker Desktop. - You can also install
DockerandDocker-composeplugin by following the Docker installation guide.
- You need
- ☸️
Kubernetescluster.- Zrb allows you to deploy your applications into
Kubernetes. - To test it locally, you will need a Minikube or other alternatives. However, the easiest way is by enabling
Kuberneteson yourDocker Desktop.
- Zrb allows you to deploy your applications into
- 🦆
Pulumi- You need Pulumi to deploy your applications
🏁 Getting Started
We have an excellent getting started guide to help you cover the basics. Make sure to check it out😉.
📖 Documentation
You can visit Zrb documentation for more detailed information.
☕ Donation
Help Red Skull to click the donation button:
🎉 Fun Fact
Madou Ring Zaruba (魔導輪ザルバ, Madōrin Zaruba) is a Madougu which supports bearers of the Garo Armor. (Garo Wiki | Fandom)
Release files for zrb 0.0.111
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| zrb-0.0.111.tar.gz | 2.8 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| zrb-0.0.111-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 5.4 MB
Release files / zrb-0.0.111.tar.gz
| Download URL | zrb-0.0.111.tar.gz |
|---|---|
| Size | 2.8 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
587c674d6e98d8673ee39f7aa3b8a1b8e287490bf150bdb6c167f6cef067d681
|
|
BLAKE2b-256 checksum How to use checksums |
3f8f3f7c89216c0717f928f831c87ed5a759c4447d821aad8fce33a46910076d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.31.0
|
Release files / zrb-0.0.111-py3-none-any.whl
| Download URL | zrb-0.0.111-py3-none-any.whl |
|---|---|
| Size | 2.7 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cfe0940380d7e4f012cfcd7db97003ee51064b025c3123e99dfba1bc56f572c3
|
|
BLAKE2b-256 checksum How to use checksums |
236b49bfe2e186d7a8a036a44c53b5976a7232ba5dbf95ddf023470567eafc68
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.31.0
|