Bulk export PowerPoint notes from Word with Python | Scribe

    Bulk export PowerPoint notes from Word with Python

    information ordinal icon
    I show how to export notes from Word to PowerPoint in bulk using Python. **You don't need to know how to code, and you don't need to be a Python guru to do it!**
    1
    Make sure you have Python installed on your system. You can download it from [python.org](http://python.org)
    2
    Open Command Promt!
    3
    Install the necessary libraries using pip in your command line. Type this on the command line: [[pip install python-pptx python-docx]]
    4
    You also need to install Visual Studio Code. You can download it here: <https://code.visualstudio.com/download>
    5
    To work properly, you need to find Python in Studio Visual Code via the Extensions tab and install.
    6
    After installing Extensions, you should look for Show and Run Commands in the top bar. Then click on it and select Python:Select Interpreter.
    7
    You will also need a Word file with two columns. One contains the line number of the slide, the other the text of the note. The number of rows should be the same as the number of slides in the target file. Here in this example we only have 3 rows for the sake of the test.
    8
    You also need a PowerPoint file with the same number of slides as the number of lines of notes in the Word file.
    9
    You also need a py file containing the code. I have uploaded it here: <https://drive.google.com/file/d/1yV4UxLxoWTFlGZ4SnEtz4FYddzuwFSo6/view?usp=sharing>
    10
    I created a CODE folder and a go subfolder inside it. This is where I will be running, so the py file, PowerPoint and Word file will be placed there.
    11
    Open the py file with Visual Studio Code.
    12
    If you don't have the same folder structure as I do, you'll need to include the path to your own files in the code.
    13
    I use Total Comamder to copy the path. If you don't have it on your computer, you can install it here: <https://www.ghisler.com/>
    14
    Then go to the word file, and under Total Commander's Mark menu, select "Copy names with path to clipboard".
    15
    Then paste your path in the orange part of the code. Then do the same with the Power Point file. This should be copied into two places.
    16
    Click on the RUN Python File button in the top right corner!
    17
    And you're ready!
    18
    When you open the PowerPoint file, the notes will be there.