AtomAlchemy is a Python project utilizing the Tkinter library to create an intuitive graphical user interface (GUI) for calculating the mole per gram of chemical elements or compounds. Tkinter provides the backbone for building a user-friendly interface, allowing users to input chemical formulas or element symbols effortlessly. By harnessing the power of Tkinter, AtomAlchemy enhances the user experience, offering a visually appealing and interactive platform for conducting chemical calculations. Whether for educational purposes, laboratory work, or research endeavors, AtomAlchemy's Tkinter-based interface simplifies the process of determining mole per gram values, empowering users to make informed decisions in their chemical analyses and experiments.
clone the repo
cd AtomAlchemy
# create virtual env
python -m venv myenv
# activate the environment
# Activate the virtual environment
source myenv/bin/activate # for Linux/macOS
# or
myenv\Scripts\activate # for Windows
# install dependencies
# Python requirements Python>=3.6
pip install -r requirements.txt
# run the file
python3 AtomAlchemy.py
# And enjoy!
You may fork the repo and make some changes and pull some request, dont forget to star it too!