The GUI JSON Validator is a simple tool that allows you to validate JSON strings using a graphical user interface. It consists of two components: a JSON lexer and parser and a graphical interface for user interaction.
-
JSON Lexer and Parser:
- The
json_parser
module provides a JSON lexer and parser. - It can be used independently for programmatic JSON validation.
- The
-
GUI JSON Validator:
- The
JSONValidator
class provides a graphical user interface for JSON validation. - Run the
JSONValidator
class from the provided script to launch the GUI. - Input your JSON string in the text box and click the "Validate" button.
- The result will be displayed in the information label.
- The
- The
json_parser
module is required for JSON parsing.