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.
- Host: GitHub
- URL: https://github.com/hzafar/isbd-parser
- Owner: hzafar
- License: mit
- Created: 2020-05-08T03:30:28.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-01-21T01:58:05.000Z (over 5 years ago)
- Last Synced: 2024-12-13T02:23:08.587Z (over 1 year ago)
- Topics: context-sensitive, isbd, library-catalogue, librarydata, marc21, parsing
- Language: Kotlin
- Homepage:
- Size: 199 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
```