Message from Python discussions
November 2018
— Actually with that, my_bool
will be a list
(beside the sintax error)
I've a thread:
def t(pubsub):which notify me about:
for msg in pubsub.listen():
print(msg)
r.config_set("notify-keyspace-events", "AKE")
after a while the thread seems gone, any ideas?
— Is it about redis notify-keyspace-events or pub.listen stop by itself after a while?
— (It's redis)
— Well is a custom filter for pytb which will enable a function if some criterias are meet
That filter has multiple arguments:
the main one is the words to which I use a if to check if the words are in the text
Now there are multiple args:
starts_with (if the text starts with a word from that list) which if is true will trigger the handler otherwhise if is false the code will just check if the list of words are in the text.)
ignore_markdown (if is set to true will check if there is a markdown text in the text and if it's True to send a False command to the handler
And ignore_html is the same as above but with html text
— The False bool will not trigger the handler so nothing is happening
— Can you share your code in hastebin or repl.it?
— Https://del.dog/elixubodih.py
— I'm still trying to figure out how to do it
— Ignore the last if
— I think that now i need something to return false if any of those are True.. maybe another if?
— I could use return False if any of these are true and not word in text?