You have stated you are using PyGraphics - it states that load_image returns a PIL image object.
PyGraphics doesn't appear to offer the functionality of flipping, so just do it with PIL, specifically transpose
from PyGraphics import picture
flipped = picture.load_image("blah.jpg").transpose(Image.FLIP_LEFT_RIGHT)