Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > ecc026b61096e2959ba01e3826059e7c > files > 36

ipython-doc-7.2.0-3.mga7.noarch.rpm

#!/usr/bin/env python
"""Simple pyglet example to manually test event loop integration.

This is meant to run tests manually in ipython as:

In [5]: %gui pyglet

In [6]: %run gui-pyglet.py
"""

import pyglet


window = pyglet.window.Window()
label = pyglet.text.Label('Hello, world',
                          font_name='Times New Roman',
                          font_size=36,
                          x=window.width//2, y=window.height//2,
                          anchor_x='center', anchor_y='center')
@window.event
def on_close():
    window.close()

@window.event
def on_draw():
    window.clear()
    label.draw()

try:
    from IPython.lib.inputhook import enable_gui
    enable_gui('pyglet')
except ImportError:
    pyglet.app.run()