show.py 192 B

12345678910111213
  1. """
  2. Created on Sun Jun 23 19:58:54 2013
  3. @author: pietro
  4. """
  5. import io
  6. def raw_figure(figpath):
  7. with io.OpenWrapper(figpath, mode="rb") as data:
  8. res = data.read()
  9. return res