jupylet icon indicating copy to clipboard operation
jupylet copied to clipboard

Python game programming in Jupyter notebooks.

Results 13 jupylet issues
Sort by recently updated
recently updated
newest added

Bumps [numpy](https://github.com/numpy/numpy) from 1.19.3 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

When I try to test the game in Jupyter (notebook or lab) I can't play the game. When I try to press the up/down keys it responds by moving up...

We can't run multiple Apps on the same notebook, right? ``` python app = App(width=700, height=400) ``` ``` python app2 = App(width=700, height=400) ```

Hi, I'd like to run an (headless) App in a separate thread. I'd like to render some shaders, and use the framebuffer into another part of my application. I tried...

For example, take this code: ```python3 #!/usr/bin/python3 import argparse from jupylet.app import App # app = App(width=512, height=512) parser = argparse.ArgumentParser(description='bla') args = parser.parse_args() ``` if I run: ```shell $...

For example, suppose you have a file `game.py` with ``` from jupylet.label import Label as Label from jupylet.app import App as App app = App(width=320, height=64) ``` sitting next to...

When run as a stand-alone script on Windows 10 (Python 3.7.9), example programs just die silently after the first jupylet import (e.g. `from jupylet.sprite import Sprite` in spaceship.py)

right in example `02-hello-jupylet`. This issue I found also in tensorflow, see [this URL](https://github.com/tensorflow/models/issues/11040), where it was successfully resolved. I think, ipyleaflet can go this way, too (using old, deprecated...

Why `sys.path.insert(0, os.path.abspath('./..'))` ?