# Shows a Mendeleev's Periodic Table with additional properties

from jehep.utils.ptable import Jptapp
from javax.swing import JFrame
ut = Jptapp()
f = JFrame()
f.add(ut)
ut.init()
f.setSize(650,660)
f.setVisible(True)


