Izzy Analytics
Izzy Analytics
  • 53
  • 1 069 380
Twitter Scraper Python Tutorial
Learn how to scrape Twitter data using Python. If you need to use Twitter data for research, machine-learning, sales leads, etc... AND if you can't afford the standard API or work within the limitations of the Developer version... then this video is for you.
I'm going to assume you have already installed SELENIUM and a web driver. I'm going to be using Edge Chromium. However, you can use Firefox or Chrome as well; I'll point out the few differences when I see them.
SELENIUM Install TUTORIAL:
th-cam.com/video/9XAH_TvxwLg/w-d-xo.html
EDGE BROWSER DOWNLOAD:
www.microsoft.com/en-us/edge
SELENIUM WEBDRIVER (EDGE CHROMIUM):
developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/#downloads
RESOURCES for using XPATH:
www.w3schools.com/xml/xpath_intro.asp
GITHUB REPOSITORY:
github.com/israel-dryer/Twitter-Scraper
มุมมอง: 85 005

วีดีโอ

Add SHADOWS to your email IMAGE | Outlook Python pywin32
มุมมอง 3.4K4 ปีที่แล้ว
Learn how to add and customize shadows on an image that's in your email body using Python. Also, while other videos in this series have covered inserting images... this video covers another technique that you can use to insert an image into the body of your email using pywin32 and Python that will give you a bit more control and will allow you to apply custom formats to your images. SERIES PLAY...
How to scrape SALARIES from SALARY.com using PYTHON
มุมมอง 2.9K4 ปีที่แล้ว
Learn how to scrape SALARIES for any JOB TITLE and CITY using PYTHON. In this project, I'll show you a technique for easily scraping JSON formatted data from an html script tag. As a plus, you will be able to research the salary data for any job title for cities all across the US. In fact, I'm including a link to a list of the top 300 US cities that you can use in this program for salary resear...
How to scrape STOCKS and FINANCIALS from YAHOO! Finance with PYTHON
มุมมอง 76K4 ปีที่แล้ว
Learn how to scrape STOCK data, FINANCIAL STATEMENTS and so MORE more from Yahoo! Finance. In this video, I'll use two of my favorite web scraping methods... hidden APIs and scraping JSON data directly from the html. If you're looking for data to explore with your machine-learning model, or you simply want to extract this data for your own research or model, this is a great place to start. PYTH...
How to scrape JOB posts from INDEED with PYTHON
มุมมอง 52K4 ปีที่แล้ว
Learn how to scrape JOB posts from www.INDEED.com using PYTHON. github.com/israel-dryer/Indeed-Job-Scraper PYTHON LIBRARIES BeautifulSoup www.crummy.com/software/BeautifulSoup/bs4/doc/ // pip install bs4 Requests requests.readthedocs.io/en/master/ //pip install requests
How to scrape AMAZON.com using PYTHON
มุมมอง 92K4 ปีที่แล้ว
Learn how to scrape PRICE and PRODUCT data from AMAZON.com using PYTHON. This project is designed to give a beginner or intermediate programmer some experience with web scraping in a practical application - get product and price information from Amazon. This is one of many web scraping projects in python. Some basic working knowledge of Selenium and BeautifulSoup is assumed by the lesson conten...
How To Install SELENIUM for EDGE Chromium | PYTHON
มุมมอง 19K4 ปีที่แล้ว
Learn how to install SELENIUM for PYTHON in Windows for the EDGE Chromium browser. You'll first need to install the Edge Chromium browser, then download and install the webdriver, and finally install the python package "msedge-selenium-tools". Finally, we'll run a test to make sure everything rocking and ready to go. EDGE BROWSER DOWNLOAD: www.microsoft.com/en-us/edge SELENIUM WEBDRIVER (EDGE C...
How to SEND email from ANOTHER ACCOUNT In Outlook | Python Outlook Automation
มุมมอง 9K4 ปีที่แล้ว
In this video I'm going to show you how to send email from another account in Outlook. I'll also show you how to "Send on Behalf Of" another user, which is different than sending on behalf of another account. This video is part of a series on how to use Python to automate outlook. SERIES PLAYLIST: th-cam.com/play/PLHnSLOMOPT11njaNmENJN6p2ro9MTc7t_.html OUTLOOK API: docs.microsoft.com/en-us/offi...
Create a custom command ribbon for Python scripts | Run python from VBA
มุมมอง 6K4 ปีที่แล้ว
In this tutorial I'm going to show you how to run python from VBA in Outlook, and more importantly, create a custom command ribbon that will allow you to easily run all of those automation scripts you've built to manage your Outlook application, DIRECTLY FROM OUTLOOK! SERIES PLAYLIST: th-cam.com/play/PLHnSLOMOPT11njaNmENJN6p2ro9MTc7t_.html TEST SCRIPTS TO DOWNLOAD: happy_birthday.py: raw.github...
How to insert EXCEL tables into OUTLOOK email with Python
มุมมอง 20K4 ปีที่แล้ว
If you're interested in Outlook automation with Python, in this video, I'm going to show you how to insert and Excel table in an Outlook email. For this demonstration, we're going to insert a heat-map from Excel into an html-formatted mail in Outlook by saving the Excel range as an image and inserting that image into the body of the html template we use for the Outlook HTML body. SERIES PLAYLIS...
How to SEARCH and ORGANIZE your mailbox with Python
มุมมอง 25K4 ปีที่แล้ว
If you're interested in Python Outlook Automation, in this video, I’m going to show you how to use Python to your search and organize your mail in Outlook. Also, I’m going to show you a method for recursively searching and collecting every message in your account folder that meets your search criteria. This is a method you can customize for whatever search operation you want to perform on your ...
How to send BULK EMAIL from Outlook using Python # 2
มุมมอง 7K4 ปีที่แล้ว
If you're interested in automating Outlook with Python, in this video, I’m going to go over another bulk mail merge method. Previously, we created and sent mail in a single step. In this video, we’re going to create and save the emails first, and then afterwards, we’ll access the drafts folder and send the messages from there. This has the benefit of allowing you to review your messages BEFORE ...
How to MANAGE mail contained in your EMAIL FOLDERS with Python
มุมมอง 11K4 ปีที่แล้ว
If you're interested in automating Outlook with Python, in this short video, I’m going to show you how to work with the items collection inside of an outlook folder. If you’ve been following this series, then you’re already familiar with folders and mail items. The items collection is useful because it allows you to work with a group of messages, instead of just a single message, which is what ...
TROLL your FRIENDS with RANDOM MEMES using Python | Python Pranks
มุมมอง 3.8K4 ปีที่แล้ว
Who says programming can't be fun? In this video, I’m going to show you how to troll your friends.. all with Python! We're going to create a python program that scrapes random memes from the internet on a timer and then mails them to your friends and co-workers... forever... until you stop it. LIBRARIES - BeautifulSoup: www.crummy.com/software/BeautifulSoup/bs4/doc/ - Requests: 2.python-request...
How to NAVIGATE and MANAGE Outlook FOLDERS using Python
มุมมอง 18K4 ปีที่แล้ว
If you're interested in automating Outlook with Python, in this video, I’m going to show you how to navigate and manage Outlook folders in Python in order to access the outlook objects inside those folders. This will prove very useful when you want to perform mail searches, organize your mail within folders, or send mail that you have saved in drafts. This video is part of a series on How to ge...
How to send BULK MAIL from Outlook using Python # 1
มุมมอง 12K4 ปีที่แล้ว
How to send BULK MAIL from Outlook using Python # 1
How to work around SENDING LIMITS by CHUNKING a distribution
มุมมอง 4.1K4 ปีที่แล้ว
How to work around SENDING LIMITS by CHUNKING a distribution
Methods for working around Microsoft's email SENDING LIMITS
มุมมอง 8K4 ปีที่แล้ว
Methods for working around Microsoft's email SENDING LIMITS
How to Create and use EMAIL TEMPLATES to automate mail-merge
มุมมอง 14K4 ปีที่แล้ว
How to Create and use EMAIL TEMPLATES to automate mail-merge
How to add ATTACHMENTS to an email in Outlook with Python
มุมมอง 23K4 ปีที่แล้ว
How to add ATTACHMENTS to an email in Outlook with Python
How to send HTML formatted email in Outlook with Python
มุมมอง 28K4 ปีที่แล้ว
How to send HTML formatted email in Outlook with Python
How to send PLAIN TEXT EMAIL from Outlook using Python
มุมมอง 49K4 ปีที่แล้ว
How to send PLAIN TEXT EMAIL from Outlook using Python
How to INSTALL and SETUP Outlook with Python | win32com | pywin32
มุมมอง 43K4 ปีที่แล้ว
How to INSTALL and SETUP Outlook with Python | win32com | pywin32
How to install Python 3.8 on Windows 10
มุมมอง 20K5 ปีที่แล้ว
How to install Python 3.8 on Windows 10
Notepad In Python | PySimpleGUI
มุมมอง 13K5 ปีที่แล้ว
Notepad In Python | PySimpleGUI
Python Calculator with GUI | PySimpleGUI | Texas Instruments DataMath II
มุมมอง 42K5 ปีที่แล้ว
Python Calculator with GUI | PySimpleGUI | Texas Instruments DataMath II
MAD LIBS Generator in Python
มุมมอง 20K5 ปีที่แล้ว
MAD LIBS Generator in Python
File Search Engine | Project for Python Portfolio with GUI | PySimpleGUI
มุมมอง 28K5 ปีที่แล้ว
File Search Engine | Project for Python Portfolio with GUI | PySimpleGUI
Raspberry Pi 3 Data Logger | Part 2 of 2 | SQLite
มุมมอง 6K5 ปีที่แล้ว
Raspberry Pi 3 Data Logger | Part 2 of 2 | SQLite
Raspberry Pi 3 Data Logger | Part 1 of 2 | CSV
มุมมอง 20K5 ปีที่แล้ว
Raspberry Pi 3 Data Logger | Part 1 of 2 | CSV

ความคิดเห็น

  • @ELFBDS
    @ELFBDS 4 วันที่ผ่านมา

    It's late 2024 & this video is still alive ❣

  • @MrRafsongs
    @MrRafsongs 6 วันที่ผ่านมา

    There's no way most will know how the hell to do it - you need to do one from scratch as though you're a noobie youtube viewer like us

  • @925_nomad
    @925_nomad 21 วันที่ผ่านมา

    how do i add multiple email to send?

  • @martinruiz8665
    @martinruiz8665 26 วันที่ผ่านมา

    Another question, where do you put the break to prevent it from becoming an endless loop and resending the message to each recipient?

  • @GeoffWieczynski
    @GeoffWieczynski หลายเดือนก่อน

    I just wanted to thank you for your video--saved me much grief and taught me new stuff!

  • @dearvirus
    @dearvirus หลายเดือนก่อน

    Fuck Israel

  • @mohsinrizvi3936
    @mohsinrizvi3936 2 หลายเดือนก่อน

    Thanks! It is very easy to learn as a beginner. Just want to know, Is it necessary to install outlook application on the system/server? Can we do it without installing the outlook? Plz reply.

  • @jacklondon2759
    @jacklondon2759 2 หลายเดือนก่อน

    What if I want to do the same thing, but from a form created with the PyQt library (5, 6)? where there is a field called subject, a field called message body, a field called to with a csv file and a field called attachments? It happens that of the similar topics that I have been researching, the present tutorial seems to me more than excellent and adequate for its simplicity and accuracy.

  • @avinashdudala9490
    @avinashdudala9490 2 หลายเดือนก่อน

    Hi this code not working on New Outlook app can you send me any other approach that works on New Outlook app

  • @avinashdudala9490
    @avinashdudala9490 2 หลายเดือนก่อน

    Hi this code not working on New Outlook app can you send me any other approach that works on New Outlook app

  • @Optimusprime-pv2tu
    @Optimusprime-pv2tu 3 หลายเดือนก่อน

    can't thank you enough man, looking for the exact video. you popped up in my search list like a diamond.

  • @marcosandre2889
    @marcosandre2889 3 หลายเดือนก่อน

    Thanks from brazil

  • @piyaphongklanmor7873
    @piyaphongklanmor7873 4 หลายเดือนก่อน

    Best video

  • @RealMadrid-pz8np
    @RealMadrid-pz8np 4 หลายเดือนก่อน

    Thans a lot for this tutorial, I really appreciate your explanation to each single logic in the code you wrote.

  • @tariqpanjari1920
    @tariqpanjari1920 5 หลายเดือนก่อน

    Can you make a video on how to convert outlook emails in to HTML file using python

  • @digitalnomad2196
    @digitalnomad2196 5 หลายเดือนก่อน

    is there a gitrepo for the code thanks !

  • @ratefiarisonharivonylalati3873
    @ratefiarisonharivonylalati3873 6 หลายเดือนก่อน

    Usefull, thanks :) :)

  • @da_ta
    @da_ta 6 หลายเดือนก่อน

    Thanks for doing this ❤

  • @SAI_LINGESH
    @SAI_LINGESH 6 หลายเดือนก่อน

    My response is 403, it's no. How to handle it? Please help

    • @wuwu7899
      @wuwu7899 3 หลายเดือนก่อน

      Its fixed. Now only selenium

  • @mrgoktug-orjinal
    @mrgoktug-orjinal 6 หลายเดือนก่อน

    poor israel

  • @andrewhoward7782
    @andrewhoward7782 6 หลายเดือนก่อน

    your amazing

  • @eb_reviews
    @eb_reviews 6 หลายเดือนก่อน

    Thank you so much brother!

  • @mounikapathuri8606
    @mounikapathuri8606 6 หลายเดือนก่อน

    Thank you so much. This video helped me a lot.

  • @tliliameni5587
    @tliliameni5587 7 หลายเดือนก่อน

    Thank you for all these videos. Witch scripy can I use in the Shell for Pycharm plz.?

  • @tliliameni5587
    @tliliameni5587 7 หลายเดือนก่อน

    🎀🫶🏻💌💓THANK YOU 🎀🫶🏻💌💓

  • @tliliameni5587
    @tliliameni5587 7 หลายเดือนก่อน

    I'm very grateful :)))))

  • @tliliameni5587
    @tliliameni5587 7 หลายเดือนก่อน

    Thank you very much!

  • @tliliameni5587
    @tliliameni5587 7 หลายเดือนก่อน

    Thank you very much

  • @ELVISTAKUNDACHIKUDZAH
    @ELVISTAKUNDACHIKUDZAH 7 หลายเดือนก่อน

    Dude youre not part of Marvels or DC Comics but just know this, YOU ARE A SUPER HERO

  • @souryamajumder2613
    @souryamajumder2613 7 หลายเดือนก่อน

    indeed now uses Cloudflare to prevent scraping , any get arounds to this ? while scraping I'm getting 403 response.

  • @sahilsvachhani
    @sahilsvachhani 8 หลายเดือนก่อน

    The way you explained was so smooth and easy to understand, especially your style of writing the code which makes easier what you are trying to explain. Thanks a lot for uploading this..

  • @diymaster101
    @diymaster101 8 หลายเดือนก่อน

    Amazing bro what is the limit of emails and contacts 🙏

  • @Harikrishnan-nk9jp
    @Harikrishnan-nk9jp 8 หลายเดือนก่อน

    what changes are done to this code so as to pull the data every week automatically????

  • @akibulislam8505
    @akibulislam8505 8 หลายเดือนก่อน

    can i do it by pycharm

  • @ajinkyarajurkar7457
    @ajinkyarajurkar7457 8 หลายเดือนก่อน

    how can we get organizational hierarchy in outlook using python pywin..Can you please help here?

  • @da_ta
    @da_ta 9 หลายเดือนก่อน

    excellent

  • @Buff_Bingus
    @Buff_Bingus 9 หลายเดือนก่อน

    i might of adjusted this code to change into messages then made a message and then i sent spam messages to ryan reynolds

  • @balajisriram5772
    @balajisriram5772 9 หลายเดือนก่อน

    I am getting the message "Outlook prevented automatic download of this picture from the Internet". How to resolve this issue. This message doesn't appear when I attach an image and send an email manually. Can you please help me.

  • @prabhatrawat4394
    @prabhatrawat4394 9 หลายเดือนก่อน

    Hello thanks for this tutorial. I tried but the image is pasting blank on outlook. Do you know what would be the possible reason? I have checked and the image has the data. Also do you know the way how can I add table in outlook with the same formatting available on excel instead of copying the image?

  • @prakharrathi25
    @prakharrathi25 9 หลายเดือนก่อน

    This was one of the simplest and best tutorials out there! I had one follow-up question - is there a way I could add the image as a bitmap instead of a png?

  • @rajeevnamboodiri9430
    @rajeevnamboodiri9430 9 หลายเดือนก่อน

    How could one embed 2 images in the same mail

  • @dphair3805
    @dphair3805 10 หลายเดือนก่อน

    Once I changed Thonny from micropython to python3 everything worked like you said. Thanks for the code and explanation.

  • @yamanyaseen9922
    @yamanyaseen9922 10 หลายเดือนก่อน

    Hi Izzy! I need some help! I am using win32com.client and trying to reply to a mail using Reply() or ReplyAll(). But the original msg is not being included in the reply mail. Please help me achieve that. I tried to set the ConversationTopic, but that is throwing error.

  • @Amine-gz7gq
    @Amine-gz7gq 10 หลายเดือนก่อน

    Thanks from Tunisia

  • @brunofrancos193
    @brunofrancos193 11 หลายเดือนก่อน

    thanks

    • @cissie0202
      @cissie0202 11 หลายเดือนก่อน

      Can you run the script sucessfully? My csv is the blank, I do not the reason, would you mind to help me?

  • @dbeatricekiddo
    @dbeatricekiddo ปีที่แล้ว

    <Response [403]>...

    • @Uppercut_YT
      @Uppercut_YT 11 หลายเดือนก่อน

      yup mean blocked

    • @robertdiv-zu5fz
      @robertdiv-zu5fz 11 หลายเดือนก่อน

      im also getting response [403]@@Uppercut_YT

    • @robertdiv-zu5fz
      @robertdiv-zu5fz 11 หลายเดือนก่อน

      how can i go around that kindly?@@Uppercut_YT

  • @saidulmolla3477
    @saidulmolla3477 ปีที่แล้ว

    This code is not working. I am getting an error.

  • @annamonso1937
    @annamonso1937 ปีที่แล้ว

    I think that is no longer working. I am doing the exact same thing as you, and it is not working for me, it appears a 403 error.

  • @Doug-Didgiridoo
    @Doug-Didgiridoo ปีที่แล้ว

    thanks, very useful

  • @kingnate2653
    @kingnate2653 ปีที่แล้ว

    can someone please help me figure out how to do all this but for macOS system, I currently cant use the same import