-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathnews_keywords.py
70 lines (70 loc) · 3.96 KB
/
news_keywords.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
TARGET_KEYWORDS = {
'open': [('911_Memorial_Museum_2012.9.11', '9/11 Memorial Museum Controversy', 0),
('Abortion_Ban_2021.12.11', 'Texas ban abortions', 1),
('Apple_2024.6.5', "Apple's pivotal product announcements", 2),
('Astronauts_Stuck_2024.9.10', 'Astronauts stuck in space', 3),
('BP_Oil_Spill_2010.7.29', 'BP oil spill', 4),
('Banking_Crisis_2023.5.1', '2023 Banking Crisis', 5),
('Biden-Xi_Summit_2023.11.14', 'Biden-Xi summit', 6),
('Biden_Classified_Documents_2023.1.22', "Biden classified documents incident", 7),
('Biden_Election_Withdraw_2024.7.21', 'Biden Withdraw from President Election', 8),
('Boeing_737_Max_2024.7.8', 'Boeing 737 Max', 9),
('Boris_Johnson_2022.7.7', "Boris Johnson's Career", 10),
('Brexit_2020.12.24', "Brexit", 11),
('British_Royal_2024.6.15', 'British Royal events as Kate appears in public', 12),
('Earthquake_2023.2.6', 'Strongest Earthquakes over last 20 years', 13),
('FTX_Collapse_2024.5.9', 'FTX Collapse', 14),
('Ferguson_Unrest_2014.8.20', 'Ferguson Unrest', 15),
('George_Floyd_2022.2.22', "George Floyd's arrest and murder", 16),
('Gilgo_Beach_Killings_2024.1.17', 'Gilgo Beach killings', 17),
('Greek_Debt_Crisis_2015.6.25', 'Greek Debt Crisis', 18),
('Grenfell_Tower_Fire_2024.9.4', 'Grenfell Tower Fire', 19),
('Hillsborough_Disaster_2024.4.15', 'Hillsborough disaster', 20),
('Huw_Edwards_Scandal_2024.8.9', 'Huw Edwards Scandal', 21),
('Iran-Iraq_2010.2.14', 'Iran-Iraq War', 22),
('Iran-Israel_2024.4.14', '2024 Iran-Israel Conflict', 23),
('Iraq_War_2023.3.7', 'Iraq War', 24),
('Islamic_State_2019.10.27', 'Islamic State', 25),
('Ja_Morant_2023.6.16', "Ja Morant's Career", 26),
('Ken_Paxton_Impeachment_2023.5.30', 'Impeachment of Ken Paxton', 27),
('King_Charles_Health_2024.2.11', 'King Charles Health Issue', 28),
('Kobe_Helicopter_2020.2.24', 'Kobe Bryant helicopter crash', 29),
('MH370_Search_2024.3.5', 'The search for MH370', 30),
('Matthew_Perry_Death_2024.8.16', "Matthew Perry Death", 31),
('Messi_Inter_Miami_2023.7.16', 'Inter Miami sign Lionel Messi', 32),
('NBA_Leading_Scorers_2023.2.8', 'NBA all-time leading scorers', 33),
('Pakistan_Parliamentary_Election_2024.2.8', "Pakistan's parliamentary election", 34),
('Petraeus_Scandal_2015.4.23', 'Petraeus-Broadwell Scandal', 35),
('Pope_Benedict_XVI_2023.1.2', 'Pope Emeritus Benedict XVI', 36),
('Russian-Ukraine_2023.2.19', 'Russian Ukraine Crisis', 37),
('Rwanda_Plan_2024.4.22', "Rwanda plan", 38),
('SNP_2024.6.18', 'SNP finances controversy', 39),
('Taliban_2024.8.14', 'Taliban returned to power', 40),
('Trump_Hush_Money_Trial_2024.5.13', "Trump's Hush Money Trial", 41),
('Trump_Indictment_2023.8.15', "Donald Trump's indictment in Georgia", 42),
('Trump_Ukraine_2019.10.5', 'Donald Trump and Ukraine', 43),
('Turkey_Attacks_2016.2.17', 'Turkey attacks', 44),
('Twitter_Acquisition_2022.10.28', 'Acquisition of Twitter', 45),
('Tyre_Nichols_2023.1.28', "Tyre Nichols' arrest", 46),
('U.S.-Iran_2023.9.16', 'U.S.-Iran Relations', 47),
('U.S.-Syria_2017.4.7', "U.S. Response to Syria's Civil War", 48),
('Ukraine_2022.2.22', 'Post-Independence Ukraine', 49)
],
't17': [
('bpoil', 'bp oil spill', 0),
('egypt', 'egyptian crisis', 1),
('finan', 'financial economic crisis', 2),
('h1n1', 'h1n1 swine flu', 3),
('haiti', 'haiti earthquake', 4),
('iraq', 'iraq war', 5),
('libya', 'libyan crisis', 6),
('mj', 'michael jackson death', 7),
('syria', 'syrian crisis', 8),
],
'crisis': [
('egypt', 'egypt crisis', 0),
('libya', 'libya crisis', 1),
('syria', 'syria crisis', 2),
('yemen', 'yemen crisis', 3),
]
}