VerseView Song Adder

A desktop application for Windows that simplifies adding songs to your VerseView database by automatically extracting lyrics from PowerPoint files.

1. App Overview

This application is a dedicated tool for VerseView users. It automates the manual and often tedious process of adding song lyrics to the `songs.db` database. Instead of copying and pasting, users can simply select their PowerPoint files, and the app will do the heavy lifting of extracting text, formatting it correctly, and injecting it directly into the database.

The core logic is built in Python, packaged into a single, portable Windows executable with a clean graphical user interface (GUI) built with PyQt5.

2. Key Features

3. Technical Pipeline (For Developers)

The application is built on a robust Python pipeline, using several key libraries for its functionality:

4. Project Structure

/
├── main.py            # Main application logic
├── app_ico.ico
├── README.md
└── LICENSE
Yes its just a single .py file

5. Build & Dependencies

The application is designed to be a portable executable using Nuitka. The following command packages all dependencies and resources into a single `.exe` file for Windows:

python -m nuitka
>>   --standalone
>>   --onefile
>>   --enable-plugin=pyqt5
>>   --windows-disable-console
>>   --windows-icon-from-ico=C:\projets\verseviewSonginjector\app_icon.ico
>>   --windows-company-name="allanhanan"
>>   --windows-product-name="VerseView Song Adder"
>>   --windows-product-version="1.0.0"
>>   --windows-file-version="1.0.0.0"
>>   --mingw64
>>   --follow-imports
>>   --output-dir=C:\projets\verseviewSonginjector\build `
>>   C:\projets\verseviewSonginjector\main.py

This command bundles the Python script, its dependencies (`pyqt5`, `python-pptx`, etc.), and the `resources` folder containing the icon file. This makes the final `.exe` completely self-contained and portable.

6. Download & Contribute

App Screenshots

VerseView App Main Window Screenshot VerseView App File List Screenshot VerseView App Settings Dialog Screenshot

Comments