SlideShapes items can currently be accessed by index: slide.shapes[2]
It should be possible to access them by name as well: slide.shapes['myShape']
This behavior is in accordance with the Microsoft VBA API:
From https://msdn.microsoft.com/VBA/PowerPoint-VBA/articles/shapes-object-powerpoint
Use Shapes (index), where index is the shape's name or index number, to return a single Shape object.
If there is interest, I can work on a pull request.
SlideShapes items can currently be accessed by index:
slide.shapes[2]It should be possible to access them by name as well:
slide.shapes['myShape']This behavior is in accordance with the Microsoft VBA API:
From https://msdn.microsoft.com/VBA/PowerPoint-VBA/articles/shapes-object-powerpoint
If there is interest, I can work on a pull request.