{"id":23438511,"url":"https://github.com/lszeremeta/rtriples","last_synced_at":"2026-04-19T15:05:51.151Z","repository":{"id":7488943,"uuid":"41452702","full_name":"lszeremeta/RTriples","owner":"lszeremeta","description":"Simple, but powerful RDF graph store","archived":false,"fork":false,"pushed_at":"2025-02-12T21:12:19.000Z","size":16,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-19T23:36:45.013Z","etag":null,"topics":["caching","linked-data","rdf","rdf-graph-store","rethinkdb","ruby","semantic-web","sinatra","triplestore"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lszeremeta.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-08-26T22:21:30.000Z","updated_at":"2020-07-28T00:24:26.000Z","dependencies_parsed_at":"2025-02-15T11:46:55.877Z","dependency_job_id":"29a5efef-96dc-4d7f-99eb-1262019654a1","html_url":"https://github.com/lszeremeta/RTriples","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lszeremeta/RTriples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lszeremeta%2FRTriples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lszeremeta%2FRTriples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lszeremeta%2FRTriples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lszeremeta%2FRTriples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lszeremeta","download_url":"https://codeload.github.com/lszeremeta/RTriples/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lszeremeta%2FRTriples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32010964,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["caching","linked-data","rdf","rdf-graph-store","rethinkdb","ruby","semantic-web","sinatra","triplestore"],"created_at":"2024-12-23T14:49:50.424Z","updated_at":"2026-04-19T15:05:51.115Z","avatar_url":"https://github.com/lszeremeta.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RTriples\n\nSimple but powerful RDF graph store based on awesome [RethinkDB database](http://www.rethinkdb.com/) \u0026 [Ruby](https://www.ruby-lang.org/) projects like [Sinatra](https://github.com/sinatra/sinatra).\n\n\n## Installation\n\n```\ngit clone https://github.com/lszeremeta/RTriples.git\ncd RTriples\nbundle\n```\n\n_Note_: RethinkDB must be [installed](http://www.rethinkdb.com/docs/install/) and [started](http://www.rethinkdb.com/docs/start-a-server/).\n\nNow you may need to import some triples to RethinkDB ([RDF/JSON serialization](http://www.w3.org/2009/12/rdf-ws/papers/ws02)). You can simply generate it through [bsbmtools-json](https://github.com/lszeremeta/bsbmtools-json) or just use one of [generated samples](https://github.com/lszeremeta/bsbmtools-json-samples).\n\nAfter that, import this data to RethinkDB:\n\n```\nrethinkdb import -f 100.json --table rtriples.100\n```\n\nThat's all.\n\n## Running client\n\nYou now need another simple step to start the client:\n\n```\nrackup -E production\n```\n\nAdvanced options:\n\n```\nrackup [-E development|production] [-p PORT]\n```\n\n## Example usage\n\n```\nhttp://localhost:9292/?s=\u0026p=\u0026o=http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/instances/ProductFeature179\n```\n\nor simply:\n\n```\nhttp://localhost:9292/?o=http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/instances/ProductFeature179\n```\n\nreturns HTML table with subjects and predicates related to object.\n\n## Available params\n\n* ```s``` - subject value (default: _nothing_)\n* ```p``` - predicate value (default: _nothing_)\n* ```o``` - object value (default: _nothing_)\n* ```type``` - object type (default: ```uri```; other options: ```literal```, ```typed-literal```)\n* ```lang``` - object language (default: _nothing_; allowed only if ```type``` is ```literal```)\n* ```datatype``` - object datatype (default: _nothing_; allowed only if ```type``` is ```typed-literal```)\n* ```limit``` - results limit (default: ```10```)\n* ```format``` - output format (default: ```html```; other options: ```json```, ```nt```, ```csv```, ```txt```)\n\n## Output formats\n\nClient returns results as HTML table by default, but you can change it!\n\nSpecify the output format using ```format``` parameter:\n* ```json``` - [RDF/JSON](http://www.w3.org/2009/12/rdf-ws/papers/ws02)\n* ```nt``` - [N-Triples](http://www.w3.org/TR/n-triples/)\n* ```csv``` - [Comma-Separated Values (CSV) file](https://tools.ietf.org/html/rfc4180)\n* ```txt``` - simple text document output\n* ```html``` - standard HTML table (default option)\n\n## License\nDistributed under [MIT license](https://github.com/lszeremeta/RTriples/blob/master/LICENSE.txt).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flszeremeta%2Frtriples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flszeremeta%2Frtriples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flszeremeta%2Frtriples/lists"}