https://github.com/diging/crossref-connect

Connector to Crossref API

https://github.com/diging/crossref-connect

Science Score: 8.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
    Organization diging has institutional domain (diging.asu.edu)
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (5.9%) to scientific vocabulary
Last synced: 5 months ago · JSON representation

Repository

Connector to Crossref API

Basic Info
  • Host: GitHub
  • Owner: diging
  • License: mpl-2.0
  • Language: Java
  • Default Branch: develop
  • Size: 56.6 KB
Statistics
  • Stars: 0
  • Watchers: 4
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 4 years ago · Last pushed over 3 years ago
Metadata Files
Readme License

README.md

Java Crossref Connector

This project provides a simple interface to query Crossref's public API.

Installation

Using Maven, include the following plugin: xml <dependency> <groupId>edu.asu.diging</groupId> <artifactId>crossref-connect</artifactId> <version>0.1</version> </dependency>

Usage

Use the plugin as follows:

java CrossrefWorksService service = new CrossrefWorksServiceImpl(CrossrefConfiguration.getDefaultConfig()); try { // search takes: query string, page size, and offset List<Item> results = service.search("einstein", 5, 0); // do something with the results results.forEach(r -> System.out.println(r.getTitle())); } catch (IOException e) { // handle exception e.printStackTrace(); } catch (RequestFailedException e) { // handle exception e.printStackTrace(); }

If for some reason, the default parameter to connect to Crossref need to be changed, customized CrossrefConfiguration can be used by either implementing a new CrossrefConfiguration class or adjusting the values in the DefaultCrossrefConfiguration.

Owner

  • Name: ASU Digital Innovation Group
  • Login: diging
  • Kind: organization
  • Location: Tempe, Arizona

GitHub Events

Total
Last Year

Issues and Pull Requests

Last synced: 12 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads: unknown
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 2
repo1.maven.org: edu.asu.diging:crossref-connect

Plugin to query Crossref's API.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 32.0%
Average: 40.4%
Dependent packages count: 48.9%
Last synced: 5 months ago

Dependencies

crossref-connect/pom.xml maven
  • com.fasterxml.jackson.core:jackson-databind 2.13.1
  • com.squareup.okhttp3:okhttp 4.10.0-RC1