👉 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 UA-cam 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.
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 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!
@@TechWithTim can you please upload a beginner friendly UA-cam 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.
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❤
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
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...?
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?
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])
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.
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 UA-cam 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 UA-cam 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.
dude I'm not even good at programming but I can easily understand what he is saying. Respect !
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:
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!
Appreciate the support and comment!
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
Wow, nice seeing you teaching how to use Streamlit, keep it up Tim.
This video reminded me again why I subscribed to your channel! Easy to understand and helpful content. Thank you for doing this.
Loved the clear and concise explanation!
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)?
Thanks a ton man. Really appreciate these quick introductory videos ✨
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!
Loved this Tim.... Can we have one in-depth video pls?
ya maybe creating an into playlist can help a lot of people
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 UA-cam 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
Bro you're the goat❤
Nice and attractive introduction to Streamlit. Good job again @TechWithTim.
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 walkthrough. Thanks!
Nice intro, Tim! Much appreciated. Keep up the good work!
Nice overview of Streamlit .... now please bring whole video tutorials
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
Hey tim, thanks man you always provide the best content to us...🤜🤛
Super thanks Tim, I now know what streamlit is.
Simple and informative! Amazing teacher you are ❤
Enjoyed the video a lot! 😊 Thank you.
What do you guys recommend for college classes to take to be a cyber security? And how can I use python for CS???
Would be great if you could also make a tutorial for live streaming via webcam and detect face or something with opencv and streamlit!
Amazing API.
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
Many thanks!
Wou thank you for sharing !!!
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...?
Great job!
Can you expand that tutorial and implemented machine learning model to give you predictions?
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?
Can you plz continue making Rust tutorial series plz?
Love me some streamlit
Please make a full playlist on streamlit from scratch
Splendid
i like this word a lot. i should start using it
I need to understand where this packages are installed to. Was there a virtual environment for this project?
Excellent.
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
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?
Very good.
that's cool
Can u build SaaS project next please?
Is there also API versioning or how can this be realized?
Is it standalone or can it be used within Django?
Pretty handy for testing purposes but not recommend for production.
nice video
please data science with python video
hook up streamlit to a database!
Can you use it inbany csv files sir?
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
brooo brooo brooo THIS IS FANTASTIC ...........................................LOVE FROM PAKISTAN........❤❤🩹
Yeaaaa
tim, can you make a more advanced react tutorial?, you made a bigginers guide... so can you now make a more advanced guide?
All my DL/DataScience projects contains streamlit
ok rajesh
@@HyBlock ?
@@nikhilsastry6631 good morning sir ☕
Me too 😂
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 UA-cam 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