You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by yh...@apache.org on 2023/10/22 21:35:20 UTC

[beam] branch master updated: Update beam-sql-with-notebooks.md with working API link (#29095)

This is an automated email from the ASF dual-hosted git repository.

yhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 4b2aab56f0f Update beam-sql-with-notebooks.md with working API link (#29095)
4b2aab56f0f is described below

commit 4b2aab56f0f225bbd92e4ced9f157c840782ef1d
Author: illoise <39...@users.noreply.github.com>
AuthorDate: Sun Oct 22 17:35:14 2023 -0400

    Update beam-sql-with-notebooks.md with working API link (#29095)
    
    The provided API to fetch covid data from has changed to:
    https://api.covidtracking.com/v1/states/current.json
---
 website/www/site/content/en/blog/beam-sql-with-notebooks.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/www/site/content/en/blog/beam-sql-with-notebooks.md b/website/www/site/content/en/blog/beam-sql-with-notebooks.md
index 4f7c428613a..d7d80f4db7f 100644
--- a/website/www/site/content/en/blog/beam-sql-with-notebooks.md
+++ b/website/www/site/content/en/blog/beam-sql-with-notebooks.md
@@ -420,7 +420,7 @@ import json
 import requests
 
 # The covidtracking project has stopped collecting new data, current data ends on 2021-03-07
-json_current='https://covidtracking.com/api/v1/states/current.json'
+json_current='https://api.covidtracking.com/v1/states/current.json'
 
 def get_json_data(url):
   with requests.Session() as session: