We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that search is hard coded to return 5 results.
In my use case, I'd like more than 5 results, but even if I try 3, it still returns 5.
`topic = 'news'
response = cli.search.list( q=topic, search_type=["channel", "video", "playlist"], count=3, limit=50)`
The text was updated successfully, but these errors were encountered:
The Client.search.list function doesn't have the count or limit parameters, it only has max_results.
Client.search.list
count
limit
max_results
I assumes you looked at the get_all_videos_id_with_channel_by_search example, which uses the Api.search function and does have the count and limit paramters.
get_all_videos_id_with_channel_by_search
Api.search
Sorry, something went wrong.
No branches or pull requests
It seems that search is hard coded to return 5 results.
In my use case, I'd like more than 5 results, but even if I try 3, it still returns 5.
`topic = 'news'
response = cli.search.list(
q=topic,
search_type=["channel", "video", "playlist"],
count=3,
limit=50)`
The text was updated successfully, but these errors were encountered: