{"id":19311081,"url":"https://github.com/boxuk/trello","last_synced_at":"2025-11-09T11:30:35.679Z","repository":{"id":3001285,"uuid":"4019187","full_name":"boxuk/trello","owner":"boxuk","description":"Clojure wrapper for the Trello API","archived":false,"fork":false,"pushed_at":"2015-07-14T12:18:36.000Z","size":267,"stargazers_count":13,"open_issues_count":0,"forks_count":13,"subscribers_count":47,"default_branch":"master","last_synced_at":"2025-08-24T19:49:48.267Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"www.boxuk.com","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/boxuk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-04-13T18:49:49.000Z","updated_at":"2019-10-19T12:46:12.000Z","dependencies_parsed_at":"2022-09-21T08:02:17.203Z","dependency_job_id":null,"html_url":"https://github.com/boxuk/trello","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/boxuk/trello","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxuk%2Ftrello","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxuk%2Ftrello/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxuk%2Ftrello/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxuk%2Ftrello/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boxuk","download_url":"https://codeload.github.com/boxuk/trello/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boxuk%2Ftrello/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003545,"owners_count":26083595,"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","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"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":[],"created_at":"2024-11-10T00:27:40.240Z","updated_at":"2025-10-10T10:39:21.616Z","avatar_url":"https://github.com/boxuk.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"## This repository is no longer maintained\n\n**We recommend [this fork](https://github.com/bsima/trello) instead.**\n\n# Trello\n\nClojure wrapper for the Trello API.\n\nTo generate your api key and api token visit: https://trello.com/1/appKey/generate\n\n## Usage\n\nTrello is available from Clojars.org. To use it, add the following as a dependency in Leiningen.\n\n```clojure\n[trello \"0.1.2-SNAPSHOT\"]\n```\n\n# Authentication\n\nThis library does NOT implement OAuth.\n\nYou'll need to get an access token from Trello. To do this you can use the following URL\n\nhttps://trello.com/1/authorize?key=YOURKEY\u0026name=My+Application\u0026expiration=never\u0026response_type=token\u0026scope=read,write\n\n## Examples\n\nThe first things you'll need to do are to fetch an API key and auth token\n\n```clojure\n(require [trello.core :as trello])\n\n(def auth \n  {:key \"YOURKEY\"\n   :token \"YOURAUTHTOKEN\"})\n```\n\nListing all boards\n\n```clojure\n\n(def auth \n  {:key \"YOURKEY\"\n   :token \"YOURAUTHTOKEN\"})\n   \n(def all-boards (trello/boards auth))\n\n(doseq [board all-boards]\n  (println (:name board)))\n  \n```\n\nFetch a list of active Trello boards\n\n```clojure\n\n(trello/active-board-names auth)\n\n;; =\u003e (\"Barnaby Edwards\" \"Business\" \"Gather Requirements (product backlog)\" \"General\" \"Programming/Study\")\n```\n\n## CLI\n\nYou can run this as a command line app using Lein. The CLI requires a file called config.clj to be\nset in the root directory with the following info\n\nconfig.clj\n\n```clojure\n{\n  :key \"YOURKEY\"\n  :token \"YOURTOKEN\"\n}\n```\n\nShow all your Trello boards\n\n```\nlein run boards\n```\n\n## General notes\n\n+ A memoized request can be produced by using the m- version of a function. I.e m-boards\n\n## License\n\nCopyright © BoxUK\n\nDistributed under the Eclipse Public License, the same as Clojure.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboxuk%2Ftrello","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboxuk%2Ftrello","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboxuk%2Ftrello/lists"}