An open API service indexing awesome lists of open source software.

https://github.com/hzafar/isbd-parser

A context-sensitive ISBD parser.
https://github.com/hzafar/isbd-parser

context-sensitive isbd library-catalogue librarydata marc21 parsing

Last synced: 5 months ago
JSON representation

A context-sensitive ISBD parser.

Awesome Lists containing this project

README

          

# isbd-parser

**ISBD Parsing Library**

## Overview

isbd-parser is a Kotlin library for working with ISBD-punctutated data, using the [Autumn](https://github.com/norswap/autumn)
context-sensitive parsing library.

See the [wiki](https://github.com/hzafar/isbd-parser/wiki) for information on getting started.

Documentation available [here](https://javadoc.io/doc/ca.voidstarzero/isbd-parser).

## Try it out

You can play with an example application made using this library at [isbuddy.voidstarzero.ca](http://isbuddy.voidstarzero.ca).

## Installation

### Maven

```



jitpack.io
https://jitpack.io

ca.voidstarzero
isbd-parser
1.1.0

```

### Gradle
```
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}

dependencies {
implementation "ca.voidstarzero:isbd-parser:1.1.0"
}
```