Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weso/turbine
📚 RDF Stream Validation Library
https://github.com/weso/turbine
rdf shape-expressions shex stream validation
Last synced: 28 days ago
JSON representation
📚 RDF Stream Validation Library
- Host: GitHub
- URL: https://github.com/weso/turbine
- Owner: weso
- License: apache-2.0
- Created: 2019-04-12T22:01:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T12:51:16.000Z (over 4 years ago)
- Last Synced: 2024-11-06T12:53:46.967Z (3 months ago)
- Topics: rdf, shape-expressions, shex, stream, validation
- Language: Kotlin
- Homepage:
- Size: 59.6 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Welcome to turbine
Turbine is a library that allows to validate RDF streams against a given schema.## How to use turbine
```java
// Turbine will connect to kafka at the given ip address and to the given topic.
Turbine turbine = new Turbine(new KafkaConsumer("127.0.0.1", "rdf-streams-topic"),
Validator.DEFAULT_SHACLEX_VALIDATOR);// Start turbine
turbine.run();// Do whatever you want...
// Will tear down the connection to kafka.
turbine.stop();```