Getting started:
User manual
About
from abc import ABC [docs]class BaseText(ABC): """ Base class for text algorithms.""" def __init__(self): pass