Panda Bullet

Like this (or look into the NodePath API)

np.setPythonTag('myAmazingClass', myRealClass)
...later...
myRealClass = np.getPythonTag('myAmazingClass')

you can store python objects in the nodepath, and retrieve them later.
Hope this helps
~powerpup118