Skip to main content

An efficient incremental parser for multi-choices grammars.

Project description

Multi-choices Parser

Overview

Multi-choices Parser is an pure-Python efficient incremental parser for multi-choices grammars. These grammars are composed of lists of choices, where each choice is a literal string and can possibly be empty (grammar form below). This parser is optimized for scenarios where the size of the lists of choices is very large, such as representing entities preceded by a determiner.

Here is the type of grammar handled by this parser:

start: list1 list2 ... listn
list1: choice1_1 | choice1_2 | ... | choice1_k1
list2: choice2_1 | choice2_2 | ... | choice2_k2
...
listm: choicem_1 | choicem_2 | ... | choicem_km

Installation

pip install multi-choices-parser

Features

  • Handles large lists of choices efficiently (up to millions of choices).
  • Incremental parsing.

Usage

To use the MultiChoicesParser, follow these steps:

  1. Initialize the parser with a list of choices.
  2. Use the step method to feed characters to the parser.
  3. Check the success flag to determine if the parsed string is correct after feeding the End symbol.
  4. Reset the parser state using the reset method if needed.

Example

from multi_choices_parser.parser import MultiChoicesParser, end_symb

# Define your list of choices
l = [
    ['the', 'an', "a", ""],
    ['orange', 'apple', 'banana']
]

# Initialize the parser
p = MultiChoicesParser(l)

# Parse a string (don't forget to add the End symbol)
for i, c in enumerate(tuple("apple") + (end_symb, )):
    print('Step %s' % i)
    print("Authorized characters:", sorted(p.next()))
    print('Adding character:', c)
    p.step(c)
    print("State: Finished=%s, Success=%s" % (p.finished, p.success))
    print()
Example Output
Step 0
Authorized characters: ['a', 'b', 'o', 't']
Adding character: a
State: Finished=False, Success=False

Step 1
Authorized characters: ['a', 'b', 'n', 'o', 'p']
Adding character: p
State: Finished=False, Success=False

Step 2
Authorized characters: ['p']
Adding character: p
State: Finished=False, Success=False

Step 3
Authorized characters: ['l']
Adding character: l
State: Finished=False, Success=False

Step 4
Authorized characters: ['e']
Adding character: e
State: Finished=False, Success=False

Step 5
Authorized characters: [End]
Adding character: End
State: Finished=True, Success=True

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contact

For any queries or bug reports, please open an issue on the GitHub repository :)

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

multi_choices_parser-0.9.57.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

multi_choices_parser-0.9.57-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file multi_choices_parser-0.9.57.tar.gz.

File metadata

  • Download URL: multi_choices_parser-0.9.57.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for multi_choices_parser-0.9.57.tar.gz
Algorithm Hash digest
SHA256 f4f42c4a6abbaa5a2529b976d6a4d756edb8fa422a59b98f30fd2a4331995600
MD5 9cbb1320d7ebf4ab096f0de75b2fc596
BLAKE2b-256 6955e2228a3839d46282947f4383bc0a588751b164a24c162e4642a65ffe906f

See more details on using hashes here.

File details

Details for the file multi_choices_parser-0.9.57-py3-none-any.whl.

File metadata

File hashes

Hashes for multi_choices_parser-0.9.57-py3-none-any.whl
Algorithm Hash digest
SHA256 ff58ac7c440d3129ffe89420039c4ddd6483e54b0526f68d25933e4f62d3c8d2
MD5 1087838aa6a98381595bb462f2c05189
BLAKE2b-256 4dbfe8d829acca04bc1429ca15582321c3b4702db0e071dbddcf3246f1895956

See more details on using hashes here.

Supported by

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