diff options
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -70,7 +70,7 @@ JSON! +++++ :: - >>> print data.json() + >>> print data.json [ { "last_name": "Adams", @@ -89,7 +89,7 @@ YAML! +++++ :: - >>> print data.yaml() + >>> print data.yaml - {age: 90, first_name: John, last_name: Adams} - {age: 83, first_name: Henry, last_name: Ford} @@ -97,7 +97,7 @@ CSV... ++++++ :: - >>> print data.csv() + >>> print data.csv first_name,last_name,age John,Adams,90 Henry,Ford,83 @@ -106,7 +106,7 @@ EXCEL! ++++++ :: - >>> data.xls('people.xls') + >>> open('people.xls', 'wb').write(data.xls) It's that easy. @@ -131,7 +131,6 @@ If you'd like to contribute, simply fork `the repository`_, commit your changes Roadmap ------- -- Add ability to add/remove full columns - Import datasets from CSV, JSON, YAML - Release CLI Interface - Auto-detect import format @@ -141,4 +140,4 @@ Roadmap - Plugin support .. _`the repository`: http://github.com/kennethreitz/tablib -.. _AUTHORS: http://github.com/kennethreitz/tablib/blob/master/AUTHORS
\ No newline at end of file +.. _AUTHORS: http://github.com/kennethreitz/tablib/blob/master/AUTHORS |
