One of Streamlit powerful features is the ability to visualize data using charts.we would focus on Bar chart in this article. Need a Streamlit developer? Click Here Basic Bar Chart Streamlit provides a simple way to display bar chart using the st.bar_chartwe also have other ways using Altair, Ploty and matplotlib which we would look at […]
N8N Scrape Instagram
There are countless ways in which you can scrape Instagram for leads with N8N This article and guide will showcase one approach in which we scrape hashtags to find accounts and then extract account information. *Instagram Hashtag Scraper: https://console.apify.com/actors/reGe1ST3OBgYZSsZJ/input?fpr=xpluxt *Instagram Profile Scraper: https://apify.com/apify/instagram-profile-scraper?fpr=xpluxt Hire me for N8N Automations: https://ryanandmattdatascience.com/hire-n8n-automation-engineer/ This workflow uses N8N to scrape […]
Streamlit File Uploader
Streamlit File Uploaderst.file_uploader is a Streamlit widget used for uploading files directly from your local system.It supports single upload or multiple file uploads. By default st.file_uploader uploaded files are limited to 200MB each.We can configure this using the server.maxUploadSize config option. Need a Streamlit developer? Click here Syntax st.file_uploader(label, type=None, accept_multiple_files=False, key=None, help=None, on_change=None, args=None, kwargs=None, […]
Streamlit Radio Button
A radio button is a Ui widget that let’s users select exactly one option from a list. Need a Streamlit developer? Click here To start we’re going to create a simple dataframe in python: Syntax location st.radio(label, options, index=0, format_func=special_internal_function, key=None, help=None, on_change=None, args=None, kwargs=None, *, disabled=False, horizontal=False, captions=None, label_visibility=”visible”, width=”content”) Parameter Type Default Description […]
Apollo N8N
In this lesson we are going to take a look at how we can connect Apollo to N8N in a simple workflow. Apollo allows for a ton of lead generation opportunities and many companies are looking to build workflows with it integrated. You can use Apollo outside of Apify, but to save money you can […]
N8N Apify
Apify and N8N just release a set of nodes & triggers that can be added natively in N8N cloud. In this tutorial we will go over the differences between the old approach and the new one. If you prefer a video over text format, the video on our YouTube channel is embedded below. I’m also […]
Streamlit Charts
Streamlit allows us to view data(data visualization).It provides simple API’s for data visualization and supports both built-in charts and third party librariesStreamlit also have interactive charting libraries live Vega Lite(2D charts) and deck.gl(maps and 3D charts)and it provides chart types that are native to Streamlit, like st.line_chart and st.area_chart Need a Streamlit? Click Here Built-in […]
Streamlit Progress Bar
This displays a progress bar.In Streamlit, we use st.progress() to display a horizontal progress bar.st.progress(value, text=None) Need a Streamlit developer? Click here Parameter Type Default Description value int 0 Sets the initial progress (0–100). text str (optional) None Displays a label above the progress bar. width “stretch” or int “stretch” The width of the progress bar. […]
Streamlit Components
Streamlit components are basically UI elements that allows users to interact with your app,and displays data visualizations, forms, charts and more. Need a Streamlit developer? Click here Streamlit Built-in Components Component Description Example st.title Displays a large title st.title(“My Streamlit App”) st.header Displays a header st.header(“Section Header”) st.subheader Displays a smaller header st.subheader(“Subsection”) st.write General-purpose text […]
Streamlit Pages
Streamlit Pages allows us to create multi-pages apps for better navigation, structure and modularity.It helps us split our app into smaller pages.Some benefits of Streamlit Pages includesOrganized structure for large apps. Easy navigation through sidebar or custom menus. Reusable logic across pages. Better user experience. Setting up pagesStreamlit automatically recognizes a pages directory inside an […]
