def get()

in etl/glean.py [0:0]


    def get(self, url: str):
        if self.cached_responses.get(url):
            return self.cached_responses[url]

        # pass a parameter to bypass any caching, which might give us stale
        # data (probeinfo.telemetry.mozilla.org is currently using cloudfront)
        resp = requests.get(url + f"?t={datetime.utcnow().isoformat()}")
        self.cached_responses[url] = resp
        return resp