PLIX Quickstart

PLIX Quickstart#

A minimal single-slide presentation can be created with two lines of code

from plix import Slide

Slide().text('Welcome to Plix!').show()
For presentation mode, click the square button. To add a picture to the current slide, use the img tag
from plix import Slide


Slide().text('Welcome to Plix!')
       .img('assets/logo.png',y=0.1,w=0.2).show()
Plix features several interactive data-oriented components. Here is an example for embedding plotly data
from plix import Slide
import plotly.express as px

df = px.data.iris()

fig = px.scatter(df, x="sepal_width", \
                   y="sepal_length", \
                   color="species")

Slide().plotly(fig).show()
Lastly, to compose multiple slides you can use the Presentation class
from plix import Slide,Presentation
import plotly.express as px

s1 = Slide().text('Welcome to Plix!')

df = px.data.iris()

fig = px.scatter(df, x="sepal_width", \
                   y="sepal_length", \
                   color="species")

s2 = Slide().plotly(fig)

Presentation([s1,s2]).show()
For grid mode, click the top left button.