Comment on Pyjnius: Accessing Java classes from PythonComments−mahmoudimus14yThis is pretty much a perfect example of when to leverage import hooks.−tocomment14yCan you explain that a bit more?−d0mine14ySo that you could: from java.util import Stack Instead of: from jnius import autoclass Stack = autoclass('java.util.Stack') http://www.doughellmann.com/PyMOTW/sys/imports.html#custom-i...−txprogOP14ySomeone on reddit asked for it, we'll do it.
Comments
This is pretty much a perfect example of when to leverage import hooks.
Can you explain that a bit more?
So that you could:
Instead of: http://www.doughellmann.com/PyMOTW/sys/imports.html#custom-i...Someone on reddit asked for it, we'll do it.