Periodic table

This method and attribute are available at the module level:

list(Element) table — read-only

The periodic table of elements. A list of Elements in atomic number order.

Element get_element (int|str which)

Returns the element with a given symbol or atomic number. Raises KeyError if the symbol or number is invalid.

whichIf int, the atomic number of an element. If str, the symbol or atomic number of an element.

class Element

A chemical element.

Message name — read-only
String official_name — read-only
String alternate_name — read-only
str symbol — read-only
int number — read-only
Series series — read-only
int group — read-only
int period — read-only
Block block — read-only
Event discovery — read-only
Message discovered_by — read-only
Message etymology — read-only
Phase phase — read-only
Float density_solid — read-only
Float density_liquid — read-only
Float density_gas — read-only
Message appearance — read-only
Float melting_point — read-only
Float boiling_point — read-only
Float fusion_heat — read-only
Float vaporization_heat — read-only
Float specific_heat — read-only
Float thermal_conductivity — read-only
Float debye_temperature — read-only
Float atomic_mass — read-only
Float atomic_volume — read-only
Float atomic_radius — read-only
Float covalent_radius — read-only
Float van_der_waals_radius — read-only
String ionic_radii — read-only
LatticeType lattice_type — read-only
Int space_group — read-only
FloatList lattice_edges — read-only
FloatList lattice_angles — read-only
Float lattice_volume — read-only
String configuration — read-only
IntList oxidation_states — read-only
Float electronegativity — read-only
Float electron_affinity — read-only
Float first_energy — read-only
ColorValue color — read-only
Message notes — read-only

The chemical properties of the element. For details, see their property definitions.

null make_entries (EntriesView view[, Category category, bool all=False])

Generates entries for all properties, or for the properties in the given category.

viewThe EntriesView to be populated.
categoryThe Category whose properties will be provided. If not given, all properties are used.
allFor C_GENERAL, controls whether the EntriesView will also receive the element's primary name, symbol, and atomic number.
Phase get_phase ([float tempK=STANDARD_TEMPERATURE])

Returns the phase of matter assumed by the element at standard pressure and a given temperature.

tempKThe temperature, in Kelvin, at which to determine phase. By default, the IUPAC standard temperature.