Skip to main content

PyQt regex editor

Project description

About

QRegexEditor is a simple regular expression editor written in Python and PyQt.

You can use QRegexEditor as a standalone application but also as a widget in your own PyQt/PySide application.

The tool has been inspired by:

Installation

First install the package from pypi:

pip install qregexeditor --upgrade

Then you can run the application:

QRegexEditor

Dependencies

  • python (2.7 or >= 3.2)

  • PyQt5 or PySide or PyQt4

Using the widget in a custom PyQt application

Use the widget as any other qt widget.

You may specify the regular expression and the string pattern programmatically. You might also want to connect to the quick_ref_requested signal so that your application can show/hide a quick reference widget in the most appropriate place.

"""
This example show you how to use the widget in a custom application.
"""
import sys
from PyQt5.QtWidgets import QApplication, QMainWindow
# if you use PyQt4 or PySide, you must set the QT_API environment variable
# to select the proper bindings, see
# https://github.com/pyQode/pyQode/wiki/Getting-started#qt-bindings-selection
from qregexeditor.api import RegexEditorWidget, QuickRefWidget


app = QApplication(sys.argv)
window = QMainWindow()
editor = RegexEditorWidget()
quick_ref = QuickRefWidget()
quick_ref.hide()
window.setCentralWidget(editor)
# show/hide quick reference widget
editor.quick_ref_requested.connect(quick_ref.setVisible)
window.show()
app.exec_()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

QRegexEditor-0.5.3.zip (84.8 kB view hashes)

Uploaded Source

Built Distribution

QRegexEditor-0.5.3-py2.py3-none-any.whl (52.5 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page