()
| 12 | TMP_DIR_NAME = 'painterro_server' |
| 13 | |
| 14 | def get_tmp_dir(): |
| 15 | d = os.path.join(tempfile.gettempdir(), TMP_DIR_NAME) |
| 16 | if not os.path.exists(d): |
| 17 | os.makedirs(d) |
| 18 | return d |
| 19 | |
| 20 | |
| 21 | @app.route("/") |
no outgoing calls
no test coverage detected
searching dependent graphs…