This library is a Python client library for Miniappi app server. Read more from the Python documentation.
Install with Pip:
pip install miniappiInstall with uv:
uv add miniappifrom miniappi import App, content
app = App()
@app.on_open()
async def run_user_open():
cont = content.v0.Title(
text="Hello world!"
)
await cont.show()
app.run()Then follow the link to Miniappi server.
Read more from the Miniappi documentation.