ExToWord — Excel To Word Converter
Get Sources
Following instructions are for Linux/macOS.
To run please install python3 (https://www.python.org/downloads/) and tkinter. The latest can be installed using following command (for macOS):
brew install python-tk
or (for Ubuntu flavored Linux):
apt-get install python-tk
Then clone this repository and install required packages:
git clone https://github.com/mpkondrashin/extoword.git
cd extoword
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Run Script
Use following command to run script:
python gui.py
Build Self-contained Executable
Run following command
python build.py
This will generate extoword
executable that does not require to have python
to be installed.
Note: This feature was tested only for macOS
GUI image
Bugs
This script was not tested under Windows/Linux. Obvious incompatible spot that should be fixed is following line in config.py:
__folder = os.path.expanduser('~/Library/Application Support/ExToWord')
Though Windows icon is added to executable in build.py, this is also not tested.