Skip to main content

This Python package is a magic command that executes Python code in code cells on Jupyter and Google Colab using PyScript within an iframe.

Project description

PyScript Magic Command

概要

Jypyter(notebook/lab)・VSCodeまたはGoogle ColabでコードセルのPythonコードをPyScriptを使ってiframe(ブラウザ)上で実行するマジックコマンドです。

使い方

マジックコマンドの追加

コードセルに以下のコードを貼り付けて実行しマジックコマンドを登録してください。カーネルやランタイムを再起動する度に再実行する必要があります。

%pip install -q -U pysmagic pyxelmagic
from pyxelmagic import register_pyxelmagic

register_pyxelmagic()

マジックコマンドの使い方

コードセルの冒頭に以下のようにマジックコマンドを記述してください。実行するとアウトプットにiframeが表示されてその中でコードセルのコードがPyScriptで実行されます。

%%runpyx 500 500

import pyxel

pyxel.init(160, 120)

def update():
    if pyxel.btnp(pyxel.KEY_Q):
        pyxel.quit()

def draw():
    pyxel.cls(0)
    pyxel.rect(10, 10, 20, 20, 11)

pyxel.run(update, draw)

マジックコマンド

%%runpyx

コードセルのコードをPyScriptを使ってiframe内で実行します。

%%runpyx [width] [height] [gamepad] [packages] [js_src]
  • width: iframeの幅を指定します。デフォルトは500です。
  • height: iframeの高さを指定します。デフォルトは500です。
  • gamepad: バーチャルゲームパッドを表示するか指定します。デフォルトはFalseです。
  • packages: Pyhtonのパッケージを''で囲んだ文字列のJSON配列形式で指定します。デフォルトは'[]'です。
  • js_src: 外部JavaScriptのURLを''で囲んだ文字列のJSON配列形式で指定します。デフォルトは'[]'です。

%%genpyx

セル内のPythonコードをPyScriptを用いてiframe内で実行するために生成したHTMLを表示するマジックコマンド

引数は%%runpyxと同じです。

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyxelmagic-1.0.5.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

pyxelmagic-1.0.5-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file pyxelmagic-1.0.5.tar.gz.

File metadata

  • Download URL: pyxelmagic-1.0.5.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pyxelmagic-1.0.5.tar.gz
Algorithm Hash digest
SHA256 66418bab6c8d23b8f6cc75123b9f8d667cff0910ec7542bf2c58f562053c0c8f
MD5 11ac1b34cf35733e8908d99b251182f0
BLAKE2b-256 bb8dc67278a6094435ff91a35703117d5c336c8ddf659e923b60eb73c46652d7

See more details on using hashes here.

File details

Details for the file pyxelmagic-1.0.5-py3-none-any.whl.

File metadata

  • Download URL: pyxelmagic-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 4.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pyxelmagic-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 d66a258d9df4f24f612fb58479aa53f7f38e0a27e4f9b4a3e5eda87c259f08e2
MD5 28dfc7f4c230040fe5b081e7d6dc5d52
BLAKE2b-256 ed8a05ed0bd1b07bf76ff1b78370d1d8ab8faca32a5a839b6bf48ab12ec1e725

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page