{"id":16432486,"url":"https://github.com/glytching/tranquil","last_synced_at":"2025-10-27T02:30:37.422Z","repository":{"id":39961153,"uuid":"147915251","full_name":"glytching/tranquil","owner":"glytching","description":"A Java query library using a SQL grammar","archived":false,"fork":false,"pushed_at":"2023-03-31T15:14:13.000Z","size":251,"stargazers_count":5,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T01:32:45.948Z","etag":null,"topics":["antlr4","groovy","java","java8","json","query-language","sql-query"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/glytching.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-08T08:18:53.000Z","updated_at":"2022-10-28T14:44:45.000Z","dependencies_parsed_at":"2023-01-19T20:17:16.075Z","dependency_job_id":null,"html_url":"https://github.com/glytching/tranquil","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glytching%2Ftranquil","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glytching%2Ftranquil/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glytching%2Ftranquil/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glytching%2Ftranquil/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/glytching","download_url":"https://codeload.github.com/glytching/tranquil/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238422778,"owners_count":19469614,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["antlr4","groovy","java","java8","json","query-language","sql-query"],"created_at":"2024-10-11T08:43:34.770Z","updated_at":"2025-10-27T02:30:31.952Z","avatar_url":"https://github.com/glytching.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Tranquil\n========\n\n[![Build Status](https://circleci.com/gh/glytching/tranquil.svg?style=svg)](https://circleci.com/gh/glytching/tranquil)  [![Coverage Status](https://coveralls.io/repos/github/glytching/tranquil/badge.svg?branch=master)](https://coveralls.io/github/glytching/tranquil?branch=master) [![Scrutinizer](https://img.shields.io/scrutinizer/g/glytching/tranquil.svg)](https://scrutinizer-ci.com/g/glytching/junit-extensions/) [![Javadoc](https://javadoc.io/badge2/io.github.glytching/tranquil/javadoc.svg)](https://javadoc.io/doc/io.github.glytching/tranquil) [![Maven Central](https://img.shields.io/maven-central/v/io.github.glytching/tranquil.svg)](http://repo1.maven.org/maven2/io/github/glytching/tranquil/1.0.0/) [![GitHub Release](https://img.shields.io/github/release/glytching/tranquil.svg)](https://github.com/glytching/tranquil/releases)\n\nTranquil is a Java library which provides a SQL-esque language for querying JSON and `Map`s.\n\nTranquil wraps a JSON de/serialization library and adds some predicate and projection capabilities. The inputs for these capabilities are expressed in SQL since many developers are likely to be familiar with using SQL to express `select` and `where` clauses.\n\nThat's quite a mouthful so have a quick look at the [simple example](https://github.com/glytching/tranquil/wiki/SimpleExample) for clarification.\n\nPlenty more details [in the docs](https://github.com/glytching/tranquil/wiki).\n\n\n### Examples\n\nSee the [docs](https://github.com/glytching/tranquil/wiki), specifically:\n\n* [Simple](https://github.com/glytching/tranquil/wiki/SimpleExample)\n* [Nested](https://github.com/glytching/tranquil/wiki/NestedExample)\n* [Matching](https://github.com/glytching/tranquil/wiki/MatchingExample)\n* [Transformation](https://github.com/glytching/tranquil/wiki/TransformationExample)\n* [Bespoke Ouput Types](https://github.com/glytching/tranquil/wiki/BespokeOutputTypesExample)\n\n### Using Tranquil\n\nThe `tranquil` library is available on [Maven Central](http://search.maven.org/#artifactdetails%7Cio.github.glytching%7Ctranquil%7C1.0.0%7Cjar). Note: if using Tranquil as a test utility then use `\u003cscope\u003etest\u003c/scope\u003e` or `testCompile`.\n\n#### Maven\n\n```\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.glytching\u003c/groupId\u003e\n    \u003cartifactId\u003etranquil\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n#### Gradle\n\n```\ncompile 'io.github.glytching:tranquil:1.0.0'\n```\n\n### Building Tranquil\n\n```\n$ git clone https://github.com/glytching/tranquil.git\n$ cd tranquil\n$ mvn clean install\n```\n\nThis will compile and run all automated tests and install the library in your local Maven repository.\n\nNote: the code is formatted using the [Google Code Formatter](https://github.com/google/google-java-format).\n\n### License\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglytching%2Ftranquil","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglytching%2Ftranquil","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglytching%2Ftranquil/lists"}