File: issue_50-part2.py

package info (click to toggle)
python-pyahocorasick 1.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 748 kB
  • sloc: ansic: 4,554; python: 2,823; sh: 312; makefile: 242
file content (5 lines) | stat: -rw-r--r-- 132 bytes parent folder | download | duplicates (2)
1
2
3
4
5
from ahocorasick import Automaton
from pickle import load, dump

with open('automaton-wee.pickle', 'rb') as src:
  auto = load(src)