maxfire2008 / iview-rss

Missing module/function docstring PY-D0003
Documentation
Minor
2 years ago2 years old
Docstring missing for deploy
199
200
201@app.route("/deploy/<key>", methods=["GET", "POST"])
202def deploy(key):203    if key == CONFIG.DEPLOY_KEY:
204        # git pull return output
205        response = flask.Response(
Docstring missing for watchlist
115
116
117@app.route("/watchlist/<uid>")
118def watchlist(uid):119    include_extras = flask.request.args.get("include_extras", "true")
120    if include_extras.lower() in ["true", "1", "yes", "include"]:
121        include_extras = True
Docstring missing for rss_show
 41
 42
 43@app.route("/rss/<show>")
 44def rss_show(show): 45    request_result = requests.get(
 46        "https://api.iview.abc.net.au/v2/show/"+show
 47    )
Docstring missing for index
 25
 26
 27@app.route("/")
 28def index(): 29    return """<!DOCTYPE HTML>
 30<html lang="en-US">
 31<head>