timofeysie / satisfactory

A full stack google trends image generation and post creation project using a pretrained DCGAN model
1 stars 0 forks source link

Create trends frontend lib #1

Closed timofeysie closed 3 years ago

timofeysie commented 3 years ago

The trends api returns something like this:

"default":{
  "trendingSearchesDays":[
    {
      "date":"20210804",
      "formattedDate":"Wednesday, August 4, 2021",
      "trendingSearches":[
        {
          "title":{
            "query":"Verzuz",
            "exploreLink":"/trends/explore?q=Verzuz&date=now+7-d&geo=US"
          },
          "formattedTraffic":"20K+",
          "relatedQueries":[
          ],
          "image":{
            "newsUrl":"https://www.tomsguide.com/news/how-to-watch-verzuz-the-lox-vs-dipset-on-instagram-live-and-triller",
            "source":"Tom's Guide",
            "imageUrl":"https://t0.gstatic.com/images?q=tbn:ANd9GcSO408JTF6mZnkA1xWG654XYf54lnLFdADpcy8SCxjygytBy4yQ6QyQQ3rnk5oi6UjYDGiuNvdV"
          },
          "articles":[
            {
              "title":"How to watch Verzuz: The LOX vs Dipset on Instagram Live and Triller",
              "timeAgo":"7h ago",
              "source":"Tom's Guide",
              "image":{
                "newsUrl":"https://www.tomsguide.com/news/how-to-watch-verzuz-the-lox-vs-dipset-on-instagram-live-and-triller",
                "source":"Tom's Guide",
                "imageUrl":"https://t0.gstatic.com/images?q=tbn:ANd9GcSO408JTF6mZnkA1xWG654XYf54lnLFdADpcy8SCxjygytBy4yQ6QyQQ3rnk5oi6UjYDGiuNvdV"
              },
              "url":"https://www.tomsguide.com/news/how-to-watch-verzuz-the-lox-vs-dipset-on-instagram-live-and-triller",
              "snippet":"New York will definitely in the building when we watch Verzuz: The Lox vs Dipset live stream tonight. Yes, the iconic rap groups are taking to the stage at MSG ..."
            },
            {
              "title":"The LOX announces tour with Dipset ahead of Verzuz battle",
              "timeAgo":"13h ago",
              "source":"REVOLT TV",
              "image":{
                "newsUrl":"https://www.revolt.tv/news/2021/8/3/22608261/the-lox-announces-tour-with-dipset",
                "source":"REVOLT TV",
                "imageUrl":"https://t2.gstatic.com/images?q=tbn:ANd9GcRj_marJGJ8Fs6oly4msViSHHLw4TsFZM4WLRyW5O5tMTMB3VugFfmADng1gSV-4bH4ymIjkalp"
              },
              "url":"https://www.revolt.tv/news/2021/8/3/22608261/the-lox-announces-tour-with-dipset",
              "snippet":"According to Sheek Louch, the tour is slated to start this fall."
            },
          ],
          "shareUrl":"https://trends.google.com/trends/trendingsearches/daily?geo=US&tt=Verzuz#Verzuz"
        }
      ]
    },
  ]
}
timofeysie commented 3 years ago

A TrendingSearch object would look like this:

TrendingSearch {
  title: Title;
  formattedTraffic: string;
  relatedQueries: RelatedQueries[],
  image: Image,
  articles: Article[],
  shareUrl: string
}

Title {
  query: string;
  exploreLink: string;
}