Skip to content

Instantly share code, notes, and snippets.

View mariomeissner's full-sized avatar
💻
Building things!

Johannes Mario Meissner mariomeissner

💻
Building things!
View GitHub Profile
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
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):