DBLP
Interface to the DBLP API.
type publication = {
}
A publication.
type venue = {
venue_name : string; | (* Name. *) |
venue_acronym : string; | (* Acronym. *) |
venue_type : string; | (* Type (Conference or Workshop, etc.). *) |
venue_url : string; | (* DBLP URL. *) |
}
A venue.
val string_of_publication : publication -> string
Simple string representation of a publication.
val author : ?hits:int -> string -> author list
Find an author.
val publication : ?hits:int -> string -> publication list
Find a publication.
val venue : ?hits:int -> string -> venue list
Find a venue.