Skip to content

joyhong85/JoyVis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JoyVis

RDF Visualization

For SPARQL Endpoint

from JoyVis import Vis

v = Vis('http://localhost:3030/publicdata/query')
nw = v.vis(limit=50)
result = 'html/sample1.html'
nw.show(result)

sample1 result

For Local File

from JoyVis import Vis

v = Vis(filepath='/Users/joyhong/sample_result.ttl')
nw = v.vis_file(limit=200)
result = 'html/sample8.html'
nw.show(result)

sample1 result

For Jupyter Notebook

from JoyVis import Vis

v = Vis('http://localhost:3030/publicdata/query', notebook = True)
nw = v.vis(limit=50)
result = 'html/sample_notebook.html'
nw.show(result)

Requirements

  • pyvis
  • RDFLib
  • SPARQLWrapper

About

RDF Visualization

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published