Oleh
Oleh
First of all, I want to thank you for this repository with well-written documentation. But trying to reproduce your results, wanted to share some feedback on how it could be...
## Steps ```py from redditscore.tokenizer import CrazyTokenizer tokenizer = CrazyTokenizer(hashtags='split') tokenizer.tokenize("#20yearsago") ``` ## Actual Result ```py ['2', '0', 'y', 'e', 'a', 'r', 's', 'a', 'g', 'o'] ``` ## Expected Result...
## Installation ```sh pip install git+https://github.com/crazyfrogspb/RedditScore.git ``` ## Steps to reproduce ```py from redditscore.tokenizer import CrazyTokenizer tokenizer = CrazyTokenizer(hashtags=False) text = "Let's #makeamericagreatagain#americafirst" print(tokenizer.tokenize(text)) ``` ## Expected output ```py ["let's",...
If you want to give just a short feedback, post a comment on this issue. That will help me to know what works good and what may be better or...
Think about the design choices of how to make the library easily extendable. For example, make the query to accept as an argument list of function to process text and...