Shows a periodic table of elements
Source code name: "periodic_table.py"
Programming language: Python
Topic: Tools/Misc
DMelt Version 1.4. Last modified: 05/12/1975. License: Free
https://datamelt.org/code/cache/periodic_table_2423.py
To run this script using the DataMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.


# 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)