Automate Your Life Using Python! (Email Unsubscribe with Python Tutorial)

  Рет қаралды 24,688

Tech With Tim

Tech With Tim

Күн бұрын

Пікірлер: 49
@TechWithTim
@TechWithTim Ай бұрын
👉 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
@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.FinancialData
@Dojo.FinancialData 16 күн бұрын
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
@Fungustus1 Ай бұрын
Thanks Tim! I've learned so much from you, long time fan!!
@evogelpohl
@evogelpohl Ай бұрын
Thanks!
@akaza7613
@akaza7613 19 күн бұрын
You are always been helpful when it comes to python ❤
@intense_network
@intense_network Ай бұрын
This is better as a template and needs a lot of error handling, if to be used regularly
@bijjanishanth2256
@bijjanishanth2256 Ай бұрын
Keep going tim !❤
@patrickmateus-iq8bi
@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
@TechWithYoualways Ай бұрын
Yah, He is now advanced, 😂😂
@patrickmateus-iq8bi
@patrickmateus-iq8bi Ай бұрын
@TechWithYoualways 🤣
@harmansavla7510
@harmansavla7510 Ай бұрын
Amazing video!
@MdAshfakChowdhury
@MdAshfakChowdhury Ай бұрын
made a tutorial on how to automatically telegram message go to whatsapp by python. Advance thanks bro
@TVShowsSnippets
@TVShowsSnippets Ай бұрын
How do you learn all this stuff Is it all research?
@talibalhuda
@talibalhuda 27 күн бұрын
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
@sadkosadko5747 Ай бұрын
Best of the best
@niyonda_clothing
@niyonda_clothing Ай бұрын
Thank you
@jhon8926
@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
@hope42 Ай бұрын
Ask ChatGPT...
@rafacoluccijf
@rafacoluccijf Ай бұрын
Very nice. Where is the code?
@useronetwothree-z6f
@useronetwothree-z6f Ай бұрын
he didnt post in the description but u can find it in his github profile
@HossamMohamed-p1h
@HossamMohamed-p1h Ай бұрын
could you make video compare between Django and node.js
@HuxaifaYT
@HuxaifaYT Ай бұрын
First omg.
@fw1engineer
@fw1engineer 17 күн бұрын
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
@azharalibhutto1209 Ай бұрын
❤❤❤❤
@gopalgoyal2136
@gopalgoyal2136 23 күн бұрын
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
@Limonchikgame-228 Ай бұрын
i 10
@bobjohnson2446
@bobjohnson2446 25 күн бұрын
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.
@wojciechgorczyca2159
@wojciechgorczyca2159 22 күн бұрын
I get the same error
@colinm5120
@colinm5120 5 күн бұрын
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.
@colinm5120
@colinm5120 4 күн бұрын
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
@useronetwothree-z6f Ай бұрын
where is the code?
@G-Pie
@G-Pie 25 күн бұрын
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
@StynerDev-DominicanUniversity Ай бұрын
🎉🎉🎉🎉
@1nsaneviper2
@1nsaneviper2 Ай бұрын
Bro! Grow out your mustache!!!!
@simonsamuel1531
@simonsamuel1531 Ай бұрын
I want to build a script that downloads videos from a site. How can i do that
@navidudilsara3605
@navidudilsara3605 Ай бұрын
Ask chatgpt
@nuel_d_dev
@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
@simonsamuel1531 Ай бұрын
@nuel_d_dev thanks man
@adityasinghi
@adityasinghi Ай бұрын
@@nuel_d_dev you can also look for .m3u8 files
@intense_network
@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...
Make a Voice Assistant with Python
15:56
JakeEh
Рет қаралды 23 М.
Deadpool family by Tsuriki Show
00:12
Tsuriki Show
Рет қаралды 7 МЛН
Lazy days…
00:24
Anwar Jibawi
Рет қаралды 9 МЛН
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 27 МЛН
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 230 М.
Why You Should Think Twice Before Using Returns in Python
21:27
ArjanCodes
Рет қаралды 27 М.
How To Make Money From Python - A Complete Guide
10:33
Tech With Tim
Рет қаралды 86 М.
Start Automating Your Life Using Python! (File Management with Python Tutorial)
13:07
If I start learning code in 2025, I’d do this.
4:48
Will Yi
Рет қаралды 15 М.
How To Handle Permissions Like A Senior Dev
36:39
Web Dev Simplified
Рет қаралды 261 М.
PLEASE Learn These 10 Advanced Python Features
42:28
Tech With Tim
Рет қаралды 48 М.
Building Real-time Apps with Go | Azim Pulat
54:58
Azim Pulat
Рет қаралды 40 М.
10 Python Comprehensions You SHOULD Be Using
21:35
Tech With Tim
Рет қаралды 160 М.
How To Make Money From Coding - A Complete Guide
43:05
Tech With Tim
Рет қаралды 173 М.
Deadpool family by Tsuriki Show
00:12
Tsuriki Show
Рет қаралды 7 МЛН