2015-06-19から1日間の記事一覧

<html, cgi> Form、Webクライアントからサーバへデータを送る

FormでWebクライアントから、サーバへデータを送れるらしい。へー。 <html> <form name="hogehoge" action="hogehoge.cgi" method="get"> DID <input type="text" name="hage" value=""><br> Fab <input type="text" name="pika" value=""><br> <input type="submit" name="submit" value="submit"><br> </form> </html> で、変数hageが値valueの部分に入った値をサーバへ送り…

<Python, pandas> データフレーム(DataFrame)からの要素の引き出し。

すごーくわかりやすい。 行(Row)、列(Column)のまわし方。 Python pandas データのイテレーションと関数適用、pipe - StatsFragmentssinhrks.hatenablog.com

<Python> WSGI と Framework

勉強必要だが、とりあえずメモ。 Web Server Gateway Interface (WSGI; ウィズギー) は、 WebサーバとWebアプリケーション(もしくはWebアプリケーションフレームワーク) を接続するためのインタフェース定義の1つであり、 プログラミング言語Pythonにおけ…