Spaces:
Running
Running
Update trend_crawl.py
Browse files- trend_crawl.py +10 -10
trend_crawl.py
CHANGED
@@ -23,12 +23,12 @@ TREND_TOPICS = {
|
|
23 |
18: "Technology",
|
24 |
19: "Travel and Transportation"
|
25 |
}
|
26 |
-
|
27 |
|
28 |
def get_trends_base():
|
29 |
return Trends()
|
30 |
def process_trends_for_country(country_code, trends_list, tr):
|
31 |
-
|
32 |
if country_code not in trends_json:
|
33 |
trends_json[country_code] = {"All categories" : {}}
|
34 |
|
@@ -71,19 +71,19 @@ def process_trends_for_country(country_code, trends_list, tr):
|
|
71 |
"searchQueries": trend.volume,
|
72 |
"articles": articles,
|
73 |
}
|
|
|
74 |
|
75 |
def convert_to_datetime( raw_time):
|
76 |
"""Converts time in seconds to a datetime object with UTC timezone, if it exists."""
|
77 |
return datetime.fromtimestamp(raw_time, tz=timezone.utc) if raw_time else None
|
78 |
|
79 |
-
def get_trends(
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
print(trends)
|
87 |
return trends_json
|
88 |
|
89 |
|
|
|
23 |
18: "Technology",
|
24 |
19: "Travel and Transportation"
|
25 |
}
|
26 |
+
|
27 |
|
28 |
def get_trends_base():
|
29 |
return Trends()
|
30 |
def process_trends_for_country(country_code, trends_list, tr):
|
31 |
+
trends_json = {}
|
32 |
if country_code not in trends_json:
|
33 |
trends_json[country_code] = {"All categories" : {}}
|
34 |
|
|
|
71 |
"searchQueries": trend.volume,
|
72 |
"articles": articles,
|
73 |
}
|
74 |
+
return trends_json
|
75 |
|
76 |
def convert_to_datetime( raw_time):
|
77 |
"""Converts time in seconds to a datetime object with UTC timezone, if it exists."""
|
78 |
return datetime.fromtimestamp(raw_time, tz=timezone.utc) if raw_time else None
|
79 |
|
80 |
+
def get_trends(country):
|
81 |
+
tr = get_trends_base()
|
82 |
+
trends = tr.trending_now(geo=country)
|
83 |
+
|
84 |
+
trends_json = process_trends_for_country(country, trends, tr)
|
85 |
+
all_categories = trends_json[country]["All categories"]
|
86 |
+
print(trends)
|
|
|
87 |
return trends_json
|
88 |
|
89 |
|