Module media_analyzer.analyzers.lang_detect
Expand source code
from langdetect import detect
class LangModule:
"""An object used to determine the language of given content."""
@classmethod
def generate_result(cls, content=None):
"""Returns language of given content."""
try:
result = detect(content)
except Exception:
result = "error" # language not detected
return result
Classes
class LangModule
-
An object used to determine the language of given content.
Expand source code
class LangModule: """An object used to determine the language of given content.""" @classmethod def generate_result(cls, content=None): """Returns language of given content.""" try: result = detect(content) except Exception: result = "error" # language not detected return result
Static methods
def generate_result(content=None)
-
Returns language of given content.
Expand source code
@classmethod def generate_result(cls, content=None): """Returns language of given content.""" try: result = detect(content) except Exception: result = "error" # language not detected return result