in pybulletX/body.py [0:0]
def _snake_to_camel(name): return "".join( word.title() if i > 0 else word for i, word in enumerate(name.split("_")) )