dao-governance-framework/semantic-scholar-client
Ladd Hoffman 68d04117c9 Successfully consuming data 2022-11-07 17:31:37 -06:00
..
src/bin Successfully consuming data 2022-11-07 17:31:37 -06:00
.gitignore semantic-scholar-client: Initial commit 2022-07-15 10:48:33 -05:00
Cargo.lock Successfully consuming data 2022-11-07 17:31:37 -06:00
Cargo.toml Successfully consuming data 2022-11-07 17:31:37 -06:00
README.md Successfully consuming data 2022-11-07 17:31:37 -06:00

README.md

#semantic-scholar-client

This utility is able to fetch data from Semantic Scholar API.

Initial proof of concept here writes the result to stdout.

Work in progress to pipe this data into an operating database.

Usage

cargo run -- --paper-id <paper_id> --depth <depth>
  • paper_id values are in accordance with Semantic Scholar API.
  • depth is the number of citations to traverse, from the starting paper.

Notes

Ideas for followup work:

  • Consider strategies for deciding where to terminate a given traversal
  • Provide an HTTP/WebSocket interface that can be used to talk to this process during its operation. This can enable us to pipe the data to other tasks, to monitor, to start/stop, and even to make configuration changes.