Example #1
0
def flask_start_extraction(wiki_text):
    e = Event()
    e.text = wiki_text
    e.text = remove_references(e.text)
    return e.start_extraction()
Example #2
0
def flask_start_extraction(wiki_text):
    e = Event()
    e.text = wiki_text
    e.text = remove_references(e.text)
    return e.start_extraction()
Example #3
0
def test_start_extraction():
    e = Event()
    e.read_file("test/test_articles/random_test.txt")
    e.text = remove_references(e.text)
    e.start_extraction()
Example #4
0
def test_start_extraction():
    e = Event()
    e.read_file("test/test_articles/random_test.txt")
    e.text = remove_references(e.text)
    e.start_extraction()