]> code.communitydata.science - rises_declines_wikia_code.git/blob - mediawiki_dump_tools/Mediawiki-Utilities/mw/lib/persistence/__init__.py
Initial commit
[rises_declines_wikia_code.git] / mediawiki_dump_tools / Mediawiki-Utilities / mw / lib / persistence / __init__.py
1 """
2 A package with utilities for managing the persistent word analysis across text
3 versions of a document.  `PersistenceState` is the highest level of the
4 interface and the part of the system that's most interesting externally.  `Word`s
5 are also very important.  The current implementation of `Word` only accounts for
6 how the number of revisions in which a Word is visible.  If persistent word
7 views (or something similar) is intended to be kept, refactoring will be
8 necessary.
9 """
10
11 from .state import State
12 from .tokens import Tokens, Token
13 from . import defaults
14 from . import api

Community Data Science Collective || Want to submit a patch?