I tried to use some python’s stdlib in Paraview 6.1.0, but it failed to import.
>>> import tomllib
Traceback (most recent call last):
File "<console>", line 1, in <module>
ModuleNotFoundError: No module named 'tomllib'
For example, tomllib is included in Python >= 3.11, and Paraview 6.1.0 uses Python 3.12.7
>>> import sys
>>> sys.version
'3.12.7 (tags/v3.12.7:0b05ead, Oct 1 2024, 03:06:41) [MSC v.1941 64 bit (AMD64)]'
Is that ok?
PS: others libraries seems to be ok.
>>> import os
>>> import sys
>>> import dataclasses
>>> import argparse