In streamlit applications, content can get cluttered when displaying multiple sections,forms, widgets, or charts. In other to make the UI cleaner and easier to read, we use dividers.Dividers are horizontal lines that visually separate sections Streamlit provides a built-in function called st.divider() for this purpose. Need a Streamlit developer? Click Here Syntax Parameter Type Default Description […]
Streamlit Logging
Logging is a way to keep track of what happens inside your Streamlit app.It helps you:Fix bugs while you’re developing. Keep an eye on user events and interactions. Keep track of the phases in data processing. In Production, keep track of warnings and serious problems. Streamlit uses Python’s built-in logging module under the hood. Need a […]
Streamlit Fragment
When a widget changes, Streamlit usually runs your whole script again. Fragments break this pattern by letting you run parts of your app again, which makes it run faster and more responsively.The decorator @st.fragment() just runs the fragment, not the whole app. A fragment is a function decorated with @st.fragment that reruns independently from the […]
Streamlit Data Editior
The data editor widget allows you to edit dataframes and many other data structures in a table-like UI.It’s like an Excel-like spreadsheet inside your Streamlit app. Need a Streamlit developer? Click Here Syntax Parameter Type Description data Any (DataFrame, Series, List, Dict, etc.) The data to display and edit in the editor. Supports pandas, NumPy, lists, […]
Streamlit Fastapi
What is Streamlit?Python framework for creating interactive UIs.It is best for data dashboards, ML demos, and quick prototypes.What is FastAPIFastAPI is a modern, fast (high-performance), web framework for building APIs with Python based on standard Python type hints. Why Combine Streamlit and FastAPIExample Use Cases: Real-time dashboards AI-powered apps Multi-user booking systems Large-scale data APIs […]
n8n scrape tiktok
Do you want to extract information about a TikTok account, its followers, likes, or posts without having to write any code? I’ll show you how to do it step by step with Apify and n8n in this guide. You’ll have a completely automated process at the end that collects, filters, and saves TikTok account data […]
How to Self Host N8N with Hostinger
Have you been paying $20 or more every month for N8N Cloud?What if I told you that you could self-host N8N for as little as $5/month and unlock more features, better privacy, and greater control over your workflows? In this comprehensive guide, I’ll walk you through everything you need to know to set up your […]
n8n google maps scraper
Businesses sometimes use virtual assistants (VAs) or developers on freelance sites to get company data from Google Maps for things like lead generation, seo research, competitor tracking, and b2b strategy planning. In this article, we’ll use the following to make an automated workflow: Apify → To scrape Google Maps data N8N → To orchestrate automation Perplexity […]
Streamlit Expander
The st.expander widget in Streamlit allows you to toggle visibility of a section of content. This is useful for organizing information and keeping the user interface clean by hiding less important details until the user chooses to view them.Users can click on the expander header to expand or collapse the content inside it. Need a Streamlit […]
Streamlit Popup
we can write pop ups using st.dialogThe st.dialog feature in Streamlit allows you to create pop-up dialog boxes in your web application. These dialog boxes can be used to display information, gather user input, or confirm actionsA function decorated with @st.dialog becomes a dialog function. When you call a dialog function, Streamlit inserts a modal […]
