Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hernanmd/sparql
Generic SPARQL client API for Smalltalk
https://github.com/hernanmd/sparql
pharo pharo-smalltalk sparql
Last synced: about 2 months ago
JSON representation
Generic SPARQL client API for Smalltalk
- Host: GitHub
- URL: https://github.com/hernanmd/sparql
- Owner: hernanmd
- License: mit
- Created: 2015-03-03T20:01:18.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-09-03T15:43:25.000Z (over 6 years ago)
- Last Synced: 2024-05-01T14:12:36.443Z (8 months ago)
- Topics: pharo, pharo-smalltalk, sparql
- Language: Smalltalk
- Size: 23.4 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SPARQL
Generic SPARQL client API for Smalltalk# Installation
```smalltalk
Metacello new
baseline: 'SPARQL';
repository: 'github://hernanmd/SPARQL/repository';
load.
```# Baseline String
If you want to add the SPARQL to your Metacello Baselines or Configurations, copy and paste the following expression:```smalltalk
" ... "
spec
baseline: 'SPARQL'
with: [ spec repository: 'github://hernanmd/SPARQL/repository' ];
" ... "
```