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