├── .dprint.json ├── .dvc ├── .gitignore └── config ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build-doc-site.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json ├── ltex.dictionary.en-US.txt ├── ltex.disabledRules.en-US.txt ├── ltex.hiddenFalsePositives.en-US.txt └── settings.json ├── Cargo.lock ├── Cargo.toml ├── ClusterStats.ipynb ├── ClusterStats.qmd ├── LICENSE.txt ├── LinkageStats.ipynb ├── LinkageStats.qmd ├── README.md ├── _quarto.yml ├── az2014 ├── .gitignore ├── az-cluster-ratings-5core.json ├── az-cluster-ratings.json ├── az-cluster-ratings.sql ├── az-scan-ratings.sql ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml └── ratings.json ├── az2018 ├── .gitignore ├── az-cluster-ratings-5core.json ├── az-cluster-ratings.json ├── az-cluster-ratings.sql ├── az-scan-ratings.sql ├── az-scan-reviews.sql ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml ├── ratings.json └── reviews.json ├── book-links ├── .gitignore ├── all-isbns.json ├── book-graph-edges.json ├── book-graph-nodes.json ├── cluster-first-authors.json ├── cluster-first-authors.sql ├── cluster-genders.json ├── cluster-graph-edges.json ├── cluster-graph-nodes.json ├── cluster-hashes.json ├── cluster-hashes.sql ├── cluster-loc-first-authors.json ├── cluster-loc-first-authors.sql ├── cluster-metrics.json ├── cluster-metrics.py ├── cluster-ol-first-authors.json ├── cluster-ol-first-authors.sql ├── cluster-stats.json ├── collect-isbns.py ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml ├── export-clusters.sql ├── integration-stats.py ├── isbn-clusters.json ├── make-graph.py └── params.yaml ├── bookdata.libsonnet ├── bx ├── .gitignore ├── bx-cluster-actions.json ├── bx-cluster-actions.sql ├── bx-cluster-ratings.json ├── bx-cluster-ratings.sql ├── dvc.jsonnet ├── dvc.lock └── dvc.yaml ├── config.yaml ├── data ├── .gitignore ├── BX-CSV-Dump.zip.dvc ├── README.md ├── az2014 │ ├── .gitignore │ └── ratings_Books.csv.dvc ├── az2018 │ ├── .gitignore │ ├── Books.csv.dvc │ ├── Books.json.gz.dvc │ └── meta_Books.json.gz.dvc ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml ├── goodreads │ ├── .gitignore │ ├── goodreads_book_authors.json.gz.dvc │ ├── goodreads_book_genres_initial.json.gz.dvc │ ├── goodreads_book_series.json.gz.dvc │ ├── goodreads_book_works.json.gz.dvc │ ├── goodreads_books.json.gz.dvc │ ├── goodreads_interactions.json.gz.dvc │ └── goodreads_reviews_dedup.json.gz.dvc ├── lcnaf-gender-codes.csv └── openlib │ └── .gitignore ├── docs ├── .gitignore ├── _brand.yml ├── _extensions │ └── doclinks │ │ ├── _extension.yml │ │ ├── files.lua │ │ └── rustdoc.lua ├── _quarto.yml ├── data │ ├── amazon.qmd │ ├── bx.qmd │ ├── cluster.qmd │ ├── gender.qmd │ ├── goodreads.qmd │ ├── ids.qmd │ ├── index.qmd │ ├── loc.qmd │ ├── openlib.qmd │ └── viaf.qmd ├── file-defs.lua ├── history.md ├── implementation │ ├── dataset.md │ ├── index.md │ ├── layout.md │ └── pipeline.md ├── index-files.pl ├── index.md ├── papers.md ├── reports │ ├── LinkageStats.ipynb │ ├── audit-cluster-stats.ipynb │ ├── audit-gender-changes.ipynb │ └── index.md ├── tweaks.scss └── using │ ├── index.md │ ├── running.md │ ├── setup.md │ ├── sources.md │ └── storage.md ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml ├── explore ├── ClusterChanges.ipynb └── IDGraphExplore.ipynb ├── goodreads ├── .gitignore ├── FirstBooks.ipynb ├── FirstBooks.py ├── book-isbn-ids.json ├── dvc-clusters.jsonnet ├── dvc-scan.jsonnet ├── dvc-works.jsonnet ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml ├── gr-author-info.json ├── gr-book-authors.json ├── gr-book-gender.json ├── gr-book-genres.json ├── gr-book-ids.json ├── gr-book-info.json ├── gr-book-link.json ├── gr-book-link.sql ├── gr-book-series.json ├── gr-cluster-actions-5core.json ├── gr-cluster-actions.json ├── gr-cluster-actions.sql ├── gr-cluster-ratings-5core.json ├── gr-cluster-ratings.json ├── gr-cluster-ratings.sql ├── gr-dataset.py ├── gr-genres.json ├── gr-interactions.json ├── gr-reviews.json ├── gr-users.json ├── gr-work-actions-15-15core.json ├── gr-work-actions-15core.json ├── gr-work-actions-2015-100-10core.json ├── gr-work-actions-5core.json ├── gr-work-actions.json ├── gr-work-actions.sql ├── gr-work-all-actions.json ├── gr-work-all-actions.sql ├── gr-work-info.json ├── gr-work-item-authors.json ├── gr-work-item-authors.py ├── gr-work-item-first-authors.json ├── gr-work-item-gender.json ├── gr-work-item-gender.sql ├── gr-work-item-genres.json ├── gr-work-item-genres.sql ├── gr-work-item-titles.json ├── gr-work-item-titles.sql ├── gr-work-ratings-2015-100-10core.json ├── gr-work-ratings-5core.json ├── gr-work-ratings.json └── gr-work-ratings.sql ├── index ├── az14-index.sql └── az18-index.sql ├── loc-mds ├── .gitignore ├── book-authors.json ├── book-fields.json ├── book-ids.json ├── book-isbn-ids.json ├── book-isbns.json ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml └── name-fields.json ├── openlibrary ├── .gitignore ├── all-authors.json ├── all-works.json ├── author-ids-after-works.json ├── author-names.json ├── authors.json ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml ├── edition-authors.json ├── edition-isbn-ids.json ├── edition-isbns.json ├── edition-subjects.json ├── edition-works.json ├── editions.json ├── scan-authors.sql ├── scan-editions.sql ├── scan-works.sql ├── work-authors.json ├── work-clusters.json ├── work-clusters.sql ├── work-subjects.json └── works.json ├── pixi.lock ├── pixi.toml ├── pyproject.toml ├── schemas ├── az-schema.sql └── gr-schema.sql ├── scripts ├── kcore.py └── link-isbns.py ├── src ├── arrow │ ├── mod.rs │ ├── reader.rs │ └── writer.rs ├── cleaning │ ├── isbns.rs │ ├── mod.rs │ ├── names │ │ ├── mod.rs │ │ ├── parse.rs │ │ ├── test_cleaning.rs │ │ ├── test_variants.rs │ │ └── types.rs │ └── strings.rs ├── cli │ ├── bx │ │ ├── extract.rs │ │ └── mod.rs │ ├── cluster_gender │ │ ├── authors.rs │ │ ├── clusters.rs │ │ └── mod.rs │ ├── goodreads │ │ ├── mod.rs │ │ └── scan.rs │ ├── index_names.rs │ ├── mod.rs │ ├── openlib.rs │ └── scan_marc.rs ├── gender.rs ├── goodreads │ ├── author.rs │ ├── book.rs │ ├── genres.rs │ ├── ids.rs │ ├── interaction.rs │ ├── mod.rs │ ├── review.rs │ ├── users.rs │ └── work.rs ├── ids │ ├── codes.rs │ ├── index.rs │ └── mod.rs ├── io │ ├── background.rs │ ├── compress.rs │ ├── ext.rs │ ├── lines.rs │ ├── mod.rs │ └── object │ │ ├── chunks.rs │ │ ├── mod.rs │ │ └── thread.rs ├── layout │ ├── mod.rs │ ├── path.rs │ └── workdir.rs ├── main.rs ├── marc │ ├── book_fields.rs │ ├── flat_fields.rs │ ├── mod.rs │ ├── parse.rs │ └── record.rs ├── openlib │ ├── author.rs │ ├── edition.rs │ ├── key.rs │ ├── mod.rs │ ├── source.rs │ ├── subject.rs │ └── work.rs ├── parsing │ ├── bindata.rs │ ├── combinators.rs │ ├── dates.rs │ ├── mod.rs │ └── test_dates.rs ├── prelude.rs ├── python │ └── bookdata │ │ ├── __init__.py │ │ ├── codes.py │ │ ├── config.py │ │ ├── duckscript.py │ │ ├── logging.py │ │ └── pqinfo.py ├── tsv.rs └── util │ ├── accum.rs │ ├── logging.rs │ ├── mod.rs │ ├── process.rs │ ├── serde_string.rs │ ├── timing.rs │ └── unicode │ ├── mod.rs │ └── tables.rs ├── tasks.py └── viaf ├── .gitignore ├── author-genders.json ├── author-genders.sql ├── author-name-index.json ├── dvc.jsonnet ├── dvc.lock ├── dvc.yaml └── viaf.json /.dprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.dprint.json -------------------------------------------------------------------------------- /.dvc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.dvc/.gitignore -------------------------------------------------------------------------------- /.dvc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.dvc/config -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-doc-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.github/workflows/build-doc-site.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/ltex.dictionary.en-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.vscode/ltex.dictionary.en-US.txt -------------------------------------------------------------------------------- /.vscode/ltex.disabledRules.en-US.txt: -------------------------------------------------------------------------------- 1 | COMMA_COMPOUND_SENTENCE_2 2 | -------------------------------------------------------------------------------- /.vscode/ltex.hiddenFalsePositives.en-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.vscode/ltex.hiddenFalsePositives.en-US.txt -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/Cargo.toml -------------------------------------------------------------------------------- /ClusterStats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/ClusterStats.ipynb -------------------------------------------------------------------------------- /ClusterStats.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/ClusterStats.qmd -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LinkageStats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/LinkageStats.ipynb -------------------------------------------------------------------------------- /LinkageStats.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/LinkageStats.qmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/README.md -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/_quarto.yml -------------------------------------------------------------------------------- /az2014/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/.gitignore -------------------------------------------------------------------------------- /az2014/az-cluster-ratings-5core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/az-cluster-ratings-5core.json -------------------------------------------------------------------------------- /az2014/az-cluster-ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/az-cluster-ratings.json -------------------------------------------------------------------------------- /az2014/az-cluster-ratings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/az-cluster-ratings.sql -------------------------------------------------------------------------------- /az2014/az-scan-ratings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/az-scan-ratings.sql -------------------------------------------------------------------------------- /az2014/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/dvc.jsonnet -------------------------------------------------------------------------------- /az2014/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/dvc.lock -------------------------------------------------------------------------------- /az2014/dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/dvc.yaml -------------------------------------------------------------------------------- /az2014/ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2014/ratings.json -------------------------------------------------------------------------------- /az2018/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/.gitignore -------------------------------------------------------------------------------- /az2018/az-cluster-ratings-5core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/az-cluster-ratings-5core.json -------------------------------------------------------------------------------- /az2018/az-cluster-ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/az-cluster-ratings.json -------------------------------------------------------------------------------- /az2018/az-cluster-ratings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/az-cluster-ratings.sql -------------------------------------------------------------------------------- /az2018/az-scan-ratings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/az-scan-ratings.sql -------------------------------------------------------------------------------- /az2018/az-scan-reviews.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/az-scan-reviews.sql -------------------------------------------------------------------------------- /az2018/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/dvc.jsonnet -------------------------------------------------------------------------------- /az2018/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/dvc.lock -------------------------------------------------------------------------------- /az2018/dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/dvc.yaml -------------------------------------------------------------------------------- /az2018/ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/ratings.json -------------------------------------------------------------------------------- /az2018/reviews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/az2018/reviews.json -------------------------------------------------------------------------------- /book-links/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/.gitignore -------------------------------------------------------------------------------- /book-links/all-isbns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/all-isbns.json -------------------------------------------------------------------------------- /book-links/book-graph-edges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/book-graph-edges.json -------------------------------------------------------------------------------- /book-links/book-graph-nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/book-graph-nodes.json -------------------------------------------------------------------------------- /book-links/cluster-first-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-first-authors.json -------------------------------------------------------------------------------- /book-links/cluster-first-authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-first-authors.sql -------------------------------------------------------------------------------- /book-links/cluster-genders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-genders.json -------------------------------------------------------------------------------- /book-links/cluster-graph-edges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-graph-edges.json -------------------------------------------------------------------------------- /book-links/cluster-graph-nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-graph-nodes.json -------------------------------------------------------------------------------- /book-links/cluster-hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-hashes.json -------------------------------------------------------------------------------- /book-links/cluster-hashes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-hashes.sql -------------------------------------------------------------------------------- /book-links/cluster-loc-first-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-loc-first-authors.json -------------------------------------------------------------------------------- /book-links/cluster-loc-first-authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-loc-first-authors.sql -------------------------------------------------------------------------------- /book-links/cluster-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-metrics.json -------------------------------------------------------------------------------- /book-links/cluster-metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-metrics.py -------------------------------------------------------------------------------- /book-links/cluster-ol-first-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-ol-first-authors.json -------------------------------------------------------------------------------- /book-links/cluster-ol-first-authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-ol-first-authors.sql -------------------------------------------------------------------------------- /book-links/cluster-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/cluster-stats.json -------------------------------------------------------------------------------- /book-links/collect-isbns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/collect-isbns.py -------------------------------------------------------------------------------- /book-links/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/dvc.jsonnet -------------------------------------------------------------------------------- /book-links/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/dvc.lock -------------------------------------------------------------------------------- /book-links/dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/dvc.yaml -------------------------------------------------------------------------------- /book-links/export-clusters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/export-clusters.sql -------------------------------------------------------------------------------- /book-links/integration-stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/integration-stats.py -------------------------------------------------------------------------------- /book-links/isbn-clusters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/isbn-clusters.json -------------------------------------------------------------------------------- /book-links/make-graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/book-links/make-graph.py -------------------------------------------------------------------------------- /book-links/params.yaml: -------------------------------------------------------------------------------- 1 | debug: 2 | cluster: 100004141 3 | -------------------------------------------------------------------------------- /bookdata.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/bookdata.libsonnet -------------------------------------------------------------------------------- /bx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/bx/.gitignore -------------------------------------------------------------------------------- /bx/bx-cluster-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/bx/bx-cluster-actions.json -------------------------------------------------------------------------------- /bx/bx-cluster-actions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/bx/bx-cluster-actions.sql -------------------------------------------------------------------------------- /bx/bx-cluster-ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/bx/bx-cluster-ratings.json -------------------------------------------------------------------------------- /bx/bx-cluster-ratings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/bx/bx-cluster-ratings.sql -------------------------------------------------------------------------------- /bx/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/bx/dvc.jsonnet -------------------------------------------------------------------------------- /bx/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/bx/dvc.lock -------------------------------------------------------------------------------- /bx/dvc.yaml: -------------------------------------------------------------------------------- 1 | stages: {} 2 | -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/config.yaml -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/BX-CSV-Dump.zip.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/BX-CSV-Dump.zip.dvc -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/README.md -------------------------------------------------------------------------------- /data/az2014/.gitignore: -------------------------------------------------------------------------------- 1 | /ratings_Books.csv 2 | -------------------------------------------------------------------------------- /data/az2014/ratings_Books.csv.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/az2014/ratings_Books.csv.dvc -------------------------------------------------------------------------------- /data/az2018/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/az2018/.gitignore -------------------------------------------------------------------------------- /data/az2018/Books.csv.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/az2018/Books.csv.dvc -------------------------------------------------------------------------------- /data/az2018/Books.json.gz.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/az2018/Books.json.gz.dvc -------------------------------------------------------------------------------- /data/az2018/meta_Books.json.gz.dvc: -------------------------------------------------------------------------------- 1 | outs: 2 | - md5: 0c09bfc3a60ed0729c01e7185c74b08f 3 | path: meta_Books.json.gz 4 | -------------------------------------------------------------------------------- /data/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/dvc.jsonnet -------------------------------------------------------------------------------- /data/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/dvc.lock -------------------------------------------------------------------------------- /data/dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/dvc.yaml -------------------------------------------------------------------------------- /data/goodreads/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/goodreads/.gitignore -------------------------------------------------------------------------------- /data/goodreads/goodreads_book_authors.json.gz.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/goodreads/goodreads_book_authors.json.gz.dvc -------------------------------------------------------------------------------- /data/goodreads/goodreads_book_genres_initial.json.gz.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/goodreads/goodreads_book_genres_initial.json.gz.dvc -------------------------------------------------------------------------------- /data/goodreads/goodreads_book_series.json.gz.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/goodreads/goodreads_book_series.json.gz.dvc -------------------------------------------------------------------------------- /data/goodreads/goodreads_book_works.json.gz.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/goodreads/goodreads_book_works.json.gz.dvc -------------------------------------------------------------------------------- /data/goodreads/goodreads_books.json.gz.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/goodreads/goodreads_books.json.gz.dvc -------------------------------------------------------------------------------- /data/goodreads/goodreads_interactions.json.gz.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/goodreads/goodreads_interactions.json.gz.dvc -------------------------------------------------------------------------------- /data/goodreads/goodreads_reviews_dedup.json.gz.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/goodreads/goodreads_reviews_dedup.json.gz.dvc -------------------------------------------------------------------------------- /data/lcnaf-gender-codes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/lcnaf-gender-codes.csv -------------------------------------------------------------------------------- /data/openlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/data/openlib/.gitignore -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /_site 2 | /_book 3 | /build/ 4 | 5 | /.quarto/ 6 | -------------------------------------------------------------------------------- /docs/_brand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/_brand.yml -------------------------------------------------------------------------------- /docs/_extensions/doclinks/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/_extensions/doclinks/_extension.yml -------------------------------------------------------------------------------- /docs/_extensions/doclinks/files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/_extensions/doclinks/files.lua -------------------------------------------------------------------------------- /docs/_extensions/doclinks/rustdoc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/_extensions/doclinks/rustdoc.lua -------------------------------------------------------------------------------- /docs/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/_quarto.yml -------------------------------------------------------------------------------- /docs/data/amazon.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/amazon.qmd -------------------------------------------------------------------------------- /docs/data/bx.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/bx.qmd -------------------------------------------------------------------------------- /docs/data/cluster.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/cluster.qmd -------------------------------------------------------------------------------- /docs/data/gender.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/gender.qmd -------------------------------------------------------------------------------- /docs/data/goodreads.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/goodreads.qmd -------------------------------------------------------------------------------- /docs/data/ids.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/ids.qmd -------------------------------------------------------------------------------- /docs/data/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/index.qmd -------------------------------------------------------------------------------- /docs/data/loc.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/loc.qmd -------------------------------------------------------------------------------- /docs/data/openlib.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/openlib.qmd -------------------------------------------------------------------------------- /docs/data/viaf.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/data/viaf.qmd -------------------------------------------------------------------------------- /docs/file-defs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/file-defs.lua -------------------------------------------------------------------------------- /docs/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/history.md -------------------------------------------------------------------------------- /docs/implementation/dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/implementation/dataset.md -------------------------------------------------------------------------------- /docs/implementation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/implementation/index.md -------------------------------------------------------------------------------- /docs/implementation/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/implementation/layout.md -------------------------------------------------------------------------------- /docs/implementation/pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/implementation/pipeline.md -------------------------------------------------------------------------------- /docs/index-files.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/index-files.pl -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/papers.md -------------------------------------------------------------------------------- /docs/reports/LinkageStats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/reports/LinkageStats.ipynb -------------------------------------------------------------------------------- /docs/reports/audit-cluster-stats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/reports/audit-cluster-stats.ipynb -------------------------------------------------------------------------------- /docs/reports/audit-gender-changes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/reports/audit-gender-changes.ipynb -------------------------------------------------------------------------------- /docs/reports/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/reports/index.md -------------------------------------------------------------------------------- /docs/tweaks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/tweaks.scss -------------------------------------------------------------------------------- /docs/using/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/using/index.md -------------------------------------------------------------------------------- /docs/using/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/using/running.md -------------------------------------------------------------------------------- /docs/using/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/using/setup.md -------------------------------------------------------------------------------- /docs/using/sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/using/sources.md -------------------------------------------------------------------------------- /docs/using/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/docs/using/storage.md -------------------------------------------------------------------------------- /dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/dvc.jsonnet -------------------------------------------------------------------------------- /dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/dvc.lock -------------------------------------------------------------------------------- /dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/dvc.yaml -------------------------------------------------------------------------------- /explore/ClusterChanges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/explore/ClusterChanges.ipynb -------------------------------------------------------------------------------- /explore/IDGraphExplore.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/explore/IDGraphExplore.ipynb -------------------------------------------------------------------------------- /goodreads/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/.gitignore -------------------------------------------------------------------------------- /goodreads/FirstBooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/FirstBooks.ipynb -------------------------------------------------------------------------------- /goodreads/FirstBooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/FirstBooks.py -------------------------------------------------------------------------------- /goodreads/book-isbn-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/book-isbn-ids.json -------------------------------------------------------------------------------- /goodreads/dvc-clusters.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/dvc-clusters.jsonnet -------------------------------------------------------------------------------- /goodreads/dvc-scan.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/dvc-scan.jsonnet -------------------------------------------------------------------------------- /goodreads/dvc-works.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/dvc-works.jsonnet -------------------------------------------------------------------------------- /goodreads/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/dvc.jsonnet -------------------------------------------------------------------------------- /goodreads/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/dvc.lock -------------------------------------------------------------------------------- /goodreads/dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/dvc.yaml -------------------------------------------------------------------------------- /goodreads/gr-author-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-author-info.json -------------------------------------------------------------------------------- /goodreads/gr-book-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-book-authors.json -------------------------------------------------------------------------------- /goodreads/gr-book-gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-book-gender.json -------------------------------------------------------------------------------- /goodreads/gr-book-genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-book-genres.json -------------------------------------------------------------------------------- /goodreads/gr-book-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-book-ids.json -------------------------------------------------------------------------------- /goodreads/gr-book-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-book-info.json -------------------------------------------------------------------------------- /goodreads/gr-book-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-book-link.json -------------------------------------------------------------------------------- /goodreads/gr-book-link.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-book-link.sql -------------------------------------------------------------------------------- /goodreads/gr-book-series.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-book-series.json -------------------------------------------------------------------------------- /goodreads/gr-cluster-actions-5core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-cluster-actions-5core.json -------------------------------------------------------------------------------- /goodreads/gr-cluster-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-cluster-actions.json -------------------------------------------------------------------------------- /goodreads/gr-cluster-actions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-cluster-actions.sql -------------------------------------------------------------------------------- /goodreads/gr-cluster-ratings-5core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-cluster-ratings-5core.json -------------------------------------------------------------------------------- /goodreads/gr-cluster-ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-cluster-ratings.json -------------------------------------------------------------------------------- /goodreads/gr-cluster-ratings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-cluster-ratings.sql -------------------------------------------------------------------------------- /goodreads/gr-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-dataset.py -------------------------------------------------------------------------------- /goodreads/gr-genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-genres.json -------------------------------------------------------------------------------- /goodreads/gr-interactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-interactions.json -------------------------------------------------------------------------------- /goodreads/gr-reviews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-reviews.json -------------------------------------------------------------------------------- /goodreads/gr-users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-users.json -------------------------------------------------------------------------------- /goodreads/gr-work-actions-15-15core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-actions-15-15core.json -------------------------------------------------------------------------------- /goodreads/gr-work-actions-15core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-actions-15core.json -------------------------------------------------------------------------------- /goodreads/gr-work-actions-2015-100-10core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-actions-2015-100-10core.json -------------------------------------------------------------------------------- /goodreads/gr-work-actions-5core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-actions-5core.json -------------------------------------------------------------------------------- /goodreads/gr-work-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-actions.json -------------------------------------------------------------------------------- /goodreads/gr-work-actions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-actions.sql -------------------------------------------------------------------------------- /goodreads/gr-work-all-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-all-actions.json -------------------------------------------------------------------------------- /goodreads/gr-work-all-actions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-all-actions.sql -------------------------------------------------------------------------------- /goodreads/gr-work-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-info.json -------------------------------------------------------------------------------- /goodreads/gr-work-item-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-authors.json -------------------------------------------------------------------------------- /goodreads/gr-work-item-authors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-authors.py -------------------------------------------------------------------------------- /goodreads/gr-work-item-first-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-first-authors.json -------------------------------------------------------------------------------- /goodreads/gr-work-item-gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-gender.json -------------------------------------------------------------------------------- /goodreads/gr-work-item-gender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-gender.sql -------------------------------------------------------------------------------- /goodreads/gr-work-item-genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-genres.json -------------------------------------------------------------------------------- /goodreads/gr-work-item-genres.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-genres.sql -------------------------------------------------------------------------------- /goodreads/gr-work-item-titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-titles.json -------------------------------------------------------------------------------- /goodreads/gr-work-item-titles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-item-titles.sql -------------------------------------------------------------------------------- /goodreads/gr-work-ratings-2015-100-10core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-ratings-2015-100-10core.json -------------------------------------------------------------------------------- /goodreads/gr-work-ratings-5core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-ratings-5core.json -------------------------------------------------------------------------------- /goodreads/gr-work-ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-ratings.json -------------------------------------------------------------------------------- /goodreads/gr-work-ratings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/goodreads/gr-work-ratings.sql -------------------------------------------------------------------------------- /index/az14-index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/index/az14-index.sql -------------------------------------------------------------------------------- /index/az18-index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/index/az18-index.sql -------------------------------------------------------------------------------- /loc-mds/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/.gitignore -------------------------------------------------------------------------------- /loc-mds/book-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/book-authors.json -------------------------------------------------------------------------------- /loc-mds/book-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/book-fields.json -------------------------------------------------------------------------------- /loc-mds/book-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/book-ids.json -------------------------------------------------------------------------------- /loc-mds/book-isbn-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/book-isbn-ids.json -------------------------------------------------------------------------------- /loc-mds/book-isbns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/book-isbns.json -------------------------------------------------------------------------------- /loc-mds/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/dvc.jsonnet -------------------------------------------------------------------------------- /loc-mds/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/dvc.lock -------------------------------------------------------------------------------- /loc-mds/dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/dvc.yaml -------------------------------------------------------------------------------- /loc-mds/name-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/loc-mds/name-fields.json -------------------------------------------------------------------------------- /openlibrary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/.gitignore -------------------------------------------------------------------------------- /openlibrary/all-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/all-authors.json -------------------------------------------------------------------------------- /openlibrary/all-works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/all-works.json -------------------------------------------------------------------------------- /openlibrary/author-ids-after-works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/author-ids-after-works.json -------------------------------------------------------------------------------- /openlibrary/author-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/author-names.json -------------------------------------------------------------------------------- /openlibrary/authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/authors.json -------------------------------------------------------------------------------- /openlibrary/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/dvc.jsonnet -------------------------------------------------------------------------------- /openlibrary/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/dvc.lock -------------------------------------------------------------------------------- /openlibrary/dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/dvc.yaml -------------------------------------------------------------------------------- /openlibrary/edition-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/edition-authors.json -------------------------------------------------------------------------------- /openlibrary/edition-isbn-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/edition-isbn-ids.json -------------------------------------------------------------------------------- /openlibrary/edition-isbns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/edition-isbns.json -------------------------------------------------------------------------------- /openlibrary/edition-subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/edition-subjects.json -------------------------------------------------------------------------------- /openlibrary/edition-works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/edition-works.json -------------------------------------------------------------------------------- /openlibrary/editions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/editions.json -------------------------------------------------------------------------------- /openlibrary/scan-authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/scan-authors.sql -------------------------------------------------------------------------------- /openlibrary/scan-editions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/scan-editions.sql -------------------------------------------------------------------------------- /openlibrary/scan-works.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/scan-works.sql -------------------------------------------------------------------------------- /openlibrary/work-authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/work-authors.json -------------------------------------------------------------------------------- /openlibrary/work-clusters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/work-clusters.json -------------------------------------------------------------------------------- /openlibrary/work-clusters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/work-clusters.sql -------------------------------------------------------------------------------- /openlibrary/work-subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/work-subjects.json -------------------------------------------------------------------------------- /openlibrary/works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/openlibrary/works.json -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/pixi.lock -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/pixi.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schemas/az-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/schemas/az-schema.sql -------------------------------------------------------------------------------- /schemas/gr-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/schemas/gr-schema.sql -------------------------------------------------------------------------------- /scripts/kcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/scripts/kcore.py -------------------------------------------------------------------------------- /scripts/link-isbns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/scripts/link-isbns.py -------------------------------------------------------------------------------- /src/arrow/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/arrow/mod.rs -------------------------------------------------------------------------------- /src/arrow/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/arrow/reader.rs -------------------------------------------------------------------------------- /src/arrow/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/arrow/writer.rs -------------------------------------------------------------------------------- /src/cleaning/isbns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cleaning/isbns.rs -------------------------------------------------------------------------------- /src/cleaning/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cleaning/mod.rs -------------------------------------------------------------------------------- /src/cleaning/names/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cleaning/names/mod.rs -------------------------------------------------------------------------------- /src/cleaning/names/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cleaning/names/parse.rs -------------------------------------------------------------------------------- /src/cleaning/names/test_cleaning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cleaning/names/test_cleaning.rs -------------------------------------------------------------------------------- /src/cleaning/names/test_variants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cleaning/names/test_variants.rs -------------------------------------------------------------------------------- /src/cleaning/names/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cleaning/names/types.rs -------------------------------------------------------------------------------- /src/cleaning/strings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cleaning/strings.rs -------------------------------------------------------------------------------- /src/cli/bx/extract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/bx/extract.rs -------------------------------------------------------------------------------- /src/cli/bx/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/bx/mod.rs -------------------------------------------------------------------------------- /src/cli/cluster_gender/authors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/cluster_gender/authors.rs -------------------------------------------------------------------------------- /src/cli/cluster_gender/clusters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/cluster_gender/clusters.rs -------------------------------------------------------------------------------- /src/cli/cluster_gender/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/cluster_gender/mod.rs -------------------------------------------------------------------------------- /src/cli/goodreads/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/goodreads/mod.rs -------------------------------------------------------------------------------- /src/cli/goodreads/scan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/goodreads/scan.rs -------------------------------------------------------------------------------- /src/cli/index_names.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/index_names.rs -------------------------------------------------------------------------------- /src/cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/mod.rs -------------------------------------------------------------------------------- /src/cli/openlib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/openlib.rs -------------------------------------------------------------------------------- /src/cli/scan_marc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/cli/scan_marc.rs -------------------------------------------------------------------------------- /src/gender.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/gender.rs -------------------------------------------------------------------------------- /src/goodreads/author.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/author.rs -------------------------------------------------------------------------------- /src/goodreads/book.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/book.rs -------------------------------------------------------------------------------- /src/goodreads/genres.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/genres.rs -------------------------------------------------------------------------------- /src/goodreads/ids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/ids.rs -------------------------------------------------------------------------------- /src/goodreads/interaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/interaction.rs -------------------------------------------------------------------------------- /src/goodreads/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/mod.rs -------------------------------------------------------------------------------- /src/goodreads/review.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/review.rs -------------------------------------------------------------------------------- /src/goodreads/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/users.rs -------------------------------------------------------------------------------- /src/goodreads/work.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/goodreads/work.rs -------------------------------------------------------------------------------- /src/ids/codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/ids/codes.rs -------------------------------------------------------------------------------- /src/ids/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/ids/index.rs -------------------------------------------------------------------------------- /src/ids/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/ids/mod.rs -------------------------------------------------------------------------------- /src/io/background.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/io/background.rs -------------------------------------------------------------------------------- /src/io/compress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/io/compress.rs -------------------------------------------------------------------------------- /src/io/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/io/ext.rs -------------------------------------------------------------------------------- /src/io/lines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/io/lines.rs -------------------------------------------------------------------------------- /src/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/io/mod.rs -------------------------------------------------------------------------------- /src/io/object/chunks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/io/object/chunks.rs -------------------------------------------------------------------------------- /src/io/object/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/io/object/mod.rs -------------------------------------------------------------------------------- /src/io/object/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/io/object/thread.rs -------------------------------------------------------------------------------- /src/layout/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/layout/mod.rs -------------------------------------------------------------------------------- /src/layout/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/layout/path.rs -------------------------------------------------------------------------------- /src/layout/workdir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/layout/workdir.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/marc/book_fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/marc/book_fields.rs -------------------------------------------------------------------------------- /src/marc/flat_fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/marc/flat_fields.rs -------------------------------------------------------------------------------- /src/marc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/marc/mod.rs -------------------------------------------------------------------------------- /src/marc/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/marc/parse.rs -------------------------------------------------------------------------------- /src/marc/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/marc/record.rs -------------------------------------------------------------------------------- /src/openlib/author.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/openlib/author.rs -------------------------------------------------------------------------------- /src/openlib/edition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/openlib/edition.rs -------------------------------------------------------------------------------- /src/openlib/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/openlib/key.rs -------------------------------------------------------------------------------- /src/openlib/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/openlib/mod.rs -------------------------------------------------------------------------------- /src/openlib/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/openlib/source.rs -------------------------------------------------------------------------------- /src/openlib/subject.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/openlib/subject.rs -------------------------------------------------------------------------------- /src/openlib/work.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/openlib/work.rs -------------------------------------------------------------------------------- /src/parsing/bindata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/parsing/bindata.rs -------------------------------------------------------------------------------- /src/parsing/combinators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/parsing/combinators.rs -------------------------------------------------------------------------------- /src/parsing/dates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/parsing/dates.rs -------------------------------------------------------------------------------- /src/parsing/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/parsing/mod.rs -------------------------------------------------------------------------------- /src/parsing/test_dates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/parsing/test_dates.rs -------------------------------------------------------------------------------- /src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/prelude.rs -------------------------------------------------------------------------------- /src/python/bookdata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/bookdata/codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/python/bookdata/codes.py -------------------------------------------------------------------------------- /src/python/bookdata/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/python/bookdata/config.py -------------------------------------------------------------------------------- /src/python/bookdata/duckscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/python/bookdata/duckscript.py -------------------------------------------------------------------------------- /src/python/bookdata/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/python/bookdata/logging.py -------------------------------------------------------------------------------- /src/python/bookdata/pqinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/python/bookdata/pqinfo.py -------------------------------------------------------------------------------- /src/tsv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/tsv.rs -------------------------------------------------------------------------------- /src/util/accum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/util/accum.rs -------------------------------------------------------------------------------- /src/util/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/util/logging.rs -------------------------------------------------------------------------------- /src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/util/mod.rs -------------------------------------------------------------------------------- /src/util/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/util/process.rs -------------------------------------------------------------------------------- /src/util/serde_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/util/serde_string.rs -------------------------------------------------------------------------------- /src/util/timing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/util/timing.rs -------------------------------------------------------------------------------- /src/util/unicode/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/util/unicode/mod.rs -------------------------------------------------------------------------------- /src/util/unicode/tables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/src/util/unicode/tables.rs -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/tasks.py -------------------------------------------------------------------------------- /viaf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/viaf/.gitignore -------------------------------------------------------------------------------- /viaf/author-genders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/viaf/author-genders.json -------------------------------------------------------------------------------- /viaf/author-genders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/viaf/author-genders.sql -------------------------------------------------------------------------------- /viaf/author-name-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/viaf/author-name-index.json -------------------------------------------------------------------------------- /viaf/dvc.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/viaf/dvc.jsonnet -------------------------------------------------------------------------------- /viaf/dvc.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/viaf/dvc.lock -------------------------------------------------------------------------------- /viaf/dvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/viaf/dvc.yaml -------------------------------------------------------------------------------- /viaf/viaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inertia-lab/bookdata-tools/HEAD/viaf/viaf.json --------------------------------------------------------------------------------