{"id":17329035,"url":"https://github.com/rudolfochrist/jasql","last_synced_at":"2026-05-19T15:09:54.468Z","repository":{"id":138513775,"uuid":"322825265","full_name":"rudolfochrist/jasql","owner":"rudolfochrist","description":"Simple SQL in Common Lisp","archived":false,"fork":false,"pushed_at":"2024-11-08T17:55:28.000Z","size":434,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T10:29:01.231Z","etag":null,"topics":["common-lisp","lisp","postgresql","sqlite"],"latest_commit_sha":null,"homepage":"https://rudolfochrist.github.io/jasql","language":"Common Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rudolfochrist.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-12-19T10:53:05.000Z","updated_at":"2024-11-08T17:55:31.000Z","dependencies_parsed_at":"2024-11-08T18:30:18.789Z","dependency_job_id":"51e7737b-2955-41e4-8120-eb688be906c6","html_url":"https://github.com/rudolfochrist/jasql","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudolfochrist%2Fjasql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudolfochrist%2Fjasql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudolfochrist%2Fjasql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudolfochrist%2Fjasql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rudolfochrist","download_url":"https://codeload.github.com/rudolfochrist/jasql/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245790295,"owners_count":20672480,"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":["common-lisp","lisp","postgresql","sqlite"],"created_at":"2024-10-15T14:25:58.294Z","updated_at":"2026-05-19T15:09:49.871Z","avatar_url":"https://github.com/rudolfochrist.png","language":"Common Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# -*- mode: org; -*-\n#+MACRO: version (eval (with-temp-buffer (insert-file-contents-literally \"../version\" nil) (buffer-substring-no-properties (point-min) (point-max))))\n#+STARTUP: showall\n#+OPTIONS: toc:nil author:nil\n* NAME\n\njasql --- Simple SQL in Common Lisp. A direct port of Python's anosql.\n\n* SYNOPSIS\n\nOn the SQL side:\n#+begin_src sql\n-- name: get-all-articles\n-- Retreive all articles.\nSELECT * FROM articles;\n\n-- name: add-new-article!\n-- Adds a new articles.\nINSERT INTO articles\n(title, author)\nVALUES\n(:title, :author);\n#+end_src\n\nOn the Lisp side:\n#+begin_src lisp\n(jasql:load-sql \"sql/articles.sql\" :system \"blog\")\n\n(add-new-article *db* :title \"On lisp\" :author \"paulg\")\n(get-all-articles *db*)\n#+end_src\n\n* DESCRIPTION\n\n=jasql= is a direct port of [[https://github.com/honza/anosql][anosql]] from Python to Common Lisp. A [[https://github.com/krisajenkins/yesql/][Yesql]]-style SQL library.\n\nFor more documentation read the Info file.\n\n** INSTALLATION\n\n=jasql= is not in Quicklisp. Either put it into QL's local projects or to any other place where\nQL/ASDF can find it.\n\nYou can run ~make install~ to install it to =/usr/local/lisp/jasql= or any other =prefix= ASDF knows about.\n\n* AUTHOR\n\nSebastian Christ ([[mailto:rudolfo.christ@pm.me]])\n\n* LICENSE\n\nReleased under the MPL-2.0 license.\n\n* SEE ALSO\n\n- [[https://github.com/honza/anosql]]\n- [[https://github.com/ruricolist/cl-yesql]]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frudolfochrist%2Fjasql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frudolfochrist%2Fjasql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frudolfochrist%2Fjasql/lists"}