Python 3

The API to control the Nova device, does it support python 3?

Python 3 is not supported but is on our roadmap.

In the meantime you could use python’s subprocess library as a hack to use our CLI with Python3. subprocess — Subprocess management — Python 3.11.1 documentation

An example would be:

from subprocess import run
run(["sudo", "hologram", "send", "HelloWorld"])

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.