mirror of
https://github.com/balkian/gists.git
synced 2025-07-13 03:02:23 +00:00
git-subtree-dir: repos/f2336b4263cc7fa4db91 git-subtree-mainline: a721c4871c2993cfb76e7f3abe03f135ccf70483 git-subtree-split: 7af9faf0ce32831428b7bf52ed7174fa0f52c47d
7 lines
212 B
Python
7 lines
212 B
Python
# -*- coding: utf-8 -*-
|
|
from rdflib import Graph, plugin
|
|
from rdflib.serializer import Serializer
|
|
import sys
|
|
|
|
g = Graph().parse(sys.argv[1], format='json-ld')
|
|
print "Hooray! It seems to be a valid json-ld file!" |