mikaelg79

Results 1 comments of mikaelg79

Stripping hashtags and spacer lines would be as simple as changing ``` caption_text = caption.text().strip() ``` into ``` caption_text = caption.text().strip() caption_text = re.sub("#\w+", "", caption_text) caption_text = re.sub("(?m)^\W+$", "",...