使用 freebase 了解某个艺术家的流派

发布于 2024-12-06 02:54:30 字数 56 浏览 0 评论 0原文

我是 freebase 的新手,我只需要使用 MQL 获取某个艺术家的流派,

谢谢

I am new at freebase , I just need to get the genre for a certain artist using MQL

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萤火眠眠 2024-12-13 02:54:31

这将为您提供前 100 位音乐艺术家及其姓名、流派和 Freebase ID。

[{
  "type":"/music/artist",
  "id":null,
  "name":null
  "genre":[],
}]​

要获取给定艺术家的流派,只需 指定 ID 而不是将其留空。请注意,一个艺术家可以有多种流派,因此您需要使用数组语法进行查询。默认返回属性是名称。如果您更喜欢 ID 或 ID 和名称,只需使用以下语法在查询中指定:

'genre':[{'id':null,'name':null}]

您甚至可以使用这种语法来获取父流派,

'genre':[{'id':null,'name':null,'parent_genre':[]}] 

尽管流派层次结构非常嘈杂且管理得不太好。

This will give you the first 100 musical artists with their name, genres, and Freebase IDs.

[{
  "type":"/music/artist",
  "id":null,
  "name":null
  "genre":[],
}]​

To get the genres for a given artist, just specify the ID instead of leaving it blank. Note that an artist can have multiple genres, so you need to query it using array syntax. The default return property is the name. If you'd prefer the ID or ID and name, just specify that in the query using this syntax:

'genre':[{'id':null,'name':null}]

you could even get fancy and fetch the parent genres too using

'genre':[{'id':null,'name':null,'parent_genre':[]}] 

although the genre hierarchy is pretty noisy and not too well curated.

她比我温柔 2024-12-13 02:54:31

[{
"type":"/音乐/艺术家",
“id”:空,
“姓名”:空
“类型”:[],
}]

这应该给你你想要的。你应该替换艺术家的名字或 id 来得到结果。
由于您是新手,您可以将以下内容作为开始
https://github.com/narphorium/freebase-java-api

[{
"type":"/music/artist",
"id":null,
"name":null
"genre":[],
}]​

this should give you what you want.You should substitute the name of the artist or the id to get the result.
Since you are new ,you can look at the following as a start
https://github.com/narphorium/freebase-java-api

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文