Reading Parameter Values using CPython3

I’m looking for a way to read out Parametervalues using CPython3 in Revit.
Some context:
I have been making a lot of Dynamo graphs more efficient recently by relying more on Python (one of them lost like 90% of its running time).
Having to deal with several versions of Revit I tend to work from the oldest version we have in use and then update them later.
Now with Revit 2022 there seems to be a transition from IronPython2 towards CPython3, one that looks like it will become permanent eventually.
Converting Python scripts have generally been no issue (usually nothing needed to be changed as it was primarily list logic). However, when trying to read out parameter values I’m getting no returns. While only a small part of my entire graph, a lot of time has been saved by doing these readings via Python (primarily because it’s a lot easier sometimes not to read them).
IronPython2 works fine for now, but I’d prefer to get everything ready for CPython3.
Thanks in advance.