diff --git a/.github/workflows/1-fetch.yml b/.github/workflows/1-fetch.yml index 86590b0f..ca0fba26 100644 --- a/.github/workflows/1-fetch.yml +++ b/.github/workflows/1-fetch.yml @@ -51,7 +51,7 @@ jobs: # # For now, data is fetched manually :/ - # Fetch from Europeana disabled due to being considered incomplete + # Fetch from Europeana disabled due API limitations # https://github.com/creativecommons/quantifying/issues/224 # Fetch from GCS disabled due to Google blocking GitHub Action runners @@ -75,8 +75,8 @@ jobs: env: GH_TOKEN: ${{ secrets.BOT_TOKEN }} - # Fetch from Openverse disabled due to limitations of anonymous API - # access + # Fetch from Openverse disabled due to API limitations + # https://github.com/creativecommons/quantifying/issues/184 - name: Fetch from Smithsonian run: | diff --git a/scripts/1-fetch/europeana_fetch.py b/scripts/1-fetch/europeana_fetch.py.disabled old mode 100755 new mode 100644 similarity index 99% rename from scripts/1-fetch/europeana_fetch.py rename to scripts/1-fetch/europeana_fetch.py.disabled index 2451f4ba..40a0e5aa --- a/scripts/1-fetch/europeana_fetch.py +++ b/scripts/1-fetch/europeana_fetch.py.disabled @@ -1,5 +1,9 @@ #!/usr/bin/env python """ +DISABLED: + Fetch from Europeana disabled due API limitations + https://github.com/creativecommons/quantifying/issues/224 + Fetch high-level Europeana statistics for Quantifying the Commons. Generates two datasets: 1) Without themes (aggregated by DATA_PROVIDER, LEGAL_TOOL) diff --git a/scripts/1-fetch/openverse_fetch.py b/scripts/1-fetch/openverse_fetch.py.disabled old mode 100755 new mode 100644 similarity index 96% rename from scripts/1-fetch/openverse_fetch.py rename to scripts/1-fetch/openverse_fetch.py.disabled index 2285ba9c..86c0d29e --- a/scripts/1-fetch/openverse_fetch.py +++ b/scripts/1-fetch/openverse_fetch.py.disabled @@ -1,14 +1,10 @@ #!/usr/bin/env python """ -Fetch CC Legal Tool usage from Openverse API. +DISABLED: + Fetch from Openverse disabled due to API limitations + https://github.com/creativecommons/quantifying/issues/184 -Note: - Because anonymous Openverse API access - returns a maximum of ~240 result count - per source-license combination, this - script currently provides approximate counts. - It does not include pagination or license_version - breakdown. +Fetch CC Legal Tool usage from Openverse API. """ # Standard library