Version: 2.1.1
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
from datetime import datetime | |
from os import system | |
import requests | |
import json | |
## Please install ffmpeg before running this script and make sure it's in your PATH | |
## brew install ffmpeg | |
## Please install requests before running this script | |
## pip3 install requests |
import json | |
import logging | |
from flask import Flask, g | |
from flask_oidc import OpenIDConnect | |
import requests | |
logging.basicConfig(level=logging.DEBUG) | |
app = Flask(__name__) |
function myenvs() { | |
if [[ $# -ne 1 ]]; then | |
export $(cat .env | xargs) | |
else | |
export $(cat $1 | xargs) | |
fi | |
} |