Benjamin Loison
Benjamin Loison
Making `metrics/` part of the git would make sense to kill two birds with one stone. By the way advertising the metrics on the homepage may makes sense.
Maybe moving `keys.txt` from `ytPrivate/` to `noKey/` would make sense.
Renaming to `private/` and possibly getting rid of `ytPrivate/` would be nice.
YouTube UI search by query term (`Test` here) when filtering for only retrieving videos stopped after `549` results (filtered `ago` as a whole word and filtering with `view` gives a...
Could give a try forcing YouTube Data API v3 Search: list endpoint by providing a modified page token after having reverse-engineered it as it doesn't contain randomness AFAIK. This [code...
Similar issue with the `Community` tab: https://stackoverflow.com/questions/76699812/how-do-i-get-youtube-community-posts-older-than-200#comment135264020_76699812
#190 could help concerning the pagination token.
```py import requests import json pageToken = '' ids = set() url = 'https://yt.lemnoslife.com/noKey/search' params = { 'q': 'test', 'type': 'video', 'maxResults': 50, } while True: params['pageToken'] = pageToken data...
```bash protoc --help ``` ```bash mkdir test/ && protoc test.proto --php_out test/ ``` ```bash php a.php ``` ``` PHP Fatal error: Uncaught Error: Class "GPBMetadata\A" not found in /home/benjamin/protobuf/message.php:34 Stack...
Could highlight in #11 that renting a YouTube operational API instance solves the issue as well.