Metadata-Version: 2.1
Name: pygiftparserrgmf
Version: 0.0.2
Summary: Moodle GIFT files parser
Home-page: https://github.com/rgmf/pygiftparser
Author: Román Ginés Martínez Ferrández
Author-email: rgmf@riseup.net
License: UNKNOWN
Description: # Python Moodle GIFT parser
        Python Moodle GIFT parser is a parser for GIFT files: https://docs.moodle.org/38/en/GIFT_format
        
        The program consist in two parts: `parser.py` with lex/yacc and `gift.py` with classes where parser results will saved. The class `Gift` will contain all questions and every `Question` will have an answer (there are several types of answers - read the Moodle GIFT documentation).
        
        # How to run (use) the parser
        There is an `example.py` script python with an example. This script expect a file and parse it. After that it prints the object `Gift` with all information catched by the parser.
        
        # Hot to test the parser
        Inside `tests` folder there are several tests. You can run all of them executing the command `python -m unittest discover -v -s tests/`.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.8
Description-Content-Type: text/markdown
