This file contains 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 json | |
from sys import argv | |
from datetime import datetime | |
header_html = """\ | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Comment Data</title> | |
<style> |
This file contains 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
#!/usr/bin/python3 | |
import requests | |
from bs4 import BeautifulSoup | |
from sys import argv | |
from os import getcwd | |
import subprocess | |
def ask_yes_no_question(question): |