Try to parse some files

This commit is contained in:
erik 2023-06-20 13:08:04 +02:00
parent 587dae43d8
commit d7fdf177b7

View file

@ -5,7 +5,7 @@
[clojure.spec.alpha :as s] [clojure.spec.alpha :as s]
[clojure.inspector :as ins] [clojure.inspector :as ins]
[hato.client :as hato] [hato.client :as hato]
[clojure.string :as str] [clojure.string :as st]
[clojure.walk :as walk])) [clojure.walk :as walk]))
(def team-url "https://social.meissa-gmbh.de/users/team") (def team-url "https://social.meissa-gmbh.de/users/team")
@ -19,6 +19,14 @@
(def team (ap/GET team-url)) (def team (ap/GET team-url))
(def resource-path "src/main/resources/")
(def activitystreams-ttl (str resource-path "activitystreams_2.0_owl.ttl"))
(def rdf-schema-ttl (str resource-path "rdf_schema_1.1.ttl"))
(def example-ttl (str resource-path "example.ttl"))
(parse/parse-turtle activitystreams-ttl)
(parse/parse-turtle example-ttl)
;;(ins/inspect-tree team-ld) ;;(ins/inspect-tree team-ld)