Ben

Results 136 comments of Ben

hey @btwiningfc 👋 Given that this can be a result of too fast concurrent requests, I'd take it as a compliment for Tegola and the upgrade. 😄 Maybe it's worth...

@reach4bawer That's because technically `keyword_processor.add_keyword('+', '')` means replace `+` with `None`. See: ```python bool("") >> False ``` This means if we go down that rabbit hole and check out ```python...

I don't think this helps flashtexts intended use. Removing word boundaries entirely will only result in "words found in words" kind of results. As seen here: ```python from flashtext import...

@AlpUygur this does only happen when the "c" in "cam" for whatever reason is not part of the non_word_boundaries. Depending on the character script of your input text, this can...

Can’t be bothered. Re-read my last comment and read up on how flashtext treats word boundaries.

@AlpUygur Just my luck then I guess. :P ```python keyword_processor = KeywordProcessor() keyword_processor.add_keyword_from_file(r"badwords.txt", encoding="utf-8") text = "akşamüzeri" keyword_processor.extract_keywords(text) >> ["am"] ``` changing non word boundaries ```python keyword_processor = KeywordProcessor() keyword_processor.add_keyword_from_file(r"badwords.txt",...

@tidwall always up to you. users can always use third party libraries to create objects of all kinds. now I remember that we had a similar slack thread about buffers...

I was able to make it work using an empty TLS config. Provided your broker has a common certificate from e.g. Lets Encrypt and your systems certificates are up to...

Hey a log-all-requests flag is a red flag for me. If anything this is trace log level. What's your use case for it? I'm wondering why you think this is...