Results 5 issues of Carlos Roldán

Date extractions that contains `69/44` raise an OSError: ```python from etk.extractors.date_extractor import DateExtractor >>> de = DateExtractor() >>> de.extract("69/44") Traceback (most recent call last): File "", line 1, in File...

When running any of the examples on Python 3.8 over Windows 10, I get the same "unknown color name" error. When I run ```py from overlay import Window win =...

Hi! Thanks for your theme, I wasn't satisfied with the Monokai that is already built-in in VS Code. It lacks many colors and it's not really that helpful. While using...

This example from the [PEP 572](https://peps.python.org/pep-0572/#:~:text=partial%20sums%20in%20a%20list%20comprehension) incorrectly reports the `total` variable as unused: ```py def cumulative_sum(values): total = 0 return [total := total + v for v in values] ```

I'm on Windows 11 and I just installed the library in Python 3.11.8 doing `pip install feedsearch`. When I import it, I get the following error: ```py >>> from feedsearch...