PyQt fill in the blanks maker
PyQt5 >= 5.8
pip3 install git+https://github.com/yjg30737/pyqt-fill-in-the-blanks-maker.git --upgrade
from PyQt5.QtWidgets import QApplication
from pyqt_fill_in_the_blanks_maker.fillInTheBlanksMaker import FillInTheBlanksMaker
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
ex = FillInTheBlanksMaker()
ex.show()
app.exec_()
Before
After
Separator is ",".
I'm working on adding hover event feature which makes blank word visible.