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
#!/bin/env python3 | |
import argparse, sys | |
import os, subprocess | |
import xml.etree.ElementTree as ET | |
parser = argparse.ArgumentParser() | |
parser.add_argument("--rssfile", help="Location of RSS feed file downloaded from Panopto", | |
required=True, type=argparse.FileType('r')) | |
args = parser.parse_args() |