https://github.com/hernanmd/sparql
Generic SPARQL client API for Smalltalk
https://github.com/hernanmd/sparql
pharo pharo-smalltalk sparql
Last synced: 7 days 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 (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-09-03T15:43:25.000Z (almost 8 years ago)
- Last Synced: 2025-02-22T22:41:58.259Z (over 1 year 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' ];
" ... "
```