使用 freebase 了解某个艺术家的流派
我是 freebase 的新手,我只需要使用 MQL 获取某个艺术家的流派,
谢谢
I am new at freebase , I just need to get the genre for a certain artist using MQL
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将为您提供前 100 位音乐艺术家及其姓名、流派和 Freebase ID。
要获取给定艺术家的流派,只需 指定 ID 而不是将其留空。请注意,一个艺术家可以有多种流派,因此您需要使用数组语法进行查询。默认返回属性是名称。如果您更喜欢 ID 或 ID 和名称,只需使用以下语法在查询中指定:
您甚至可以使用这种语法来获取父流派,
尽管流派层次结构非常嘈杂且管理得不太好。
This will give you the first 100 musical artists with their name, genres, and Freebase IDs.
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:
you could even get fancy and fetch the parent genres too using
although the genre hierarchy is pretty noisy and not too well curated.
[{
"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