Metadata-Version: 1.2
Name: livelex-qt
Version: 0.2.0
Summary: The livelexqt Python module
Home-page: https://github.com/wbsoft/livelex-qt
Maintainer: Wilbert Berendsen
Maintainer-email: info@wilbertberendsen.nl
License: GPL
Description: # livelex-qt
        Small Python library to use livelex with Qt's QTextDocument
        
        This module depends on livelex.
        
        Homepage: https://github.com/wbsoft/livelex-qt
        
        
        Example:
        
        .. code:: python
        
            from PyQt5.QtWidgets import QApplication
            from PyQt5.QtGui import QTextDocument
        
            app = QApplication([])
        
            import livelexqt
            import livelex.lang.xml
        
            lexicon = livelex.lang.xml.Xml.root
            doc = QTextDocument()
            livelexqt.SyntaxHighlighter.instance(doc, lexicon)
        
            # Now the text in the document is automatically highlighted using the
            # specified root lexicon.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Text Processing
Classifier: Environment :: X11 Applications :: Qt
