Add1E commited on
Commit
f9e4b54
·
verified ·
1 Parent(s): 5d57621

Update trend_crawl.py

Browse files
Files changed (1) hide show
  1. 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
- trends_json = {}
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(countries: list):
80
- for country in countries:
81
- tr = get_trends_base()
82
- trends = tr.trending_now(geo=country)
83
-
84
- process_trends_for_country(country, trends, tr)
85
- all_categories = trends_json[country]["All categories"]
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