DBLPInterface 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 -> stringSimple string representation of a publication.
val author : ?hits:int -> string -> author listFind an author.
val publication : ?hits:int -> string -> publication listFind a publication.
val venue : ?hits:int -> string -> venue listFind a venue.