Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Latest commit

 

History

History
22 lines (15 loc) · 750 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 750 Bytes

zincware codecov PyPI version

ZnFrame - ASE-like Interface based on dataclasses

This package is designed for light-weight applications that require a structure for managing atomic structures. It's primary focus lies on the conversion to / from JSON, to send data around easily.

from znframe import Frame
from ase.build import molecule

frame = Frame.from_atoms(molecule("NH3"))

print(frame.to_json())

Installation

pip install znframe