Brand new module (pymatgen.matproj.rest) for interfacing with the MaterialsProject REST interface.
Useful aliases for commonly used Objects, similar in style to numpy. Supported objects include Element, Composition, Structure, Molecule, Spin and Orbital. For example, the following will now work:
import pymatgen as mg
# Elemental Si
fe = mg.Element("Si")
# Composition of Fe2O3
comp = mg.Composition("Fe2O3")
# CsCl structure
structure = mg.Structure(mg.Lattice.cubic(4.2), ["Cs", "Cl"],
[[0, 0, 0], [0.5, 0.5, 0.5]])
New PDAnalyzer method to generate chemical potential maps.
Enhanced POSCAR class to support parsing of velocities and more formatting options.
Reorganization of Bandstructure module. Beta support for projected bandstructure and eigenvalues in vaspio and electronic_structure.
Miscellaneous bug fixes and speed improvements.