Software Engineering Principles in Python
Adam Spannbauer
Machine Learning Engineer at Eastman
class Document:
"""Analyze text data
:param text: text to analyze
:ivar text: text originally passed to the instance on creation
:ivar tokens: Parsed list of words from text
:ivar word_counts: Counter containing counts of hashtags used in text
"""
def __init__(self, text):
...
Software Engineering Principles in Python