Closed Technik-Tueftler closed 3 months ago
Create a Blacklist for hashtags which are not allowed on stream
Build a string with all blacklist hashtags and check new hashtags
blacklist = "#dasnicht#unddasauchnicht#" check = "#dasnich#" if check in blacklist: print("Hashtag nicht erlaubt") else: print("Hashtag ist erlaubt")
What
Create a Blacklist for hashtags which are not allowed on stream
Idea
Build a string with all blacklist hashtags and check new hashtags
ToDo