-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathQueryEventExamples.py
79 lines (61 loc) · 2.55 KB
/
QueryEventExamples.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"""
examples that show how to obtain information about an individual event
"""
from eventregistry import *
er = EventRegistry()
#
# NOTE: if you don't have access to historical data, you have to change the event URI
# to some recent event that you can access in order to run the example
#
eventUri = "eng-2940883"
# iterate over all articles that belong to a particular event with a given URI
iter = QueryEventArticlesIter(eventUri)
for art in iter.execQuery(er):
print(art)
# iterate over the articles in the event, but only return those that mention Obama in the title
iter = QueryEventArticlesIter(eventUri,
keywords = "Obama",
keywordsLoc = "title")
for art in iter.execQuery(er):
print(art)
# iterate over the articles in the event, but only select those that are in English or German language
iter = QueryEventArticlesIter(eventUri,
lang = ["eng", "deu"])
for art in iter.execQuery(er):
print(art)
# iterate over the articles in the event, but only select those that are from sources located in United States
iter = QueryEventArticlesIter(eventUri,
sourceLocationUri = er.getLocationUri("United States"))
for art in iter.execQuery(er):
print(art)
# get event info (title, summary, concepts, location, date, ...) about event with a particular uri
q = QueryEvent(eventUri)
q.setRequestedResult(RequestEventInfo(
returnInfo = ReturnInfo(conceptInfo = ConceptInfoFlags(lang = ["eng", "spa", "slv"]))))
eventRes = er.execQuery(q)
# get list of 10 articles about the event
q.setRequestedResult(RequestEventArticles(page = 1, count = 10)) # get 10 articles about the event (any language is ok) that are closest to the center of the event
eventRes = er.execQuery(q)
#
# OTHER AGGREGATES ABOUT THE EVENT
#
# get information about how reporting about the event was trending over time
q.setRequestedResult(RequestEventArticleTrend())
eventRes = er.execQuery(q)
# get the tag cloud of top words for the event
q.setRequestedResult(RequestEventKeywordAggr())
eventRes = er.execQuery(q)
# get information about the news sources that reported about the event
q.setRequestedResult(RequestEventSourceAggr())
eventRes = er.execQuery(q)
# return the
q.setRequestedResult(RequestEventSimilarEvents(
conceptInfoList=[
{"uri": er.getConceptUri("Trump"), "wgt": 100},
{"uri": er.getConceptUri("Obama"), "wgt": 100},
{"uri": er.getConceptUri("Richard Nixon"), "wgt": 30},
{"uri": er.getConceptUri("republican party"), "wgt": 30},
{"uri": er.getConceptUri("democrat party"), "wgt": 30}
]
))
eventRes = er.execQuery(q)