Skip to content

Instantly share code, notes, and snippets.

View pukkandan's full-sized avatar

pukkandan

View GitHub Profile
@pukkandan
pukkandan / Project moved
Last active January 2, 2023 16:05
yt-dlp plugin extractor to decrypt youtube nsig online
Moved to https://github.com/pukkandan/YT_NSigProxy
Moved to https://github.com/pukkandan/yt-dlp-returnyoutubedislike
@pukkandan
pukkandan / Project moved
Last active March 21, 2023 09:11
yt-dlp plugin to bypass youtube age-gate
Moved to https://github.com/pukkandan/YT_AgeGateBypass
@pukkandan
pukkandan / ytdlp_nest_comments.py
Last active April 18, 2024 01:12
Prettify and nest comments from yt-dlp's info.json file and write it to a new html/json file
#!/usr/bin/env python3
"""
SPDX-License-Identifier: MIT https://opensource.org/licenses/MIT
Copyright © 2021 pukkandan.ytdlp@gmail.com
* Input file is an info.json (with comments) that yt-dlp (https://github.com/yt-dlp/yt-dlp) wrote
* Change FIELDS according to your needs
@pukkandan
pukkandan / gist to update yt-dlc version badge
Last active January 27, 2021 14:36
yt-dlc version badge
https://github.com/Schneegans/dynamic-badges-action
@pukkandan
pukkandan / getAllRightTruncatablePrimes.py
Last active August 14, 2022 12:35
Get a tree of all Right Truncatable Primes
import math
def treePrint(l, sp=''):
if isinstance(l, list):
for i in l: treePrint(i, ' ' + sp)
else:
print(sp + str(l))