n8n has a built-in tool called “Aggregate” that can be used to combine several items (or fields from several items) into a single item. When making reports, grouped recaps, or preparing batched payloads for APIs, the node is a must. Before we start, if you are looking for help with a n8n project, we are […]
n8n if Node
The If node is one of the most used control flow nodes. It works like a “if/else” statement in programming; it lets you split processes based on logical comparisons. You can use this node to check new data, set conditions, and change the execution flow based on whether the condition is true or false. Before […]
n8n Form trigger node
The Form node in n8n makes it easy to collect structured data from users, teammates, or customers directly within your workflows. Unlike external form builders, n8n forms integrate seamlessly with your automations, whether you’re gathering feedback, handling approvals, or running multi-step intake processes. This article walks you through what the n8n Form node can do, […]
How to Install Streamlit
Streamlit is an open-source Python library that allows you to create interactive, data-driven web applications quickly. It is widely used for data science, machine learning dashboards, and visualization projects. Let us look at the installation of streamlit. Need a Streamlit developer? Click here Prerequisites Before installing Streamlit, ensure you have the following: Python: Streamlit requires […]
n8n streamlit
Two of my favorite technologies I often use are N8n and Streamlit. I thought it would be fun to combine them together in a real-world project. The idea came to me because many of my N8n workflows begin with form triggers. For example, in past tutorials I’ve built workflows where users fill out a form […]
Streamlit Metric
When building dashboards and data apps, you often need to display key performance indicators (KPIs) at a glance—such as revenue, number of users, or conversion rates. In Streamlit, the st.metric function makes it simple to show these KPIs with labels, values, and deltas (changes) in a clean, professional way.In this article, we’ll explore how to […]
n8n Webhook
Automation is changing how we set up workflows, link tools, and make chores easier. The Webhook node is one of the best things about n8n, an open-source tool for automating workflows. Webhooks let apps talk to each other in real time, which means that data can move automatically without having to query all the time. […]
n8n Split Out node
The n8n Split Out node is one of the most powerful — and most skipped — nodes in n8n. If you have ever pulled data from an API or Google Sheets and tried to process each row individually, you have probably hit the wall where everything comes back as one big chunk. The Split Out […]
Streamlit header
A header is a formatted text element that serves as a section title.Streamlit headers help divide your app into logical sections. Need a Streamlit developer? Click Here Syntax st.header(body, anchor=None, *, help=None, divider=False, width=”stretch”) Parameter Type / Values Description body str The text to display as GitHub-flavored Markdown. Supports directives from st.markdown. anchor str, False, or […]
n8n Trigger node
Triggers are the starting points in n8n that initiate workflows when something happens, such a webhook call, a scheduled time, a new row in a database, etc. At least one trigger is needed to start a workflow. Triggers can: Start manually (inside n8n) Be scheduled to run automatically Be activated by an external event (webhooks, […]
