我想在使用 Google YouTube API 和 Python 时在 VSCode 中获得 IntelliSense。但我不知道详细步骤。
from googleapiclient.discovery import build
api_key="****"
youtube=build("youtube","v3",developerKey=api_key)
request=youtube.channels().list(
part="statistics",
forUsername="****"
)
输入“build(...)”方法时可以获得Intellisense。但是当我输入“channels()”和“list()”方法时,我无法获得智能感知。我应该导入其他模块吗?当我在 Google Colab 中编码时,我可以获得上述所有方法的 Intellisense 功能。但在 VSCode 中,只有“build”方法具有 Intellisense。