texthero.preprocessing.has_content¶ has_content(s: pandas.core.series.Series)¶ Return a Boolean Pandas Series indicating if the rows has content. Examples >>> s = pd.Series(["content", np.nan, "\t\n", " "]) >>> has_content(s) 0 True 1 False 2 False 3 False dtype: bool