{"id":15062794,"url":"https://github.com/elken/blitzcrank","last_synced_at":"2025-12-12T01:17:08.456Z","repository":{"id":57713826,"uuid":"93771099","full_name":"elken/blitzcrank","owner":"elken","description":"Clojure version of the League of Legends API","archived":true,"fork":false,"pushed_at":"2018-03-01T12:14:43.000Z","size":167,"stargazers_count":0,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-18T20:41:23.101Z","etag":null,"topics":["clojure","league-of-legends","leagueoflegends"],"latest_commit_sha":null,"homepage":"https://elken.github.io/blitzcrank","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elken.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-06-08T16:38:36.000Z","updated_at":"2023-01-28T20:36:27.000Z","dependencies_parsed_at":"2022-09-13T08:31:38.627Z","dependency_job_id":null,"html_url":"https://github.com/elken/blitzcrank","commit_stats":null,"previous_names":["elken/lol-api"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elken%2Fblitzcrank","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elken%2Fblitzcrank/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elken%2Fblitzcrank/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elken%2Fblitzcrank/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elken","download_url":"https://codeload.github.com/elken/blitzcrank/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235321031,"owners_count":18971230,"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":["clojure","league-of-legends","leagueoflegends"],"created_at":"2024-09-24T23:46:43.034Z","updated_at":"2025-10-04T22:31:29.164Z","avatar_url":"https://github.com/elken.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# blitzcrank [![Clojars Project](https://img.shields.io/clojars/v/blitzcrank.svg)](https://clojars.org/blitzcrank) [![Build Status](https://travis-ci.org/elken/blitzcrank.svg?branch=master)](https://travis-ci.org/elken/blitzcrank)\n\nA Clojure implementation of the public [League of Legends API](https://developer.riotgames.com/). No access to tournament API yet.\n\n# Usage\nAdd the library to your project as below:\n\n### Leiningen/Boot\n```\n[blitzcrank \"0.1.5\"]\n```\n### Gradle\n```groovy\ncompile \"blitzcrank:blitzcrank:0.1.5\"\n```\n### Maven\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eblitzcrank\u003c/groupId\u003e\n  \u003cartifactId\u003eblitzcrank\u003c/artifactId\u003e\n  \u003cversion\u003e0.1.5\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nAPI methods are located in the `blitzcrank.endpoints` namespace.\n\n### Example\n```clojure\nuser=\u003e (require '[blitzcrank.endpoints.summoner :as summoner])\n=\u003e nil\nuser=\u003e (summoner/by-name \"Instadrone\" {:api-key \"AVALIDKEY\"})\nAttempting to get https://euw1.api.riotgames.com/lol/summoner/v3/summoners/by-name/Instadrone\n=\u003e\n{:id 44040660,\n :accountId 37951631,\n :name \"Instadrone\",\n :profileIconId 1666,\n :revisionDate 1497913390000,\n :summonerLevel 30}\n\n```\n## Feature parity\n| Feature| Status| \n| -------- | -------- |\n| [champion-mastery-v3](https://developer.riotgames.com/api-methods/#champion-mastery-v3)   | [Implemented](https://github.com/elken/blitzcrank/blob/master/src/blitzcrank/endpoints/champion_mastery.clj) \n| [champion-v3](https://developer.riotgames.com/api-methods/#champion-v3) | [Implemented](https://github.com/elken/blitzcrank/blob/master/src/blitzcrank/endpoints/champion.clj)\n| [league-v3](https://developer.riotgames.com/api-methods/#league-v3) | [Implemented](https://github.com/elken/blitzcrank/blob/master/src/blitzcrank/endpoints/leagues.clj) |\n| [static-data-v3](https://developer.riotgames.com/api-methods/#lol-static-data-v3) | Not yet implemented |\n| [lol-status-v3](https://developer.riotgames.com/api-methods/#lol-status-v3) | [Implemented](https://github.com/elken/blitzcrank/blob/master/src/blitzcrank/endpoints/status.clj) \n| [masteries-v3](https://developer.riotgames.com/api-methods/#masteries-v3) | [Implemented](https://github.com/elken/blitzcrank/blob/master/src/blitzcrank/endpoints/masteries.clj)\n| [match-v3](https://developer.riotgames.com/api-methods/#match-v3) | Not yet implemented | \n| [runes-v3](https://developer.riotgames.com/api-methods/#runes-v3) | [Implemented](https://github.com/elken/blitzcrank/blob/master/src/blitzcrank/endpoints/runes.clj)\n| [spectator-v3](https://developer.riotgames.com/api-methods/#spectator-v3) | Not yet implemented |\n| [summoner-v3](https://developer.riotgames.com/api-methods/#summoner-v3) | [Implemented](https://github.com/elken/blitzcrank/blob/master/src/blitzcrank/endpoints/summoner.clj) \n\n## Config\n\nDefault configuration can be provided by supplying a `config.edn` file within a resource-path \n(the top-level `resources` directory is provided) by default. Further paths can be adding by adding a `:profile` map to\n`project.clj` as below:\n```clojure\n:profiles {:prod {:resource-paths [\"config/prod\"]}\n           :dev  {:resource-paths [\"config/dev\"]}}\n```\n\nCurrently supported options are:\n\n### `api-key` \n\nPrimarily used for testing, but can also be used to simplify the application. Every call to an API method will attempt \nto read this value if no argument is passed.\n\nDefault: None, must be entered by user if desired.\n\n### `region`\n\nDefault region to use for API calls. As before, every call to an API method can be called with a region. Setting this \nto your largest projected userbase would be a sensible idea.\n\nDefault: `euw1`\n\n### `locale`\n\nThis is used by the `lol-status` endpoint in order to attempt to get a localized version of a status message.\n\nDefault: `en_GB`\n\n## Development\n\nRun in a REPL with `lein repl`. \n\n### Documentation\nAPI documentation is available [online](https://elken.github.io/blitzcrank/) and [offline](https://github.com/elken/blitzcrank/docs),\ngenerated using [codox](https://github.com/weavejester/codox). Generate using `lein codox`, which by default will output\nthe docs to `docs`.\n\n## License\n\nCopyright © 2017 Ellis Kenyő\n\nDistributed under the BSD 3 Clause.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felken%2Fblitzcrank","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felken%2Fblitzcrank","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felken%2Fblitzcrank/lists"}