Jonah Lawrence

Results 141 comments of Jonah Lawrence

It all depends on timezones and I am not able to control which timezone the contributions are returned for @laxmariappan For example, for me it also shows no contributions on...

Should be fixed for future deployments

Thanks for the link, @airscholar! I found that the simplest implementation was to support playlist ids. Since YouTube automatically creates shorts playlists and long-form playlists for channels, all you need...

Hi @HeyAnirudh, any updates on this issue?

The [CONTRIBUTING.md](https://github.com/DenverCoder1/github-readme-youtube-cards/blob/main/CONTRIBUTING.md) has some info on getting things set up and running assuming you already have Python installed and an editor. If there are any specific issues you are facing,...

You don't need an API key to run the project. It only really affects whether duration is included in the params or not. Here's some details about YouTube API keys...

To test the action you can run the python part like this ```py python action.py --channel=UCipSxT7a3rn81vGLw9lqRkg --comment-tag-name="EXAMPLE-YOUTUBE-CARDS" ``` With api key: ```py python action.py --channel=UCipSxT7a3rn81vGLw9lqRkg --comment-tag-name="EXAMPLE-YOUTUBE-CARDS" --youtube-api-key="your-key" ``` You can...

> stuck with this error What version of python are you running? i.e what does `python --version` tell you? It works for me on Python 3.10.8 (it's written to be...

Some clarification on the requested issue: It was mentioned in the issue that a new `output_type` input would be made, but I'm realizing this doesn't really make much sense since...

Try using `encoding="utf8"` in the open function, that's usually what fixes the "charmap can't decode" issue. Try to keep it as "r" and not "rb" since it's more useful for...