├── .cc-metadata.yml ├── .flake8 ├── .github ├── CODEOWNERS └── workflows │ ├── 1-fetch.yml │ ├── 2-process.yml.disabled │ ├── 3-report.yml.disabled │ ├── static_analysis.yml │ └── test_scripts_help.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── data ├── 2024Q2 │ ├── 1-fetch │ │ └── gcs_fetched.csv │ ├── 3-report │ │ ├── gcs_country_report.png │ │ ├── gcs_language_report.png │ │ └── gcs_licensetype_report.png │ ├── README.md │ └── state.yaml ├── 2024Q3 │ ├── 1-fetch │ │ ├── flickr_fetched │ │ │ ├── final.csv │ │ │ ├── hs.csv │ │ │ └── rec.txt │ │ └── gcs_fetched.csv │ ├── 3-report │ │ ├── gcs_country_report.png │ │ ├── gcs_language_report.png │ │ └── gcs_licensetype_report.png │ ├── README.md │ └── state.yaml ├── 2024Q4 │ ├── 1-fetch │ │ ├── gcs_1_count.csv │ │ ├── gcs_2_count_by_language.csv │ │ ├── gcs_3_count_by_country.csv │ │ └── github_1_count.csv │ ├── 2-process │ │ ├── gcs_product_totals.csv │ │ ├── gcs_status_combined_totals.csv │ │ ├── gcs_status_latest_totals.csv │ │ ├── gcs_status_prior_totals.csv │ │ ├── gcs_status_retired_totals.csv │ │ ├── gcs_totals_by_country.csv │ │ ├── gcs_totals_by_free_cultural.csv │ │ ├── gcs_totals_by_language.csv │ │ └── gcs_totals_by_restrictions.csv │ ├── 3-report │ │ ├── gcs_countries_highest_usage_latest_tools.png │ │ ├── gcs_free_culture.png │ │ ├── gcs_languages_highest_usage_latest_tools.png │ │ ├── gcs_product_totals.png │ │ ├── gcs_status_latest_tools.png │ │ ├── gcs_status_prior_tools.png │ │ ├── gcs_status_retired_tools.png │ │ ├── gcs_tool_status.png │ │ └── github_repo_content_licenses.png │ └── README.md ├── 2025Q1 │ ├── 1-fetch │ │ ├── gcs_1_count.csv │ │ ├── gcs_2_count_by_language.csv │ │ ├── gcs_3_count_by_country.csv │ │ └── github_1_count.csv │ ├── 2-process │ │ ├── gcs_product_totals.csv │ │ ├── gcs_status_combined_totals.csv │ │ ├── gcs_status_latest_totals.csv │ │ ├── gcs_status_prior_totals.csv │ │ ├── gcs_status_retired_totals.csv │ │ ├── gcs_totals_by_country.csv │ │ ├── gcs_totals_by_free_cultural.csv │ │ ├── gcs_totals_by_language.csv │ │ └── gcs_totals_by_restrictions.csv │ ├── 3-report │ │ ├── gcs_countries_highest_usage_latest_tools.png │ │ ├── gcs_free_culture.png │ │ ├── gcs_languages_highest_usage_latest_tools.png │ │ ├── gcs_product_totals.png │ │ ├── gcs_status_latest_tools.png │ │ ├── gcs_status_prior_tools.png │ │ ├── gcs_status_retired_tools.png │ │ └── gcs_tool_status.png │ └── README.md ├── 2025Q2 │ ├── 1-fetch │ │ ├── gcs_1_count.csv │ │ ├── gcs_2_count_by_language.csv │ │ ├── gcs_3_count_by_country.csv │ │ └── github_1_count.csv │ ├── 2-process │ │ ├── gcs_product_totals.csv │ │ ├── gcs_status_combined_totals.csv │ │ ├── gcs_status_latest_totals.csv │ │ ├── gcs_status_prior_totals.csv │ │ ├── gcs_status_retired_totals.csv │ │ ├── gcs_totals_by_country.csv │ │ ├── gcs_totals_by_free_cultural.csv │ │ ├── gcs_totals_by_language.csv │ │ └── gcs_totals_by_restrictions.csv │ ├── 3-report │ │ ├── gcs_countries_highest_usage_latest_tools.png │ │ ├── gcs_free_culture.png │ │ ├── gcs_languages_highest_usage_latest_tools.png │ │ ├── gcs_product_totals.png │ │ ├── gcs_status_latest_tools.png │ │ ├── gcs_status_prior_tools.png │ │ ├── gcs_status_retired_tools.png │ │ └── gcs_tool_status.png │ └── README.md ├── 2025Q3 │ ├── 1-fetch │ │ ├── gcs_1_count.csv │ │ ├── gcs_2_count_by_language.csv │ │ ├── gcs_3_count_by_country.csv │ │ └── github_1_count.csv │ ├── 2-process │ │ ├── gcs_product_totals.csv │ │ ├── gcs_status_combined_totals.csv │ │ ├── gcs_status_latest_totals.csv │ │ ├── gcs_status_prior_totals.csv │ │ ├── gcs_status_retired_totals.csv │ │ ├── gcs_totals_by_country.csv │ │ ├── gcs_totals_by_free_cultural.csv │ │ ├── gcs_totals_by_language.csv │ │ └── gcs_totals_by_restrictions.csv │ ├── 3-report │ │ ├── gcs_countries_highest_usage_latest_tools.png │ │ ├── gcs_free_culture.png │ │ ├── gcs_languages_highest_usage_latest_tools.png │ │ ├── gcs_product_totals.png │ │ ├── gcs_status_latest_tools.png │ │ ├── gcs_status_prior_tools.png │ │ ├── gcs_status_retired_tools.png │ │ └── gcs_tool_status.png │ └── README.md ├── 2025Q4 │ └── 1-fetch │ │ ├── gcs_1_count.csv │ │ ├── gcs_2_count_by_language.csv │ │ ├── gcs_3_count_by_country.csv │ │ └── github_1_count.csv ├── gcs_country_collection.yaml ├── gcs_language_collection.yaml ├── gcs_query_plan.csv ├── legal-tool-paths.txt └── prioritized-tool-urls.txt ├── dev ├── check.sh ├── create_gcs_query_plan.py ├── prioritize_tools.py ├── reformat_collection_values_to_yaml.sh └── test_scripts_help.sh ├── env.example ├── history.md ├── pre-automation ├── README.md ├── analyze │ ├── Geomap_and_Model_building.ipynb │ ├── compare_graphs │ │ ├── licenses_location_distribution.png │ │ ├── max_views.png │ │ ├── total_usage.html │ │ └── total_usage.png │ ├── data_analysis.py │ ├── license1_translated_for_wordcloud.csv │ ├── line_graphs │ │ ├── license10_total_trend.png │ │ ├── license1_total_trend.png │ │ ├── license2_total_trend.png │ │ ├── license3_total_trend.png │ │ ├── license4_total_trend.png │ │ ├── license5_total_trend.png │ │ ├── license6_total_trend.png │ │ ├── license9_total_trend.png │ │ └── licenses_yearly_trend.png │ ├── merged_all_cleaned.csv │ └── wordCloud_plots │ │ ├── CC BY-NC-SA and BY-NC wordcloud.png │ │ ├── license1_wordCloud.png │ │ ├── license2_wordCloud.png │ │ ├── license3_wordCloud.png │ │ ├── license4_wordCloud.png │ │ ├── license5_wordCloud.png │ │ ├── license6_wordCloud.png │ │ └── license9_wordCloud.png ├── deviantart │ ├── data_deviantart_2022_10_30.csv │ └── deviantart_scratcher.py ├── education │ └── datasets │ │ └── OTL.csv ├── flickr │ ├── cleaned_hs.csv │ ├── data_cleaning.py │ ├── dataset │ │ ├── cleaned_license1.csv │ │ ├── cleaned_license10.csv │ │ ├── cleaned_license2.csv │ │ ├── cleaned_license3.csv │ │ ├── cleaned_license4.csv │ │ ├── cleaned_license5.csv │ │ ├── cleaned_license6.csv │ │ ├── cleaned_license9.csv │ │ └── license_total.csv │ ├── hs.csv │ ├── photos.json │ ├── photos.py │ ├── photos_detail.py │ └── rec.txt ├── internetarchive │ ├── data_internetarchive_2022_10_20.csv │ └── internetarchive_scratcher.py ├── legal-tool-paths.txt ├── metmuseum │ ├── data_metmuseum_2022_10_24.csv │ └── metmuseum_scratcher.py ├── quantify.py ├── sources.md ├── vimeo │ ├── data_vimeo_2022_10_29.csv │ └── vimeo_scratcher.py ├── visualization │ ├── countries_codes_and_coordinates.csv │ ├── country_alpha3.csv │ ├── diagrams │ │ ├── Diagram 10.png │ │ ├── Diagram 11A.png │ │ ├── Diagram 11B.png │ │ ├── Diagram 12.png │ │ ├── Diagram 13A.png │ │ ├── Diagram 13B.png │ │ ├── Diagram 14.png │ │ ├── Diagram 1A.png │ │ ├── Diagram 1B.png │ │ ├── Diagram 1C.png │ │ ├── Diagram 2.png │ │ ├── Diagram 3A.png │ │ ├── Diagram 3B.png │ │ ├── Diagram 3C.png │ │ ├── Diagram 3D.png │ │ ├── Diagram 4.png │ │ ├── Diagram 5.png │ │ ├── Diagram 6.png │ │ ├── Diagram 8.png │ │ ├── Diagram 9A.png │ │ ├── Diagram 9B.png │ │ └── Diagram 9C.png │ ├── flickr_licenses.xml │ └── visualization_engineering.ipynb ├── wikicommons │ ├── data_wikicommons_2022_10_21.csv │ └── wikicommons_scratcher.py └── youtube │ ├── data_youtube_2022_10_31.csv │ ├── data_youtube_time_2022_10_31.csv │ └── youtube_scratcher.py ├── pyproject.toml ├── scripts ├── 1-fetch │ ├── arxiv_fetch.py │ ├── europeana_fetch.py │ ├── gcs_fetch.py │ ├── github_fetch.py │ ├── openverse_fetch.py │ └── wikipedia_fetch.py ├── 2-process │ ├── gcs_process.py │ └── github_process.py ├── 3-report │ ├── gcs_report.py │ ├── github_report.py │ └── notes.py ├── plot.py └── shared.py └── sources.md /.cc-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.cc-metadata.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/1-fetch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.github/workflows/1-fetch.yml -------------------------------------------------------------------------------- /.github/workflows/2-process.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.github/workflows/2-process.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/3-report.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.github/workflows/3-report.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/static_analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.github/workflows/static_analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test_scripts_help.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.github/workflows/test_scripts_help.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/README.md -------------------------------------------------------------------------------- /data/2024Q2/1-fetch/gcs_fetched.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q2/1-fetch/gcs_fetched.csv -------------------------------------------------------------------------------- /data/2024Q2/3-report/gcs_country_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q2/3-report/gcs_country_report.png -------------------------------------------------------------------------------- /data/2024Q2/3-report/gcs_language_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q2/3-report/gcs_language_report.png -------------------------------------------------------------------------------- /data/2024Q2/3-report/gcs_licensetype_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q2/3-report/gcs_licensetype_report.png -------------------------------------------------------------------------------- /data/2024Q2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q2/README.md -------------------------------------------------------------------------------- /data/2024Q2/state.yaml: -------------------------------------------------------------------------------- 1 | total_records_retrieved: 273 2 | -------------------------------------------------------------------------------- /data/2024Q3/1-fetch/flickr_fetched/final.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/2024Q3/1-fetch/flickr_fetched/hs.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/2024Q3/1-fetch/flickr_fetched/rec.txt: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | -------------------------------------------------------------------------------- /data/2024Q3/1-fetch/gcs_fetched.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q3/1-fetch/gcs_fetched.csv -------------------------------------------------------------------------------- /data/2024Q3/3-report/gcs_country_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q3/3-report/gcs_country_report.png -------------------------------------------------------------------------------- /data/2024Q3/3-report/gcs_language_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q3/3-report/gcs_language_report.png -------------------------------------------------------------------------------- /data/2024Q3/3-report/gcs_licensetype_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q3/3-report/gcs_licensetype_report.png -------------------------------------------------------------------------------- /data/2024Q3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q3/README.md -------------------------------------------------------------------------------- /data/2024Q3/state.yaml: -------------------------------------------------------------------------------- 1 | total_records_retrieved: 390 2 | -------------------------------------------------------------------------------- /data/2024Q4/1-fetch/gcs_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/1-fetch/gcs_1_count.csv -------------------------------------------------------------------------------- /data/2024Q4/1-fetch/gcs_2_count_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/1-fetch/gcs_2_count_by_language.csv -------------------------------------------------------------------------------- /data/2024Q4/1-fetch/gcs_3_count_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/1-fetch/gcs_3_count_by_country.csv -------------------------------------------------------------------------------- /data/2024Q4/1-fetch/github_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/1-fetch/github_1_count.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_product_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_product_totals.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_status_combined_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_status_combined_totals.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_status_latest_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_status_latest_totals.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_status_prior_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_status_prior_totals.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_status_retired_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_status_retired_totals.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_totals_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_totals_by_country.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_totals_by_free_cultural.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_totals_by_free_cultural.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_totals_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_totals_by_language.csv -------------------------------------------------------------------------------- /data/2024Q4/2-process/gcs_totals_by_restrictions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/2-process/gcs_totals_by_restrictions.csv -------------------------------------------------------------------------------- /data/2024Q4/3-report/gcs_countries_highest_usage_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/gcs_countries_highest_usage_latest_tools.png -------------------------------------------------------------------------------- /data/2024Q4/3-report/gcs_free_culture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/gcs_free_culture.png -------------------------------------------------------------------------------- /data/2024Q4/3-report/gcs_languages_highest_usage_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/gcs_languages_highest_usage_latest_tools.png -------------------------------------------------------------------------------- /data/2024Q4/3-report/gcs_product_totals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/gcs_product_totals.png -------------------------------------------------------------------------------- /data/2024Q4/3-report/gcs_status_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/gcs_status_latest_tools.png -------------------------------------------------------------------------------- /data/2024Q4/3-report/gcs_status_prior_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/gcs_status_prior_tools.png -------------------------------------------------------------------------------- /data/2024Q4/3-report/gcs_status_retired_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/gcs_status_retired_tools.png -------------------------------------------------------------------------------- /data/2024Q4/3-report/gcs_tool_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/gcs_tool_status.png -------------------------------------------------------------------------------- /data/2024Q4/3-report/github_repo_content_licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/3-report/github_repo_content_licenses.png -------------------------------------------------------------------------------- /data/2024Q4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2024Q4/README.md -------------------------------------------------------------------------------- /data/2025Q1/1-fetch/gcs_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/1-fetch/gcs_1_count.csv -------------------------------------------------------------------------------- /data/2025Q1/1-fetch/gcs_2_count_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/1-fetch/gcs_2_count_by_language.csv -------------------------------------------------------------------------------- /data/2025Q1/1-fetch/gcs_3_count_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/1-fetch/gcs_3_count_by_country.csv -------------------------------------------------------------------------------- /data/2025Q1/1-fetch/github_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/1-fetch/github_1_count.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_product_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_product_totals.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_status_combined_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_status_combined_totals.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_status_latest_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_status_latest_totals.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_status_prior_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_status_prior_totals.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_status_retired_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_status_retired_totals.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_totals_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_totals_by_country.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_totals_by_free_cultural.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_totals_by_free_cultural.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_totals_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_totals_by_language.csv -------------------------------------------------------------------------------- /data/2025Q1/2-process/gcs_totals_by_restrictions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/2-process/gcs_totals_by_restrictions.csv -------------------------------------------------------------------------------- /data/2025Q1/3-report/gcs_countries_highest_usage_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/3-report/gcs_countries_highest_usage_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q1/3-report/gcs_free_culture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/3-report/gcs_free_culture.png -------------------------------------------------------------------------------- /data/2025Q1/3-report/gcs_languages_highest_usage_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/3-report/gcs_languages_highest_usage_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q1/3-report/gcs_product_totals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/3-report/gcs_product_totals.png -------------------------------------------------------------------------------- /data/2025Q1/3-report/gcs_status_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/3-report/gcs_status_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q1/3-report/gcs_status_prior_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/3-report/gcs_status_prior_tools.png -------------------------------------------------------------------------------- /data/2025Q1/3-report/gcs_status_retired_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/3-report/gcs_status_retired_tools.png -------------------------------------------------------------------------------- /data/2025Q1/3-report/gcs_tool_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/3-report/gcs_tool_status.png -------------------------------------------------------------------------------- /data/2025Q1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q1/README.md -------------------------------------------------------------------------------- /data/2025Q2/1-fetch/gcs_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/1-fetch/gcs_1_count.csv -------------------------------------------------------------------------------- /data/2025Q2/1-fetch/gcs_2_count_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/1-fetch/gcs_2_count_by_language.csv -------------------------------------------------------------------------------- /data/2025Q2/1-fetch/gcs_3_count_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/1-fetch/gcs_3_count_by_country.csv -------------------------------------------------------------------------------- /data/2025Q2/1-fetch/github_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/1-fetch/github_1_count.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_product_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_product_totals.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_status_combined_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_status_combined_totals.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_status_latest_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_status_latest_totals.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_status_prior_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_status_prior_totals.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_status_retired_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_status_retired_totals.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_totals_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_totals_by_country.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_totals_by_free_cultural.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_totals_by_free_cultural.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_totals_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_totals_by_language.csv -------------------------------------------------------------------------------- /data/2025Q2/2-process/gcs_totals_by_restrictions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/2-process/gcs_totals_by_restrictions.csv -------------------------------------------------------------------------------- /data/2025Q2/3-report/gcs_countries_highest_usage_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/3-report/gcs_countries_highest_usage_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q2/3-report/gcs_free_culture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/3-report/gcs_free_culture.png -------------------------------------------------------------------------------- /data/2025Q2/3-report/gcs_languages_highest_usage_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/3-report/gcs_languages_highest_usage_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q2/3-report/gcs_product_totals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/3-report/gcs_product_totals.png -------------------------------------------------------------------------------- /data/2025Q2/3-report/gcs_status_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/3-report/gcs_status_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q2/3-report/gcs_status_prior_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/3-report/gcs_status_prior_tools.png -------------------------------------------------------------------------------- /data/2025Q2/3-report/gcs_status_retired_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/3-report/gcs_status_retired_tools.png -------------------------------------------------------------------------------- /data/2025Q2/3-report/gcs_tool_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/3-report/gcs_tool_status.png -------------------------------------------------------------------------------- /data/2025Q2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q2/README.md -------------------------------------------------------------------------------- /data/2025Q3/1-fetch/gcs_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/1-fetch/gcs_1_count.csv -------------------------------------------------------------------------------- /data/2025Q3/1-fetch/gcs_2_count_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/1-fetch/gcs_2_count_by_language.csv -------------------------------------------------------------------------------- /data/2025Q3/1-fetch/gcs_3_count_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/1-fetch/gcs_3_count_by_country.csv -------------------------------------------------------------------------------- /data/2025Q3/1-fetch/github_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/1-fetch/github_1_count.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_product_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_product_totals.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_status_combined_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_status_combined_totals.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_status_latest_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_status_latest_totals.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_status_prior_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_status_prior_totals.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_status_retired_totals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_status_retired_totals.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_totals_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_totals_by_country.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_totals_by_free_cultural.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_totals_by_free_cultural.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_totals_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_totals_by_language.csv -------------------------------------------------------------------------------- /data/2025Q3/2-process/gcs_totals_by_restrictions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/2-process/gcs_totals_by_restrictions.csv -------------------------------------------------------------------------------- /data/2025Q3/3-report/gcs_countries_highest_usage_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/3-report/gcs_countries_highest_usage_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q3/3-report/gcs_free_culture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/3-report/gcs_free_culture.png -------------------------------------------------------------------------------- /data/2025Q3/3-report/gcs_languages_highest_usage_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/3-report/gcs_languages_highest_usage_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q3/3-report/gcs_product_totals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/3-report/gcs_product_totals.png -------------------------------------------------------------------------------- /data/2025Q3/3-report/gcs_status_latest_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/3-report/gcs_status_latest_tools.png -------------------------------------------------------------------------------- /data/2025Q3/3-report/gcs_status_prior_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/3-report/gcs_status_prior_tools.png -------------------------------------------------------------------------------- /data/2025Q3/3-report/gcs_status_retired_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/3-report/gcs_status_retired_tools.png -------------------------------------------------------------------------------- /data/2025Q3/3-report/gcs_tool_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/3-report/gcs_tool_status.png -------------------------------------------------------------------------------- /data/2025Q3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q3/README.md -------------------------------------------------------------------------------- /data/2025Q4/1-fetch/gcs_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q4/1-fetch/gcs_1_count.csv -------------------------------------------------------------------------------- /data/2025Q4/1-fetch/gcs_2_count_by_language.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q4/1-fetch/gcs_2_count_by_language.csv -------------------------------------------------------------------------------- /data/2025Q4/1-fetch/gcs_3_count_by_country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q4/1-fetch/gcs_3_count_by_country.csv -------------------------------------------------------------------------------- /data/2025Q4/1-fetch/github_1_count.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/2025Q4/1-fetch/github_1_count.csv -------------------------------------------------------------------------------- /data/gcs_country_collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/gcs_country_collection.yaml -------------------------------------------------------------------------------- /data/gcs_language_collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/gcs_language_collection.yaml -------------------------------------------------------------------------------- /data/gcs_query_plan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/gcs_query_plan.csv -------------------------------------------------------------------------------- /data/legal-tool-paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/legal-tool-paths.txt -------------------------------------------------------------------------------- /data/prioritized-tool-urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/data/prioritized-tool-urls.txt -------------------------------------------------------------------------------- /dev/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/dev/check.sh -------------------------------------------------------------------------------- /dev/create_gcs_query_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/dev/create_gcs_query_plan.py -------------------------------------------------------------------------------- /dev/prioritize_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/dev/prioritize_tools.py -------------------------------------------------------------------------------- /dev/reformat_collection_values_to_yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/dev/reformat_collection_values_to_yaml.sh -------------------------------------------------------------------------------- /dev/test_scripts_help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/dev/test_scripts_help.sh -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/env.example -------------------------------------------------------------------------------- /history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/history.md -------------------------------------------------------------------------------- /pre-automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/README.md -------------------------------------------------------------------------------- /pre-automation/analyze/Geomap_and_Model_building.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/Geomap_and_Model_building.ipynb -------------------------------------------------------------------------------- /pre-automation/analyze/compare_graphs/licenses_location_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/compare_graphs/licenses_location_distribution.png -------------------------------------------------------------------------------- /pre-automation/analyze/compare_graphs/max_views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/compare_graphs/max_views.png -------------------------------------------------------------------------------- /pre-automation/analyze/compare_graphs/total_usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/compare_graphs/total_usage.html -------------------------------------------------------------------------------- /pre-automation/analyze/compare_graphs/total_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/compare_graphs/total_usage.png -------------------------------------------------------------------------------- /pre-automation/analyze/data_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/data_analysis.py -------------------------------------------------------------------------------- /pre-automation/analyze/license1_translated_for_wordcloud.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/license1_translated_for_wordcloud.csv -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/license10_total_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/license10_total_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/license1_total_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/license1_total_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/license2_total_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/license2_total_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/license3_total_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/license3_total_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/license4_total_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/license4_total_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/license5_total_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/license5_total_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/license6_total_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/license6_total_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/license9_total_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/license9_total_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/line_graphs/licenses_yearly_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/line_graphs/licenses_yearly_trend.png -------------------------------------------------------------------------------- /pre-automation/analyze/merged_all_cleaned.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/merged_all_cleaned.csv -------------------------------------------------------------------------------- /pre-automation/analyze/wordCloud_plots/CC BY-NC-SA and BY-NC wordcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/wordCloud_plots/CC BY-NC-SA and BY-NC wordcloud.png -------------------------------------------------------------------------------- /pre-automation/analyze/wordCloud_plots/license1_wordCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/wordCloud_plots/license1_wordCloud.png -------------------------------------------------------------------------------- /pre-automation/analyze/wordCloud_plots/license2_wordCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/wordCloud_plots/license2_wordCloud.png -------------------------------------------------------------------------------- /pre-automation/analyze/wordCloud_plots/license3_wordCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/wordCloud_plots/license3_wordCloud.png -------------------------------------------------------------------------------- /pre-automation/analyze/wordCloud_plots/license4_wordCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/wordCloud_plots/license4_wordCloud.png -------------------------------------------------------------------------------- /pre-automation/analyze/wordCloud_plots/license5_wordCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/wordCloud_plots/license5_wordCloud.png -------------------------------------------------------------------------------- /pre-automation/analyze/wordCloud_plots/license6_wordCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/wordCloud_plots/license6_wordCloud.png -------------------------------------------------------------------------------- /pre-automation/analyze/wordCloud_plots/license9_wordCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/analyze/wordCloud_plots/license9_wordCloud.png -------------------------------------------------------------------------------- /pre-automation/deviantart/data_deviantart_2022_10_30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/deviantart/data_deviantart_2022_10_30.csv -------------------------------------------------------------------------------- /pre-automation/deviantart/deviantart_scratcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/deviantart/deviantart_scratcher.py -------------------------------------------------------------------------------- /pre-automation/education/datasets/OTL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/education/datasets/OTL.csv -------------------------------------------------------------------------------- /pre-automation/flickr/cleaned_hs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/cleaned_hs.csv -------------------------------------------------------------------------------- /pre-automation/flickr/data_cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/data_cleaning.py -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/cleaned_license1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/cleaned_license1.csv -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/cleaned_license10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/cleaned_license10.csv -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/cleaned_license2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/cleaned_license2.csv -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/cleaned_license3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/cleaned_license3.csv -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/cleaned_license4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/cleaned_license4.csv -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/cleaned_license5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/cleaned_license5.csv -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/cleaned_license6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/cleaned_license6.csv -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/cleaned_license9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/cleaned_license9.csv -------------------------------------------------------------------------------- /pre-automation/flickr/dataset/license_total.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/dataset/license_total.csv -------------------------------------------------------------------------------- /pre-automation/flickr/hs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/hs.csv -------------------------------------------------------------------------------- /pre-automation/flickr/photos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/photos.json -------------------------------------------------------------------------------- /pre-automation/flickr/photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/photos.py -------------------------------------------------------------------------------- /pre-automation/flickr/photos_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/flickr/photos_detail.py -------------------------------------------------------------------------------- /pre-automation/flickr/rec.txt: -------------------------------------------------------------------------------- 1 | 487 4 600 2 | -------------------------------------------------------------------------------- /pre-automation/internetarchive/data_internetarchive_2022_10_20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/internetarchive/data_internetarchive_2022_10_20.csv -------------------------------------------------------------------------------- /pre-automation/internetarchive/internetarchive_scratcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/internetarchive/internetarchive_scratcher.py -------------------------------------------------------------------------------- /pre-automation/legal-tool-paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/legal-tool-paths.txt -------------------------------------------------------------------------------- /pre-automation/metmuseum/data_metmuseum_2022_10_24.csv: -------------------------------------------------------------------------------- 1 | LICENSE TYPE,Document Count 2 | publicdomain/zero/1.0,482469 3 | -------------------------------------------------------------------------------- /pre-automation/metmuseum/metmuseum_scratcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/metmuseum/metmuseum_scratcher.py -------------------------------------------------------------------------------- /pre-automation/quantify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/quantify.py -------------------------------------------------------------------------------- /pre-automation/sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/sources.md -------------------------------------------------------------------------------- /pre-automation/vimeo/data_vimeo_2022_10_29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/vimeo/data_vimeo_2022_10_29.csv -------------------------------------------------------------------------------- /pre-automation/vimeo/vimeo_scratcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/vimeo/vimeo_scratcher.py -------------------------------------------------------------------------------- /pre-automation/visualization/countries_codes_and_coordinates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/countries_codes_and_coordinates.csv -------------------------------------------------------------------------------- /pre-automation/visualization/country_alpha3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/country_alpha3.csv -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 10.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 11A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 11A.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 11B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 11B.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 12.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 13A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 13A.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 13B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 13B.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 14.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 1A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 1A.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 1B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 1B.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 1C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 1C.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 2.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 3A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 3A.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 3B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 3B.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 3C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 3C.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 3D.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 4.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 5.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 6.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 8.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 9A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 9A.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 9B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 9B.png -------------------------------------------------------------------------------- /pre-automation/visualization/diagrams/Diagram 9C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/diagrams/Diagram 9C.png -------------------------------------------------------------------------------- /pre-automation/visualization/flickr_licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/flickr_licenses.xml -------------------------------------------------------------------------------- /pre-automation/visualization/visualization_engineering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/visualization/visualization_engineering.ipynb -------------------------------------------------------------------------------- /pre-automation/wikicommons/data_wikicommons_2022_10_21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/wikicommons/data_wikicommons_2022_10_21.csv -------------------------------------------------------------------------------- /pre-automation/wikicommons/wikicommons_scratcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/wikicommons/wikicommons_scratcher.py -------------------------------------------------------------------------------- /pre-automation/youtube/data_youtube_2022_10_31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/youtube/data_youtube_2022_10_31.csv -------------------------------------------------------------------------------- /pre-automation/youtube/data_youtube_time_2022_10_31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/youtube/data_youtube_time_2022_10_31.csv -------------------------------------------------------------------------------- /pre-automation/youtube/youtube_scratcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pre-automation/youtube/youtube_scratcher.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/1-fetch/arxiv_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/1-fetch/arxiv_fetch.py -------------------------------------------------------------------------------- /scripts/1-fetch/europeana_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/1-fetch/europeana_fetch.py -------------------------------------------------------------------------------- /scripts/1-fetch/gcs_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/1-fetch/gcs_fetch.py -------------------------------------------------------------------------------- /scripts/1-fetch/github_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/1-fetch/github_fetch.py -------------------------------------------------------------------------------- /scripts/1-fetch/openverse_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/1-fetch/openverse_fetch.py -------------------------------------------------------------------------------- /scripts/1-fetch/wikipedia_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/1-fetch/wikipedia_fetch.py -------------------------------------------------------------------------------- /scripts/2-process/gcs_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/2-process/gcs_process.py -------------------------------------------------------------------------------- /scripts/2-process/github_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/2-process/github_process.py -------------------------------------------------------------------------------- /scripts/3-report/gcs_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/3-report/gcs_report.py -------------------------------------------------------------------------------- /scripts/3-report/github_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/3-report/github_report.py -------------------------------------------------------------------------------- /scripts/3-report/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/3-report/notes.py -------------------------------------------------------------------------------- /scripts/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/plot.py -------------------------------------------------------------------------------- /scripts/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/scripts/shared.py -------------------------------------------------------------------------------- /sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativecommons/quantifying/HEAD/sources.md --------------------------------------------------------------------------------