Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/master/webservice/main.py
Views: 918
#!/usr/bin/env python1# -*- coding: utf-8 -*-2# This runs a demo-webservice inside SMC.3# Run by typing4# sage -python main.py56import json7import os89from flask import Flask, request10app = Flask(__name__)11#app.debug = True # Uncomment this if you wish to debug1213port = 876514info_path = os.path.join(os.environ['HOME'], ".smc", "info.json")15info = json.load(open(info_path, 'r'))16base_url = "/%s/port/%s" % (info['project_id'], port)1718html_template = """19<!DOCTYPE html20PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"21"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">22<html>2324<head>25<title>%(title)s</title>26</head>2728<body>2930<p>%(content)s</p>3132</body>33</html>34"""353637@app.route(base_url + '/', strict_slashes=False)38def info():39content = """<p>SMC Webservice running</p>40<p><b>Routes:</b></p>4142<ul>43<li><a href="%(route)s/">%(route)s/ - list of routes</a></li>44<li><a href="%(route)s/get">%(route)s/get - simple get request</a></li>45<li><a href="%(route)s/header">%(route)s/header - header information</a></li>46</ul>""" % {47'route': base_url48}49return html_template % {'title': 'Info', 'content': content}505152@app.route(base_url + '/get', methods=['GET'])53def get_something():54content = """<p>Try something like <a href="%(base_url)s/get?something=foo">%(base_url)s/get?something=foo</a></p>""" % {55'base_url': base_url56}57if request.method == 'GET':58something = request.args.get("something", "")59if len(something) > 0:60content = "Got " + something61return html_template % {'title': 'Info', 'content': content}626364@app.route(base_url + '/header', methods=['GET'])65def get_header():6667header = ''6869for k, v in request.headers.iteritems():70header += '{} = {}\n'.format(k, v)7172content = '''73<div>The header information I got about you ...</div>74<pre>75{header}76</pre>77'''.format(header=header)7879return content808182if __name__ == "__main__":83try:84info = json.load(85open(os.path.join(os.environ['HOME'], ".smc", "info.json"), 'r'))86print("Try to open https://cocalc.com" + base_url + '/')87app.run(host='0.0.0.0', port=port)88import sys89sys.exit(0)90except Exception as e:91print "... failed, try another port (change the port= line in the script) \n%s" % e929394