Made with Python3
(C) @FayasNoushad
Copyright permission under MIT License
License -> https://github.com/FayasNoushad/Hashtags-Extract/blob/main/LICENSE

Installation

pip install Hashtags-Extract

Usage

import hashtags_extract

string = "Hello, #SupportOpensource"

# with #
print(hashtags_extract.hashtags(string))
# => ["#SupportOpensource"]

# without #
print(hashtags_extract.hashtags(string, hash=False))
# => ["SupportOpensource"]

GitHub - FayasNoushad/Hashtags-Extract at pythonawesome.com
A hashtag from string extract python module. Contribute to FayasNoushad/Hashtags-Extract development by creating an account on GitHub.