Skip to content

yjg30737/pyqt-fill-in-the-blanks-maker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyqt-fill-in-the-blanks-maker

PyQt fill in the blanks maker

Requirements

PyQt5 >= 5.8

Setup

pip3 install git+https://github.com/yjg30737/pyqt-fill-in-the-blanks-maker.git --upgrade

Example

Code Sample

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_()

Result

Before

image

After

image

Separator is ",".

Note

I'm working on adding hover event feature which makes blank word visible.