I'm working in Python and trying to call some Java / Scala libraries using Jython. One Scala library I'm using has singleton objects, which can be called from Java like this: (see this answer)
Person$.MODULE$
I can't do this in my code because the $ sign is a syntax error in Python:
person = Person.MODULE$.apply()
^
SyntaxError: no viable alternative at character '$'
How can I access this object from Python / Jython?