This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json,urllib2,urllib,traceback, sys | |
def query(q,apikey,epr,f='application/json'): | |
try: | |
params = {'query': q, 'apikey': apikey} | |
params = urllib.urlencode(params) | |
opener = urllib2.build_opener(urllib2.HTTPHandler) | |
request = urllib2.Request(epr+'?'+params) | |
request.add_header('Accept', f) | |
request.get_method = lambda: 'GET' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public ResultSet executeQuery(String queryString) throws Exception { | |
Query query = QueryFactory.create(queryString) ; | |
QueryEngineHTTP qexec = QueryExecutionFactory.createServiceRequest(this.service, query) | |
qexec.addParam("apikey", this.apikey) | |
ResultSet results = qexec.execSelect() ; | |
return results; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'pry' | |
module Test | |
module Settings | |
def self.included(base) | |
base.extend(ClassMethods) | |
end | |
module ClassMethods | |
attr_accessor :settings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import timeit | |
DATA = 'abcdef' | |
def bytearr(): | |
bytesn = 1024 * 1024 * 5 | |
s = bytearray(bytesn) | |
i = 0 | |
while i < bytesn: | |
s[i] = DATA[i%len(DATA)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import urllib,urllib2 | |
import traceback | |
import pdb | |
import time | |
import json | |
import os | |
def query(q,epr,f='text/plain'): | |
params = {'query': q} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE rdf:RDF [ | |
<!ENTITY dcam "http://purl.org/dc/dcam/" > | |
<!ENTITY dcterms "http://purl.org/dc/terms/" > | |
<!ENTITY dcmitype "http://purl.org/dc/dcmitype/" > | |
<!ENTITY dwc "http://rs.tdwg.org/dwc/terms/" > | |
<!ENTITY dwctype "http://rs.tdwg.org/dwc/dwctype/" > | |
<!ENTITY owl "http://www.w3.org/2002/07/owl#" > | |
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import time | |
import pdb | |
import json | |
import sys | |
import urllib | |
FILE_NAME = "ontology_ids_and_parents.txt" | |
APIKEY = 'YOUR KEY' |
OlderNewer