Skip to content

Commit

Permalink
general updates for jena
Browse files Browse the repository at this point in the history
  • Loading branch information
stuchalk committed May 30, 2023
1 parent 78a5fb7 commit 16c845c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion datafiles/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@

if True:
# get json content for files for a particular journal (format ['files'=>[],'errors'=>[]])
jsn = requests.get('https://sds.coas.unf.edu/trc/admin/jldlist/jced')
# jsn = requests.get('https://sds.coas.unf.edu/trc/admin/jldlist/jced')
jsn = requests.get('http://localhost:8080/admin/jldlist/ijt')
flist = json.loads(jsn.content)
cnt = 1
offset = 0
Expand Down
5 changes: 3 additions & 2 deletions workflow/jena_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
from sciflow import localsettings


path = "http://jena1.unfcsd.unf.edu:3030/"
dataset = "SciData"
# path = "http://jena1.unfcsd.unf.edu:3030/"
path = "http://localhost:3030/"
dataset = "nisttrc"
hdrs = {'Content-Type': 'application/json'}
hdrsld = {'Content-Type': 'application/ld+json'}
fpath = localsettings.ppath + "/static/files/"
Expand Down

0 comments on commit 16c845c

Please sign in to comment.