👉 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.
@ExcelInstructorАй бұрын
Hi, Tim, I have a question. when I try to open excel workbook and save some range to csv- it works. but when in in excel and I try to save some range using the excel =PY() function I am unable to make it work. I dont know yet whats wrong, but io thought it might be nice experiment for you to try out.
@Dojo.FinancialData16 күн бұрын
I've been using Python to automate LOADS of basic tasks in my personal and at work! Total game changer (and upskilling at the same time too!)
@Fungustus1Ай бұрын
Thanks Tim! I've learned so much from you, long time fan!!
@evogelpohlАй бұрын
Thanks!
@akaza761319 күн бұрын
You are always been helpful when it comes to python ❤
@intense_networkАй бұрын
This is better as a template and needs a lot of error handling, if to be used regularly
@bijjanishanth2256Ай бұрын
Keep going tim !❤
@patrickmateus-iq8biАй бұрын
Love how you never assume proficiency in python, you're still explaining 😂. I can't recommend your channel enough to anyone asks me how I got where I am with Python today.
@TechWithYoualwaysАй бұрын
Yah, He is now advanced, 😂😂
@patrickmateus-iq8biАй бұрын
@TechWithYoualways 🤣
@harmansavla7510Ай бұрын
Amazing video!
@MdAshfakChowdhuryАй бұрын
made a tutorial on how to automatically telegram message go to whatsapp by python. Advance thanks bro
@TVShowsSnippetsАй бұрын
How do you learn all this stuff Is it all research?
@talibalhuda27 күн бұрын
you can basically ask chatgpt how something works and google for the things you want to code. that way you are learning what benefits your scenarios. if you mean the flow guys like him are in, its probably playing with the code and solving errors. that way, when common errors you solved occur, you know kinda how to bypass or handle them.
@sadkosadko5747Ай бұрын
Best of the best
@niyonda_clothingАй бұрын
Thank you
@jhon8926Ай бұрын
I'm interested in learning a robust backend language to go with my knowledge of JavaScript (NodeJS, React) and Swift. What do you suggest I learn? C# or Java? Why?
@hope42Ай бұрын
Ask ChatGPT...
@rafacoluccijfАй бұрын
Very nice. Where is the code?
@useronetwothree-z6fАй бұрын
he didnt post in the description but u can find it in his github profile
@HossamMohamed-p1hАй бұрын
could you make video compare between Django and node.js
@HuxaifaYTАй бұрын
First omg.
@fw1engineer17 күн бұрын
Getting error message on this line: html_content = part.get_payload(decode=True).decode() Cannot access attribute "decode" for class "Message[str, str]" Attribute "decode" is unknown Had to change line to read: html_content = part.get_payload(decode=True)
@azharalibhutto1209Ай бұрын
❤❤❤❤
@gopalgoyal213623 күн бұрын
Too late at it but wont this that too much time with our personal emails filled like hell and containing god knows how many types of emails
@Limonchikgame-228Ай бұрын
i 10
@bobjohnson244625 күн бұрын
It works but I get UnicodeDecodeError: 'utf-8' codec can't decode byte 0x85 in position 251: invalid start byte Maybe because my email that I'm targeting is super old and has thousands of subscribers, and with your targeted email might not be accurate to the real world.
@wojciechgorczyca215922 күн бұрын
I get the same error
@colinm51205 күн бұрын
Getting very similar error: "UnicodeDecodeError: 'utf-8' codec can't decode byte 0x85 in position 237: invalid continuation byte" Quick Google/check on Gemini suggests likely cause is some emails are encoded with latin-1, iso-8859-1, and cp1252 or some other codec instead of utf-8 codec. Suggested workaround (worked for me) was: to replace code at line #52 with: try: content = msg.get_payload(decode=True).decode('utf-8') except UnicodeDecodeError: print("Decoding error occurred. Trying a different encoding...") content = msg.get_payload(decode=True).decode('latin-1', errors='ignore') Obvs in case of above some e-mails will get "ignored" if not encoded with utf-8 or latin-1 but you could experiment using different codecs to see what works for you.
@colinm51204 күн бұрын
Get the same error too. Quick Google suggests this error is possibly due to some e-mails not encoded with utf-8. I replaced code at line #52 try: content = msg.get_payload(decode=True).decode('utf-8') except UnicodeDecodeError: print("Decoding error occurred. Trying a different encoding...") content = msg.get_payload(decode=True).decode('latin-1', errors='ignore') This worked for me but be aware the "errors='ignore' means that any e-mails that can't be decoded with utf-8 or latin-1 will be skipped.
@useronetwothree-z6fАй бұрын
where is the code?
@G-Pie25 күн бұрын
I get that AI is becoming more popular to use, especially for programming.. However, if you are a beginner.. Please please only use AI to explain concepts to you. DO NOT use AI to generate code and copy and paste it into your app. AI is a study buddy, not a code-for-you bot.
@StynerDev-DominicanUniversityАй бұрын
🎉🎉🎉🎉
@1nsaneviper2Ай бұрын
Bro! Grow out your mustache!!!!
@simonsamuel1531Ай бұрын
I want to build a script that downloads videos from a site. How can i do that
@navidudilsara3605Ай бұрын
Ask chatgpt
@nuel_d_devАй бұрын
Inspect the network tab...look for the source of the video, usually ending in ".MP4", make a request to that URL and save
@simonsamuel1531Ай бұрын
@nuel_d_dev thanks man
@adityasinghiАй бұрын
@@nuel_d_dev you can also look for .m3u8 files
@intense_networkАй бұрын
Most of the sites today use video segments and don't send the whole video, so you'll need some tools which will parse those and merge into a video...