如何在python中使用rawgpy包装器通过流派获取游戏名称?

How to get game names through genre by using rawgpy wrapper in python?

这是我的代码,用于获取与赛车类型相关的游戏列表我试图在 python 中使用 jupyter 访问游戏名称我已经使用 anaconda 提示安装了库但是当我 运行 我得到这个错误的代码。

import rawgpy
from rawgpy import data_classes
results= data_classes.charts.GenreChart("racing")
game = results[0]
game.populate()` 
AttributeError: module 'rawgpy.data_classes' has no attribute 'charts'
Can someone please help mw with this error

你可以翻一下包的源码here

我不熟悉这个库,但是通过阅读你的问题和浏览代码,我可以肯定地说 python 模块 data_classes 没有 symbol/variable 调用 charts 在里面。导入依赖项的方式是尝试导入导入符号的 __init__.py 文件中的所有内容,但遗憾的是,维护者似乎不知道如何使用这些文件;如果该变量存在,它将在 data_classes 模块的初始化文件中,但不存在。

您应该可以通过执行以下操作来解决您的问题:

import rawgpy
from rawgpy.data_classes.charts import GenreChart
results= GenreChart("racing")
game = results[0]
game.populate()