👉 To try everything Brilliant has to offer for free for a full 30 days, visit brilliant.org/TechWithTim . You'll also get a 20% discount on a premium subscription.
can you please upload a beginner friendly RUclips tutorial video. That teach you how to code and develop games using GD script. by illustrating step by step, how to code and make multiple games from different types and genres, by GD script and Godot. I will really appreciate it if you did this please.
Wow. Simple Web Development with pure Python. And it looks intuitive as well. I think its perfectly suited for smaller "Just get it Done" projects. I will definitely check it out.
Tim - Always appreciative of your videos. You're by far one of the best people who write well thought out scripts, speak clearly, and have great presentation skills. Thank you so much for putting out so much great content!
Very interesting. I have been seeing the term Streamlit and I am currently studying AWS Kinesis, I'm still trying to wrap my head around the total volume of streaming data that is utilized as a normal process. Good video.
@@TechWithTim can you please upload a beginner friendly RUclips tutorial video. That teach you how to code and develop games using GD script. by illustrating step by step, how to code and make multiple games from different types and genres, by GD script and Godot. I will really appreciate it if you did this please.
Thank you so much for getting back to your old style of videos it's so much better And thanks for listening to your followers' opinions and comments Your channel is really great and I love enjoying all your videos And
Great intro to Streamlit. Believe its often overlooked for a rapid prototyping web development framework. Currently it's my goto as a web hub for interacting with all the LLMs I utilize and customized ai agents, storing conversations and preferences to streamline the interaction. It's a great springboard for these kinds of use cases. Thanks!
Thanks Tim. I found it helpful I'm planning to specialize in building web application and Using flask and Django With this video , i can as well implement it for data science project. Have always been your great fan❤
Great video Tim. I'm in the process of learning Python so it's nice to break from tutorials and actually watch someone build something! I see Streamlit has really good documentation, but there's so much, it's overwhelming. What's the best approach to learn about the three libraries you used (Streamlit, Pandas and Mathplotlib)?
Great video. Worth noting that the plot crashes if you are using Python 3.13. (Current date: 20th Nov 2024) It seemed to have an issue with the 'altair' module (v5.4.1) I had to create a virtual env that used 3.11 to get it to run.
Very interesting. I'm curious however as to the matplotlib import at the top of the code as I didn't see 'plt' being referenced at any other point in the presentation and therefore wondered if it wasn't needed in the end...?
I tried to create a second plot option by copying the code section for the first button. however, it only displays one plot at a time. any idea how I can put an option for two plots instead of just one?
Really good video, thanks a lot. I just have one question, maybe it's a stupid one. In the beginning you import matplotlib, but wenn you finally plot the data, you use st.line_chart. How is this connected?
tim, what happens if I run my website and it refuses to run? It suddenly says "Error: Streamlit requires raw Python (.py) files, but the provided file has no extension." where in fact I have put the extension and is in fact where I need to open it just as you mentioned in the video? This is driving me nuts.
I think this is a bug in the code, if date is selected in filtered data, then you try to plot using date, it will only use the one selected. Generate plot should be: st.line_chart(df.set_index(x_column)[y_column])
respected sir, I am dev patel from India. I saw your video and I made the project but I cannot be able to see the graph which is at the end please solve my error. I am running the code in google chrome browser for my output. Here is my code which is almost similar to your code but with some minor editing only in the names please help me. import streamlit as st import pandas as pd import matplotlib.pyplot as plt st.title("Dev's project dashboard") upload_file=st.file_uploader("choose a CSV file:",type="csv") if upload_file is not None: df=pd.read_csv(upload_file) st.subheader("Data preview") st.write(df.head()) st.subheader("Data summary") st.write(df.describe()) st.write("Filter data") columns=df.columns.to_list() selected_column=st.selectbox("select column to filter by",columns) unique_values = df[selected_column].unique() selected_value=st.selectbox("Select value:",unique_values) filtered_df = df[df[selected_column] == selected_value] st.write(filtered_df) st.subheader("Plotting Data") x_column = st.selectbox("select x_axis column",columns) y_column = st.selectbox("select y_axis column",columns) if st.button("Generate plot"): st.line_chart(filtered_df.set_index(x_column) [y_column]) else: st.write("Waiting for your file to be uploaded...") Thank you sir for giving me your precious time.
Hi @TechWithTim, I purchased CourseCareer's full package through your RUclips channel but did not receive the $50 discount as promised. I tried to connect with you on Discord but didn't get a reply. How can I claim it?
👉 To try everything Brilliant has to offer for free for a full 30 days, visit brilliant.org/TechWithTim . You'll also get a 20% discount on a premium subscription.
can you please upload a beginner friendly RUclips tutorial video. That teach you how to code and develop games using GD script. by illustrating step by step, how to code and make multiple games from different types and genres, by GD script and Godot. I will really appreciate it if you did this please.
Wow. Simple Web Development with pure Python. And it looks intuitive as well. I think its perfectly suited for smaller "Just get it Done" projects. I will definitely check it out.
Hi @TechWithTim, I'm with the Streamlit DevRel team, thanks for creating this video, great job!
Thanks very much!
Hey how to solve this
Warning: to view this Streamlit app on a browser, run it with the following
command:
dude I'm not even good at programming but I can easily understand what he is saying. Respect !
Tim - Always appreciative of your videos. You're by far one of the best people who write well thought out scripts, speak clearly, and have great presentation skills. Thank you so much for putting out so much great content!
Appreciate the support and comment!
Wow, nice seeing you teaching how to use Streamlit, keep it up Tim.
Very interesting. I have been seeing the term Streamlit and I am currently studying AWS Kinesis, I'm still trying to wrap my head around the total volume of streaming data that is utilized as a normal process. Good video.
Great intro to Streamlit. Can you please make in-depth videos on it. Thank you Tim
Today I came very early, please give me a heart, I'm your big fan!
Of course!
@@TechWithTim
can you please upload a beginner friendly RUclips tutorial video. That teach you how to code and develop games using GD script. by illustrating step by step, how to code and make multiple games from different types and genres, by GD script and Godot. I will really appreciate it if you did this please.
@@TechWithTim Thanks Sir 🙏
@@KakarotSaiyan-v5p I'm also interested but more in C++ ! Although your choice is also great 👍
May allah promote you to an air conditioner
Thank you so much for getting back to your old style of videos it's so much better
And thanks for listening to your followers' opinions and comments
Your channel is really great and I love enjoying all your videos
And
Great intro to Streamlit. Believe its often overlooked for a rapid prototyping web development framework. Currently it's my goto as a web hub for interacting with all the LLMs I utilize and customized ai agents, storing conversations and preferences to streamline the interaction. It's a great springboard for these kinds of use cases. Thanks!
Nice intro, Tim! Much appreciated. Keep up the good work!
This video reminded me again why I subscribed to your channel! Easy to understand and helpful content. Thank you for doing this.
Thanks a ton man. Really appreciate these quick introductory videos ✨
Loved the clear and concise explanation!
Thanks Tim. I found it helpful I'm planning to specialize in building web application and Using flask and Django With this video , i can as well implement it for data science project. Have always been your great fan❤
Hey tim, thanks man you always provide the best content to us...🤜🤛
Simple and informative! Amazing teacher you are ❤
Nice and attractive introduction to Streamlit. Good job again @TechWithTim.
Bro you're the goat❤
Great video Tim. I'm in the process of learning Python so it's nice to break from tutorials and actually watch someone build something!
I see Streamlit has really good documentation, but there's so much, it's overwhelming. What's the best approach to learn about the three libraries you used (Streamlit, Pandas and Mathplotlib)?
Loved this Tim.... Can we have one in-depth video pls?
ya maybe creating an into playlist can help a lot of people
Great walkthrough. Thanks!
Enjoyed the video a lot! 😊 Thank you.
Super thanks Tim, I now know what streamlit is.
Nice overview of Streamlit .... now please bring whole video tutorials
Great video. Worth noting that the plot crashes if you are using Python 3.13. (Current date: 20th Nov 2024) It seemed to have an issue with the 'altair' module (v5.4.1) I had to create a virtual env that used 3.11 to get it to run.
Wou thank you for sharing !!!
Great job!
Would be great if you could also make a tutorial for live streaming via webcam and detect face or something with opencv and streamlit!
Many thanks!
Very interesting. I'm curious however as to the matplotlib import at the top of the code as I didn't see 'plt' being referenced at any other point in the presentation and therefore wondered if it wasn't needed in the end...?
Amazing API.
I need to understand where this packages are installed to. Was there a virtual environment for this project?
Just for comparison you could do a follow-up with Taipy and show the differences :)
Just a thought
Good idea!
@@TechWithTim and maybe fasthtml as well
Excellent.
I tried to create a second plot option by copying the code section for the first button. however, it only displays one plot at a time. any idea how I can put an option for two plots instead of just one?
Love me some streamlit
Really good video, thanks a lot. I just have one question, maybe it's a stupid one. In the beginning you import matplotlib, but wenn you finally plot the data, you use st.line_chart. How is this connected?
Very good.
What do you guys recommend for college classes to take to be a cyber security? And how can I use python for CS???
Can you expand that tutorial and implemented machine learning model to give you predictions?
Splendid
i like this word a lot. i should start using it
Is there also API versioning or how can this be realized?
hook up streamlit to a database!
Can you use it inbany csv files sir?
Thanks for the tutorial, followed it but my data keeps loading as object type and the unique line does run so can't filter by column. Any help?
nice video
tim, what happens if I run my website and it refuses to run? It suddenly says "Error: Streamlit requires raw Python (.py) files, but the provided file has no extension." where in fact I have put the extension and is in fact where I need to open it just as you mentioned in the video? This is driving me nuts.
You just need to make sure you save the file as .py
Please make a full playlist on streamlit from scratch
Is it standalone or can it be used within Django?
that's cool
Can u build SaaS project next please?
Can you plz continue making Rust tutorial series plz?
brooo brooo brooo THIS IS FANTASTIC ...........................................LOVE FROM PAKISTAN........❤❤🩹
What about Anvil?
please data science with python video
I think this is a bug in the code, if date is selected in filtered data, then you try to plot using date, it will only use the one selected. Generate plot should be: st.line_chart(df.set_index(x_column)[y_column])
That’s the intended function
Yeaaaa
All my DL/DataScience projects contains streamlit
ok rajesh
@@HyBlock ?
@@nikhilsastry6631 good morning sir ☕
Me too 😂
Pretty handy for testing purposes but not recommend for production.
tim, can you make a more advanced react tutorial?, you made a bigginers guide... so can you now make a more advanced guide?
🤝
Data Sscience - must be another branch ;)
nicegui is also great ig?
Streamlit will steal your data. Don’t use at work
They actually stealed my github credintials
First!
LOL. Be real.
I want to create healthcare chatbot ....i only know python and little Ml ...plese make a video how to make this project😢 My final year project is near
respected sir,
I am dev patel from India.
I saw your video and I made the project but I cannot be able to see the graph which is at the end please solve my error.
I am running the code in google chrome browser for my output.
Here is my code which is almost similar to your code but with some minor editing only in the names please help me.
import streamlit as st
import pandas as pd
import matplotlib.pyplot as plt
st.title("Dev's project dashboard")
upload_file=st.file_uploader("choose a CSV file:",type="csv")
if upload_file is not None:
df=pd.read_csv(upload_file)
st.subheader("Data preview")
st.write(df.head())
st.subheader("Data summary")
st.write(df.describe())
st.write("Filter data")
columns=df.columns.to_list()
selected_column=st.selectbox("select column to filter by",columns)
unique_values = df[selected_column].unique()
selected_value=st.selectbox("Select value:",unique_values)
filtered_df = df[df[selected_column] == selected_value]
st.write(filtered_df)
st.subheader("Plotting Data")
x_column = st.selectbox("select x_axis column",columns)
y_column = st.selectbox("select y_axis column",columns)
if st.button("Generate plot"):
st.line_chart(filtered_df.set_index(x_column) [y_column])
else:
st.write("Waiting for your file to be uploaded...")
Thank you sir for giving me your precious time.
NiceGUI?
Hi @TechWithTim, I purchased CourseCareer's full package through your RUclips channel but did not receive the $50 discount as promised. I tried to connect with you on Discord but didn't get a reply. How can I claim it?
Did you purchase from this link? techwithtim.net/dev . You need to claim it at checkout, you could refund it and then rebuy it
You can try signing out and making a new account before purchasing