タグ

2011年4月21日のブックマーク (2件)

  • twihelp.me

    twihelp.me 2019 Copyright. All Rights Reserved. The Sponsored Listings displayed above are served automatically by a third party. Neither the service provider nor the domain owner maintain any relationship with the advertisers. In case of trademark issues please contact the domain owner directly (contact information can be found in whois). Privacy Policy

  • PythonやRubyで簡易Webサーバ - yanok.net

    時として、ほかの人だったり別のマシンだったりに、メールで送るにははばかられるような大きさのファイルを渡したくなることがあります。そういうとき、簡単にWebサーバを立てることができれば便利なのにと思うことでしょう。私も先日そう思うことがありました。 世の中よくしたもので、PythonRubyを使うと簡易なWebサーバを簡単に実現することができます。以下のページに解説されています。 コマンド1つで今すぐWebサーバを起動させるためのワンライナー(Ruby or Python) 結論からいってしまうと、Pythonで行う方が若干楽です。コマンドラインから次のように入力すれば、カレントディレクトリに http://localhost:8080/ でアクセスできるようになります。 $ python -m SimpleHTTPServer 8080 終了は Ctrl-C です。 一方、Rubyで同じ