#!/usr/bin/env python3 # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 """ This script records internet radio streams. It can be used in conjunction with "at" or "crontab". """ import argparse import configparser import urllib.request def main(): # TODO: Implement argparse if __name__ == '__main__': main()