This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse # To read the word we want to parse from stdin | |
# An error we will throw when a parse error occurs | |
class ParseError(Exception): | |
pass | |
# The meat and potatoes | |
class Parser(): | |
def __init__(self, string): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
absl-py==1.0.0 | |
aiohttp==3.7.0 | |
aiohttp-cors==0.7.0 | |
aioredis==1.3.1 | |
aiosignal==1.2.0 | |
alembic==1.7.5 | |
antlr4-python3-runtime==4.8 | |
anyio==3.4.0 | |
argon2-cffi==21.1.0 | |
async-timeout==3.0.1 |