Skip to content

DiddiLeija/diddiparser

Repository files navigation

DiddiParser - version 1.3

Parse DiddiScript files and run their simple syntax.

What's DiddiScript?

Refer to GRAMMAR.md to learn about the DiddiScript environment.

DiddiParser installation

DiddiParser is a pure Python package, installable from PyPI with Pip:

pip install diddiparser

Usage of DiddiParser

After installing, import the features like this examples:

Using DiddiParser on Python scripts

from diddiparser.parser import (DiddiScriptFile,
                                DiddiScriptSetup,
                                stringToScript,
                                demo)
from diddiparser import __version__, __author__

Module command-line options

We created diddiparser.main for doing this. Use it as follows:

python -m diddiparser [args]
python -m diddiparser.main [args]

Specific console script

You don't even need to call the diddiparser.main module. Just use the linked console script:

diddiparser [args]

More help is here!

Go to SECURITY.md to view the supported versions and security advisories. Read NEWS.md to view all the published versions. Or go to the related wiki to read a larger explanation of the package contents.

Want to help?

Read the contribution document to learn how to contribute to DiddiParser.

Also, you can view the standing GitHub project about DiddiParser to watch all the issues, PRs and discussions organized on the columns To Do, In progress and Done.