https://cdn.discordapp.com/emojis/450318149053710357.png?v=1 https://cdn.discordapp.com/emojis/458932920648990720.png?v=1 https://cdn.discordapp.com/emojis/450316994957279252.png?v=1 https://cdn.discordapp.com/emojis/498111707802107934.png?v=1 https://cdn.discordapp.com/emojis/542954692871979028.png?v=1 https://cdn.discordapp.com/emojis/531708212270071830.png?v=1 https://cdn.discordapp.com/emojis/450263734842032129.png?v=1 https://cdn.discordapp.com/emojis/450309551531491338.png?v=1 https://cdn.discordapp.com/emojis/460354704283664391.png?v=1 https://cdn.discordapp.com/emojis/451055877894570011.png?v=1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse | |
| import subprocess | |
| from discord_webhook import DiscordWebhook, DiscordEmbed | |
| """ | |
| QBittorrent Discord Webhook and Rclone command wrapper | |
| Version: 1.0 | |
| This script will send a notification to Discord via webhook, that your download are finished. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import vapoursynth as vs | |
| from vapoursynth import core | |
| import fvsfunc as fvf | |
| import havsfunc as haf | |
| import kagefunc as kgf | |
| import n4ofunc as nao | |
| import vsTAAmbk as taa | |
| from vsutil import iterate, get_y, insert_clip | |
| import adjust |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asyncio | |
| import difflib | |
| import json | |
| from datetime import datetime, timedelta | |
| import aiohttp | |
| import feedparser | |
| ########################################################################## | |
| ########################## Change this part ############################## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asyncio | |
| import difflib | |
| import json | |
| import os | |
| from datetime import datetime, timedelta | |
| import aiohttp | |
| import feedparser | |
| ########################################################################## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import time | |
| import json | |
| import requests | |
| import inquirer | |
| from colorama import Fore, init, Style | |
| from tqdm import tqdm | |
| init() |
I hereby claim:
- I am noaione on github.
- I am noaione (https://keybase.io/noaione) on keybase.
- I have a public key ASACLPLXTawDrJyV_KWbHKQLxt7LXSIFSUoSOKQ671GPpgo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Download a Youtube clip, this script will only download the desired timestamp. | |
| Use ffmpeg to download the video and youtube-dl to extract the video url. | |
| Requirements: | |
| - Python 3.6+ | |
| - requests | |
| - beautifulsoup4 | |
| - ffmpeg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "responseContext": { | |
| "serviceTrackingParams": [ | |
| { | |
| "service": "CSI", | |
| "params": [ | |
| { | |
| "key": "c", | |
| "value": "WEB" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| A monkeypatch to patch some of the discord-interactions *patched* methods. | |
| Refer: https://github.com/discord-py-interactions/discord-py-interactions/issues/287 | |
| This was created using this commit as the original reference: | |
| https://github.com/Rapptz/discord.py/commit/58ca9e99325ac2678a51cd63afd7ae917f14bc8d | |
| --- | |
| MIT License |