File: issue_53.py

package info (click to toggle)
python-pyahocorasick 1.4.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 768 kB
  • sloc: ansic: 4,552; python: 2,823; sh: 312; makefile: 242
file content (11 lines) | stat: -rw-r--r-- 345 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
from ahocorasick import Automaton
auto = Automaton()
auto.add_word('wounded', 'wounded')

auto.make_automaton()

for item in auto.iter('Winning \U0001F629 so gutted, can\'t do anything for 4 weeks... Myth. #wounded'):
    print(item)

for item in auto.iter('Winning so gutted, can\'t do anything for 4 weeks... Myth. #wounded'):
    print(item)