Skip to content
This repository was archived by the owner on Jan 5, 2022. It is now read-only.

Commit faac458

Browse files
committed
Refactor sparql proxy into python to use rdflib
1 parent a9e21d1 commit faac458

33 files changed

+90
-631
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ neptune
22
lambda.zip
33
result.log
44
vendor/*
5+
__pycache__
6+
env/*
7+
*.pyc

Gopkg.lock

-150
This file was deleted.

Gopkg.toml

-34
This file was deleted.

Makefile

-5
This file was deleted.

cmd/neptune/main.go

-27
This file was deleted.

cmd/neptune/main_test.go

-107
This file was deleted.

docker-compose.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: "2"
2+
services:
3+
localstack:
4+
image: localstack/localstack:latest
5+
ports:
6+
- 4567-4583:4567-4583
7+
environment:
8+
SERVICES: sns
9+
DEBUG: 1
10+
triplestore:
11+
image: lyrasis/blazegraph:2.1.4
12+
ports:
13+
- "8080:8080"

fixtures/bad_insert.txt

-1
This file was deleted.

fixtures/decoded_query.txt

-1
This file was deleted.

fixtures/encoded_query.txt

-1
This file was deleted.
File renamed without changes.

fixtures/etl_query.txt

-1
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

fixtures/insert.txt

-1
This file was deleted.

fixtures/select_triples.txt

-1
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)