In [4]:
import os
import sys
sys.path.append(os.path.join(os.getcwd(),'..'))
import fcFinder as fc
import helpers
import rules
import io

In [8]:
DATADIR = '/Users/alec/Desktop/fcfinder_apr21'
file = os.path.join(DATADIR, 'corpus', 'Yes_74976_148937_02-28-66.txt')
outdir = os.path.join(DATADIR,'saved')
with open(file,'r') as f:
    report = f.read()


Out[8]:
True

In [9]:
pipeline = fc.my_pipeline

In [10]:
help(pipeline)


Help on function my_pipeline in module fcFinder:

my_pipeline(report, preprocess=<function <lambda> at 0x10908cea0>, splitter=<function my_sentence_splitter at 0x109042bf8>)


In [ ]: