Nostril (Nonsense String Evaluator) is a Python 3 module that infers whether a given word or text string is likely nonsense or meaningful text. It is primarily used to distinguish program identifiers from natural language. Current version 1.2.2, released 2023-12-31. Release cadence is low, with no recent updates.
pip install nostril-detectorVerified import paths — ran on the pinned version, not inferred.
Basic usage: call detect_nonsense(string) which returns True if the string is likely nonsense, False otherwise.
Use 'from nostril import detect_nonsense' after 'pip install nostril-detector'.
Remember: detect_nonsense('hello') -> False (meaningful); detect_nonsense('xzy') -> True (nonsense).Use '-V' for version, or '--version'.