Mercurial > repos > sem4j > sparql_tools
changeset 8:bf6b5640e0a8 draft
Uploaded
author | sem4j |
---|---|
date | Fri, 27 Sep 2013 02:59:16 -0400 |
parents | 10c67e473958 |
children | 2c9827b61b71 |
files | sparql.py |
diffstat | 1 files changed, 21 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sparql.py Fri Sep 27 02:59:16 2013 -0400 @@ -0,0 +1,21 @@ +# sparql.py version:0.1 +# USAGE: python sparql.py <str_select> <input_file> <output_file> + +import sys, os, commands + +argvs = sys.argv +if (len(argvs) != 4): + print 'Number of argv is incorrect' + quit() + +out = open('query.tmp', 'w') +out.write(argvs[1]) +out.close() + +os.system('mv ' + argvs[2] + ' ' + argvs[2] + '.nt') +stdout = commands.getoutput('/Users/Ryota/Softwares/jena/apache-jena-2.11.0/bin/sparql --query=query.tmp --data=' + argvs[2] + '.nt -results=TSV') +os.system('mv ' + argvs[2] + '.nt ' + argvs[2]) + +out = open(argvs[3], 'w') +out.write(stdout) +out.close()