Quantcast
Channel: Active questions tagged youtube-api - Stack Overflow
Viewing all articles
Browse latest Browse all 3831

How to enable Intellisense when using YouTube API with Python in VSCode

$
0
0

I want to get the IntelliSense in VSCode when using Google YouTube API with Python. But I don't know the detailed step.

from googleapiclient.discovery import buildapi_key="****"youtube=build("youtube","v3",developerKey=api_key)request=youtube.channels().list(    part="statistics",    forUsername="****")

I can get Intellisense when inputting the "build(...)" method. But I can't get Intellisense when I input "channels()" and "list()" methods. Should I import other modules? When I code in Google Colab, I can get the Intellisense feature for all of the methods above. But in VSCode, only the "build" method has Intellisense.


Viewing all articles
Browse latest Browse all 3831

Trending Articles