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]:
In [9]:
pipeline = fc.my_pipeline
In [10]:
help(pipeline)
In [ ]: