For example, the following code gives an error
pos = Vector3(1, 0, 0) x = Float(pos.x)
The error is:
(Error: Error generated by Python node.
Line 2: :: x = Float(``pos.x)``
Can only fetch attributes from graph or node objects).
It would seem like something as simple as grabbing a component of a vector could be done without getting too verbose.
(fwiw,
pos[0]
pos.x()