Skip to main content
Question

Using Python in UniVerse

  • June 24, 2026
  • 2 replies
  • 59 views

Doc Ruckel
Forum|alt.badge.img+1

Is anyone using Python within UniVerse to format data (.xlsx) that will be used as an email attachment?

2 replies

Jonathan Smith
Forum|alt.badge.img+4

I have used Python in UniData to produce , populate and read back xlsx spreadsheets and attached them to emails. There are a couple of python packages you can use to assist with the xlsx side. It’s pretty simple.

 


Forum|alt.badge.img
  • Rocketeer
  • June 29, 2026

You can use shipped python as normal one, example:
```
LD_LIBRARY_PATH=$UVHOME/python/lib PYTHONHOME=$UVHOME/python $UVHOME/python/bin/python3 -m pip install openpyxl
```

It will install openpyxl library from pip for working with excel and it will be available for python inside universe itself. You can setup python in your system however you like.