不。您无法提取 Facebook 的完整兴趣数据库。您应该根据兴趣使用 API。
您可以查询 API 以获取营销活动的定位选项,它会返回感兴趣的所有节点。
终点是:
graph.facebook.com/{api-version}/act_{ad-account-id}/targetingbrowse?limit_type=interests&acess_token={access_token}
ExceptionGroup是在PEP 654中提出的,但是截至我2022年1月的最后一次训练数据,它还没有被集成到标准库中。如果您的 IDE 显示文档,则它可能引用第三方包或库,而不是 Python 的内置异常。
如果您需要此功能,您现在可能必须实现自定义异常类。鉴于您的技术背景,这是一个基本示例:
class ExceptionGroup(Exception):
def __init__(self, message, exceptions):
super().__init__(message)
self.exceptions = exceptions
excs = [OSError('error 1'), SystemError('error 2')]
raise ExceptionGroup('there were problems', excs)
如需准确信息,请检查最新的Python文档或PEP以查看是否已添加ExceptionGroup。