Automate Excel Spreadsheet with Python

    10
    18



    In this Python tutorial, I will be covering how to automate Excel spreadsheets using win32com (pywin32) library in Python.

    Things I will be covering in this tutorial:
    1. Create a new Excel spreadsheet
    2. Write/Read data from an Excel spreadsheet
    3. Save the Excel file

    Buy Me a Coffee? Your support is much appreciated!
    —————————————————————————————————————-
    PayPal Me: https://www.paypal.me/jiejenn/5
    Venmo: @Jie-Jenn

    To install win32com library: pip install pywin32

    # why win32com?
    As a Windows user myself, the win32com library provides me with the flexibility to communicate multiple applications and integrate them with ease. Especially, I can control the applications while the applications are open. The other advantage win32com has over other Excel Python libraries is that, using win32com to link to an COM object application, I will have access to the entire object models vs other Excel Python libraries will only have a limited features available.

    ## win32com (pywin32)
    A Python extension for Microsoft Windows provides access to the Win32 API. Using Win32 API, we will be able to create and use COM objects to automate applications such as Microsoft Excel, Outlook, Word, Access, PowerPoint, or event Photoshop. On top that, we will be able to automate a wide range of features on Windows.

    Support my channel so I can continue making free contents
    —————————————————————————————————————
    Patreon: https://www.patreon.com/JieJenn

    By shopping on Amazon → https://amzn.to/2JkGeMD
    More tutorial videos on my website → https://LearnDataAnalysis.org
    Business Inquiring: [email protected]

    Tags:
    #Excel #Python #win32com

    source

    Previous article[Business Analyst] Nghề BA có phải dành cho bẔn?
    Next articleComplete Master Class on AWS S3 from 0 to Hero python Boto3

    18 COMMENTS

    1. At work I have all these different excel spreadsheets I need scan through for information. I want to create a prompt that ask for the name of the user and scans through these excel spreadsheets n then shows me predetermined useful information I would need.. is this possible with python?