Prodigy version display/retrieval

As far as I understand/see, the prodigy version is only displayed in the user interface.
That would be nice that prodigy displays its version number when starting it or adding a --version option or maybe I missed a way to retrieve it from the python command line.

Hi! prodigy stats will display the version number (alongside some other stats). If you just want the version string, you could also run:

python -c "import prodigy;print(prodigy.__version__)"

Or you could of course access prodigy.__version__ in Python directly. If the server is running, a GET request to /project endpoint will also get you all details of the current instance, including the Prodigy version (that's also what's used internally to display the version number in the UI).

1 Like