Working on #1 - FDA import process works. 3 hours for first import, 1.25 hours on subsequent updates.

This commit is contained in:
2013-10-27 18:33:30 -04:00
parent e2bc602264
commit e0232aa02d
13 changed files with 575 additions and 71 deletions

10
scripts/mercy-import-fda Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python
import sys
import mercy.importers.fda
startIdx = 0
if ( len(sys.argv) >= 3 ):
startIdx = int(sys.argv[2])
sys.exit(mercy.importers.fda.FDAImporter().read(sys.argv[1], startIdx=startIdx))