PyScript - A Game Changer For Your Browser

Execute Python right in your Browser!

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
<!--Load PyScript, Pyodide, Micropip and Python packages-->
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
<py-env>
  - pandas
</py-env>

<!-- Write your Python code! -->
<py-script>
import pandas as pd 
from pyodide.http import open_url

df = pd.read_csv(open_url("/downloads/iris.csv"))
df
</py-script>

HDMI Remote Screen Control

Keyboard

Control all functions of your external monitor with a click on your (wireless) keyboard! Lower brightness, switch input, raise contrast or switch power modes with Python and Monitorcontrol.

1
2
3
4
from monitorcontrol import get_monitors
for monitor in get_monitors():
    with monitor:
        monitor.set_luminance(30)