From ae7e5519a0a874fb7cdf22915d2a1df408d807a6 Mon Sep 17 00:00:00 2001 From: Shin Adachi Date: Fri, 2 Apr 2010 16:02:11 +0900 Subject: [PATCH] fix README --- README.md | 17 +++++++++++++++++ README.rst | 15 --------------- 2 files changed, 17 insertions(+), 15 deletions(-) create mode 100755 README.md delete mode 100755 README.rst diff --git a/README.md b/README.md new file mode 100755 index 0000000..1aa768c --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +identicon.py: identicon python implementation. +============================================== +:Author:Shin Adachi + +## usage + +### commandline + + python identicon.py [code] + +### python + + import identicon + identicon.render_identicon(code, size) + +Return a PIL Image class instance which have generated identicon image. +`size` specifies patch size. Generated image size is 3 * `size`. \ No newline at end of file diff --git a/README.rst b/README.rst deleted file mode 100755 index 50c71fb..0000000 --- a/README.rst +++ /dev/null @@ -1,15 +0,0 @@ -identicon.py -identicon python implementation. -by Shin Adachi - -= usage = - -== commandline == ->>> python identicon.py [code] - -== python == ->>> import identicon ->>> identicon.render_identicon(code, size) - -Return a PIL Image class instance which have generated identicon image. -```size``` specifies `patch size`. Generated image size is 3 * ```size```. \ No newline at end of file