サーバレス練習帳

着眼大局着手小局

2020-11-10から1日間の記事一覧

実行力 make it happen

行動力ではなく、実行力なのだ。 https://mayonez.jp/topic/612?page=2 https://ameblo.jp/cupipa/entry-10030940379.html

wsgi

GETの場合はenviron['QUERY_STRING'] POSTの場合はenviron['wsgi.input']pod.hatenablog.com from wsgiref.simple_server import make_server import json def app(environ, start_response): status = '200 OK' headers = [ ('Content-type', 'application/…

py2exeをpython 3.5 - 3.7で使う

こんな方法があるとは!note.com

pyinstallerのエラー

https://qiita.com/jun365/items/4020ee85056f3a21c11bnot found moduleに何かありそうだ。

flaskでbad requestが出るとき

こんなエラーです。 Bad Request The browser (or proxy) sent a request that this server could not understand.たいていは、リクエストパラーメーターのrequest.args.get('val', '') もしくはフォームのrequest.form['val']で存在しないパラメーターを 呼…