This project is a fun experiment that converts words and sentences into periodic elements while keeping pronunciation as close as possible to the original. It can only work with a series of space-separated words and does not currently support punctuation, special characters, or complex formatting.
- Install Python (if you haven't already) by downloading it from python.org.
- Clone or download this repository to your local machine.
- Open a terminal or command prompt and navigate to the project directory.
- Run the
periodic_interpreter.py
script using the commandpython periodic_interpreter.py
. - Enter a sentence or a series of space-separated words to convert into periodic elements.
To build the app, you can use the pyinstaller
tool. Follow these steps:
- Install
pyinstaller
by runningpip install pyinstaller
in your terminal or command prompt. - Navigate to the project directory in your terminal or command prompt.
- Run the command
pyinstaller periodic_interpreter.spec
to build the app. - The built app will be located in a
dist
folder within the project directory.