dataciteapi

A Golang package and command line utility for working with the public DataCite API

https://github.com/caltechlibrary/dataciteapi

Science Score: 65.0%

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

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 2 DOI reference(s) in README
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
    Organization caltechlibrary has institutional domain (www.library.caltech.edu)
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (3.9%) to scientific vocabulary
Last synced: 9 months ago · JSON representation ·

Repository

A Golang package and command line utility for working with the public DataCite API

Basic Info
  • Host: GitHub
  • Owner: caltechlibrary
  • License: other
  • Language: JavaScript
  • Default Branch: main
  • Size: 474 KB
Statistics
  • Stars: 2
  • Watchers: 6
  • Forks: 0
  • Open Issues: 0
  • Releases: 9
Created almost 8 years ago · Last pushed 10 months ago
Metadata Files
Readme License Citation Codemeta

README.md

dataciteapi

This is a go package for working with the DataCite API. It is inspired by work my colleague Tom Morrel has done in Python. This package is meant to follow the guidelines for interacting with the public API at api.datacite.org. It also follows the same form as the golang CrossRef API developed previously at Caltech Library.

Go package example

```go appName := path.Base(os.Args[0]) client, err := dataciteapi.NewDataCiteClient(appName, "jane.doe@library.example.edu") if err != nil { // handle error... } works, err := client.Works("10.1037/0003-066x.59.1.29")

if err != nil {
    // handle error...
}
// continue processing your "works" result...

```

Command line example

dataciteapi -mailto="jane.doe@library.example.edu" works "10.1037/0003-066x.59.1.29"

Reference

Owner

  • Name: Caltech Library
  • Login: caltechlibrary
  • Kind: organization
  • Email: helpdesk@library.caltech.edu
  • Location: Pasadena, CA 91125

We manage the physical and digital holdings of the California Institute of Technology, provide services and training, and develop open-source software.

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
type: software
title: "dataciteapi"
abstract: "A Golang package and command line tool for working with the
public DataCite API"
authors:
  - family-names: Doiel
    given-names: Robert
    orcid: "https://orcid.org/0000-0003-0900-6903"

maintainers:
  - family-names: 
    given-names: 
    orcid: ""

repository-code: "https://github.com/caltechlibrary/dataciteapi"
version: 1.1.0
license-url: "https://caltechlibrary/dataciteapi/LICENSE"
keywords: [ "DataCite", "DOI", "GitHub", "metadata" ]
date-released: 2021-07-15

CodeMeta (codemeta.json)

{
  "@context": "https://doi.org/10.5063/schema/codemeta-2.0",
  "@type": "SoftwareSourceCode",
  "description": "A Golang package and command line tool for working with the public DataCite API",
  "releaseNotes": "Updated Go version to 1.22 and doitools v0.0.2, added Dois() and DoisJSON() func to client",
  "name": "dataciteapi",
  "codeRepository": "https://github.com/caltechlibrary/dataciteapi",
  "issueTracker": "https://github.com/caltechlibrary/dataciteapi/issues",
  "license": "https://caltechlibrary/dataciteapi/LICENSE",
  "dateRelease": "2018-07-11",
  "datePublished": "2021-07-15",
  "dateModified": "2024-04-11",
  "version": "1.1.0",
  "author": [
    {
      "@type": "Person",
      "givenName": "Robert",
      "familyName": "Doiel",
      "affiliation": {
        "@type": "Organization",
        "name": "Caltech Library"
      },
      "email": "rsdoiel@caltech.edu",
      "@id": "https://orcid.org/0000-0003-0900-6903"
    }
  ],
  "developmentStatus": "active",
  "downloadUrl": "https://github.com/caltechlibrary/dataciteapi/releases",
  "keywords": [
    "DataCite",
    "DOI",
    "GitHub",
    "metadata"
  ],
  "maintainer": "https://orcid.org/0000-0003-0900-6903",
  "programmingLanguage": [
    "Go >= 1.22"
  ]
}

GitHub Events

Total
  • Push event: 5
Last Year
  • Push event: 5

Committers

Last synced: 10 months ago

All Time
  • Total Commits: 45
  • Total Committers: 3
  • Avg Commits per committer: 15.0
  • Development Distribution Score (DDS): 0.267
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
R. S. Doiel r****l@g****m 33
R. S. Doiel = 11
R. S. Doiel r****l@g****l 1

Issues and Pull Requests

Last synced: 10 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: 6
  • Total dependent repositories: 1
  • Total versions: 9
proxy.golang.org: github.com/caltechlibrary/dataciteapi
  • Versions: 9
  • Dependent Packages: 6
  • Dependent Repositories: 1
Rankings
Dependent packages count: 2.5%
Dependent repos count: 4.7%
Average: 11.4%
Forks count: 18.9%
Stargazers count: 19.3%
Last synced: 10 months ago

Dependencies

go.mod go
  • github.com/caltechlibrary/doitools v0.0.1
go.sum go
  • github.com/caltechlibrary/cli v0.0.18
  • github.com/caltechlibrary/doitools v0.0.1