Popularity
0.8
Declining
Activity
0.0
Stable
8
1
2

Programming language: Go
License: MIT License

doi alternatives and similar packages

Based on the "Specific Formats" category.
Alternatively, view doi alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of doi or a related project?

Add another 'Specific Formats' Package

README

doi

GoDoc

dealing with dois in go

Usage

d, err := doi.Parse("11.1038/123456")
if err != nil {
    println(d.ToString())
}
if d.IsValid() {
    println("We are happy!")
}