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
// ==UserScript== | |
// @name twitcasting enhancement | |
// @version 0.1.0 | |
// @description いろいろ追加 | |
// @author Blank | |
// @match https://twitcasting.tv/* | |
// @run-at document-end | |
// @grant none | |
// @noframes | |
// ==/UserScript== |
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 obspython as obs | |
import requests | |
from bs4 import BeautifulSoup | |
user_id = "" | |
interval = 30 | |
source_name = "" | |
# ------------------------------------------------------------ |
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 base64 | |
import requests | |
import datetime | |
import time | |
import urllib | |
from bs4 import BeautifulSoup | |
import os | |
import subprocess | |
""" |
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 glob | |
import csv | |
import os | |
def read_csv_list(csv_path): | |
with open(csv_path, "r", encoding="utf-8") as f: | |
reader = csv.reader(f) | |
csv_list = [r for r in reader] | |
return csv_list |