File: shex_validate_file.py

package info (click to toggle)
rudof 0.1.146%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,048 kB
  • sloc: python: 1,288; makefile: 32; sh: 1
file content (11 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
from pyrudof import Rudof, RudofConfig, ShExFormat, RDFFormat, ReaderMode, ShapeMapFormat

rudof = Rudof(RudofConfig())

rudof.read_shex("examples/person.shex", ShExFormat.ShExC)
rudof.read_data("examples/person.ttl", RDFFormat.Turtle)
rudof.read_shapemap("examples/person.sm", ShapeMapFormat.Compact)

result = rudof.validate_shex()

print(result.show())