From d2c67f4bbfeefac3a1cbf8dc4450fd5ae0e73c8c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 16 May 2010 16:14:37 -0400 Subject: [PATCH] documentation update --- README.rst | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 473058f..8f3be88 100644 --- a/README.rst +++ b/README.rst @@ -7,15 +7,15 @@ http://develop.github.com/p/gist.html Example Usage ------------- - from gistapi import * - gist = Gist('d4507e882a07ac6f9f92') - gist.description # 'Example Gist for gist.py' - gist.created_at # '2010/05/16 10:51:15 -0700' - gist.public # False - gist.filenames # ['exampleEmptyFile', 'exampleFile'] - gist.files # {'exampleFile': 'Example file content.', 'exampleEmptyFile': ''} + from gistapi import * + gist = Gist('d4507e882a07ac6f9f92') + gist.description # 'Example Gist for gist.py' + gist.created_at # '2010/05/16 10:51:15 -0700' + gist.public # False + gist.filenames # ['exampleEmptyFile', 'exampleFile'] + gist.files # {'exampleFile': 'Example file content.', 'exampleEmptyFile': ''} - Gists.fetch_by_user('kennethreitz')[-1].description # 'My .bashrc configuration' + Gists.fetch_by_user('kennethreitz')[-1].description # 'My .bashrc configuration' Installation ------------