Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 726 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 726 Bytes

Bitly

短縮URLサービスを短いコードで書く練習。

Requirement

Usage

以下のコマンドでサーバを起動する。

$ redis-server
$ python main.py

POST で短縮URLを登録すると、短縮URLが返ってくる。

$ curl localhost:8080 -X POST -H "Content-Type:text/plain" -d "http://www.google.co.jp"
http://localhost:8080/b2f9a84f3

このURLにブラウザからアクセスすると、登録したURLにリダイレクトされる。

Install

$ sudo apt-get install redis-server
$ pip install redis

Author

shibataka000