Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Basic PyQPL Usage

When using PyQPL your primary task will be defining a 


Code Block
languagepy
themeMidnight
from pyqpl.parser import QPLParser
from pyqpl.qpl import QPLOptions


options = QPLOptions(fields='content')
parser = QPLParser(options=options)

query = parser.parse_query('This is PyQPL')