{"id":18681843,"url":"https://github.com/gravityblast/cerebellum","last_synced_at":"2025-11-07T16:30:29.728Z","repository":{"id":10208864,"uuid":"12303616","full_name":"gravityblast/cerebellum","owner":"gravityblast","description":"small implementation of the Musicbrainz Web Service in Go","archived":false,"fork":false,"pushed_at":"2014-02-17T18:27:38.000Z","size":264,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-05T22:41:56.003Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","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/gravityblast.png","metadata":{"files":{"readme":"README.md","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}},"created_at":"2013-08-22T17:43:34.000Z","updated_at":"2022-10-14T11:56:58.000Z","dependencies_parsed_at":"2022-08-27T03:52:00.367Z","dependency_job_id":null,"html_url":"https://github.com/gravityblast/cerebellum","commit_stats":null,"previous_names":["pilu/cerebellum"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravityblast%2Fcerebellum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravityblast%2Fcerebellum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravityblast%2Fcerebellum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravityblast%2Fcerebellum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gravityblast","download_url":"https://codeload.github.com/gravityblast/cerebellum/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239533064,"owners_count":19654617,"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":[],"created_at":"2024-11-07T10:09:54.811Z","updated_at":"2025-11-07T16:30:29.694Z","avatar_url":"https://github.com/gravityblast.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cerebellum\n\nCerebellum is a small implementation of the [Musicbrainz Web Service](https://wiki.musicbrainz.org/Development/XML_Web_Service/Version_2)\nmade in [Go](http://golang.org/) with the [Trafic Web Framework](http://github.com/pilu/traffic).\n\nTo compile and run Cerebellum you need Go and the Musicbrainz database.\n\n## Installation\n\n    go get github.com/pilu/cerebellum\n\nCopy the config file sample to another location\n\n    cp /go/path/src/github.com/pilu/cerebellum/traffic.conf.sample /custom/path/traffic.conf\n\n## Usage\n\n    TRAFFIC_CONFIG_FILE=/custom/path/traffic.conf cerebellum\n\n## Available API\n\n###Artist:\n\n    /artists/056e4f3e-d505-4dad-8ec1-d04f521cbb56.json\n\nResponse:\n\n    {\n      gid: \"056e4f3e-d505-4dad-8ec1-d04f521cbb56\",\n      name: \"Daft Punk\",\n      sortName: \"Daft Punk\",\n      comment: \"\",\n      beginDate: \"1992\",\n      endDate: \"\",\n      type: \"Group\"\n    }\n\n###Artist Release Groups:\n\n    /artists/056e4f3e-d505-4dad-8ec1-d04f521cbb56/release-groups.json\n\nResponse:\n\n    [\n      {\n        gid: \"35a4f900-60c1-3f79-8cdb-193941b78768\",\n        name: \"The New Wave\",\n        comment: \"\",\n        firstReleaseDate: \"1994-04-11\",\n        type: \"Single\"\n      },\n      ...\n\n###Artist Release Group:\n\n    /artists/056e4f3e-d505-4dad-8ec1-d04f521cbb56/release-groups/aa997ea0-2936-40bd-884d-3af8a0e064dc.json\n\nResponse:\n\n    {\n      gid: \"aa997ea0-2936-40bd-884d-3af8a0e064dc\",\n      name: \"Random Access Memories\",\n      comment: \"\",\n      firstReleaseDate: \"2013-05-17\",\n      type: \"Album\",\n      artists: [\n        {\n          gid: \"056e4f3e-d505-4dad-8ec1-d04f521cbb56\",\n          name: \"Daft Punk\"\n        }\n      ]\n    }\n\n###Artist Releases (first release for each release group):\n\n    /artists/056e4f3e-d505-4dad-8ec1-d04f521cbb56/releases.json\n\nResponse:\n\n    [\n      {\n        gid: \"95d9f3ef-c935-4a7b-b9cb-36aea57b6bae\",\n        name: \"The New Wave\",\n        comment: \"\",\n        date: \"1994-04-11\",\n        status: \"Official\",\n        type: \"Single\",\n        packaging: \"\"\n      },\n      {\n        gid: \"b1f35e3e-0d4f-451f-93c7-1eb8809b9aa5\",\n        name: \"Da Funk\",\n        comment: \"\",\n        date: \"1995\",\n        status: \"Official\",\n        type: \"Single\",\n        packaging: \"\"\n      },\n      ...\n\n###Artist Release:\n\n    /artists/056e4f3e-d505-4dad-8ec1-d04f521cbb56/releases/79215cdf-4764-4dee-b0b9-fec1643df7c5.json\n\nResponse:\n\n    {\n      gid: \"79215cdf-4764-4dee-b0b9-fec1643df7c5\",\n      name: \"Random Access Memories\",\n      comment: \"\",\n      status: \"Official\",\n      type: \"Album\",\n      packaging: \"Jewel Case\",\n      artists: [\n        {\n          gid: \"056e4f3e-d505-4dad-8ec1-d04f521cbb56\",\n          name: \"Daft Punk\"\n        }\n      ]\n    }\n\n###Artist Releases by Release Group:\n\n    /artists/056e4f3e-d505-4dad-8ec1-d04f521cbb56/release-groups/aa997ea0-2936-40bd-884d-3af8a0e064dc/releases.json\n\nResponse:\n\n    [\n      {\n        gid: \"4867ceba-ffe7-40c0-a093-45be6c03c655\",\n        name: \"Random Access Memories\",\n        comment: \"\",\n        status: \"Official\",\n        type: \"Album\",\n        packaging: \"Cardboard/Paper Sleeve\"\n      },\n      {\n        gid: \"79215cdf-4764-4dee-b0b9-fec1643df7c5\",\n        name: \"Random Access Memories\",\n        comment: \"\",\n        status: \"Official\",\n        type: \"Album\",\n        packaging: \"Jewel Case\"\n      },\n      ...\n\n###Artist Release Recordings:\n\n    /artists/056e4f3e-d505-4dad-8ec1-d04f521cbb56/releases/79215cdf-4764-4dee-b0b9-fec1643df7c5/recordings.json\n\nResponse:\n\n    [\n      {\n        gid: \"0c871a4a-efdf-47f8-98c2-cc277f806d2f\",\n        name: \"Give Life Back to Music\",\n        comment: \"\",\n        length: 274000\n      },\n      {\n        gid: \"294a1b4d-ebc0-4b03-be25-6171d382cb58\",\n        name: \"The Game of Love\",\n        comment: \"\",\n        length: 321000\n      },\n      ...\n\n###Artist Release Recording:\n\n    /artists/056e4f3e-d505-4dad-8ec1-d04f521cbb56/releases/79215cdf-4764-4dee-b0b9-fec1643df7c5/recordings/833f00e1-781f-4edd-90e4-e52712618862.json\n\nResponse:\n\n    {\n      gid: \"833f00e1-781f-4edd-90e4-e52712618862\",\n      name: \"Get Lucky\",\n      comment: \"\",\n      length: 367000,\n      artists: [\n        {\n          gid: \"056e4f3e-d505-4dad-8ec1-d04f521cbb56\",\n          name: \"Daft Punk\"\n        },\n        {\n          gid: \"149f91ef-1287-46da-9a8e-87fee02f1471\",\n          name: \"Pharrell Williams\"\n        }\n      ]\n    }\n\n###Release Group:\n\n    /release-groups/aa997ea0-2936-40bd-884d-3af8a0e064dc.json\n\nResponse:\n\n    {\n      gid: \"aa997ea0-2936-40bd-884d-3af8a0e064dc\",\n      name: \"Random Access Memories\",\n      comment: \"\",\n      firstReleaseDate: \"2013-05-17\",\n      type: \"Album\",\n      artists: [\n        {\n          gid: \"056e4f3e-d505-4dad-8ec1-d04f521cbb56\",\n          name: \"Daft Punk\"\n        }\n      ]\n    }\n\n###Release Group - Release:\n\n    /release-groups/aa997ea0-2936-40bd-884d-3af8a0e064dc/releases.json\n\nResponse:\n\n    [\n      {\n        gid: \"4867ceba-ffe7-40c0-a093-45be6c03c655\",\n        name: \"Random Access Memories\",\n        comment: \"\",\n        status: \"Official\",\n        type: \"Album\",\n        packaging: \"Cardboard/Paper Sleeve\"\n      },\n      {\n        gid: \"79215cdf-4764-4dee-b0b9-fec1643df7c5\",\n        name: \"Random Access Memories\",\n        comment: \"\",\n        status: \"Official\",\n        type: \"Album\",\n        packaging: \"Jewel Case\"\n      },\n      ...\n\n\n###Release:\n\n    /releases/79215cdf-4764-4dee-b0b9-fec1643df7c5.json\n\nResponse:\n\n    {\n      gid: \"79215cdf-4764-4dee-b0b9-fec1643df7c5\",\n      name: \"Random Access Memories\",\n      comment: \"\",\n      status: \"Official\",\n      type: \"Album\",\n      packaging: \"Jewel Case\",\n      artists: [\n        {\n          gid: \"056e4f3e-d505-4dad-8ec1-d04f521cbb56\",\n          name: \"Daft Punk\"\n        }\n      ]\n    }\n\n###Release Recordings:\n\n    /releases/79215cdf-4764-4dee-b0b9-fec1643df7c5/recordings.json\n\nResponse:\n\n    [\n      {\n        gid: \"0c871a4a-efdf-47f8-98c2-cc277f806d2f\",\n        name: \"Give Life Back to Music\",\n        comment: \"\",\n        length: 274000\n      },\n      {\n        gid: \"294a1b4d-ebc0-4b03-be25-6171d382cb58\",\n        name: \"The Game of Love\",\n        comment: \"\",\n        length: 321000\n      },\n      ...\n\n###Recording:\n\n    /recordings/0c871a4a-efdf-47f8-98c2-cc277f806d2f.json\n\nResponse:\n\n    {\n      gid: \"0c871a4a-efdf-47f8-98c2-cc277f806d2f\",\n      name: \"Give Life Back to Music\",\n      comment: \"\",\n      length: 274000,\n      artists: [\n        {\n          gid: \"056e4f3e-d505-4dad-8ec1-d04f521cbb56\",\n          name: \"Daft Punk\"\n        }\n      ]\n    }\n\n###Release Recording:\n\n    /releases/79215cdf-4764-4dee-b0b9-fec1643df7c5/recordings/0c871a4a-efdf-47f8-98c2-cc277f806d2f.json\n\nResponse:\n\n    {\n      gid: \"0c871a4a-efdf-47f8-98c2-cc277f806d2f\",\n      name: \"Give Life Back to Music\",\n      comment: \"\",\n      length: 274000,\n      artists: [\n        {\n          gid: \"056e4f3e-d505-4dad-8ec1-d04f521cbb56\",\n          name: \"Daft Punk\"\n        }\n      ]\n    }\n\n## Author\n\n* [Andrea Franz](http://gravityblast.com)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgravityblast%2Fcerebellum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgravityblast%2Fcerebellum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgravityblast%2Fcerebellum/lists"}