-
```
pip install flashtext==1.7
Collecting flashtext==1.7
Downloading flashtext-1.7.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
…
-
```
from flashtext.keyword import KeywordProcessor
keyword_processor = KeywordProcessor()
keyword_processor.add_keyword('NCR Area')
```
Can we also have a feature to remove the keyword.
```
k…
-
One big problem is still to draw texts in boards in a way which also makes Gerber export possible. So the text needs to be convertible into simple polygons.
I think the text should not be converted…
-
Thanks for open-sourcing flashtext.
I discovered a minor issue. I'm looking for genes in biological texts. I noticed that the gene **ire1** is not recognized in the following passage:
> targets…
-
example:
```
from flashtext.keyword import KeywordProcessor
keyword_processor = KeywordProcessor()
keyword_processor.add_keyword('python prog','Python')
print(keyword_processor.extract_keywords…
-
It extracts multiple terms even though it should extract only 1 longest match:
```keyword_processor = KeywordProcessor()
keyword_processor.add_keyword('spring', 'spring framework')
keyword_proces…
-
This code is actually 12x faster:
```python
import re
reg = re.compile("Big Apple|New York")
for line in big_text: # wikipedia dump
reg.findall(line)
```
-
This is very useful for livecoding with languages that allow to evaluate string selections, not just whole script files, like SuperCollider or Tidal. It allows the user (and the audience) to know if s…
-
The [Hi-ReS! Stats](https://github.com/mrdoob/Hi-ReS-Stats) repo seems to offer stats that are a little more advanced than those of the flixel debugger - specifically the MAX stat ("maxmium memory the…
-
**Originally reported by Sourceforge User: menno0**
\- trying the example from the manual i get with: flashtxt
error: no legal opcode, line 18:
flashtxt 1, "Instr 1 live"
1 syntax errors in orchestr…