From 359f12c83c6f7ab7dadf27cc9d0aef60e37dffb4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 12 Sep 2010 13:55:52 -0400 Subject: [PATCH] Another readme update. --- README.rst | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 222c8f2..ff5c8c3 100644 --- a/README.rst +++ b/README.rst @@ -63,7 +63,9 @@ Easily delete rows: :: Drumroll please........... -JSON! :: +JSON! ++++++ +:: >>> print data.json [ @@ -80,20 +82,26 @@ JSON! :: ] -YAML! :: +YAML! ++++++ +:: >>> print data.yaml - {age: 90, first_name: John, last_name: Adams} - {age: 83, first_name: Henry, last_name: Ford} -CSV... :: +CSV... +++++++ +:: >>> print data.csv first_name,last_name,age John,Adams,90 Henry,Ford,83 -EXCEL!! :: +EXCEL! +++++++ +:: >>> open('people.xls').write(data.xls)