diff --git a/.gitignore b/.gitignore index b9b321d..897c9ee 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ profile # pycharm noise .idea .idea/* +hi diff --git a/HISTORY.rst b/HISTORY.rst index a119b99..996624f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,11 @@ History ======= -0.1.0 (2010-09-??) +0.6.0 (2010-09-11) ------------------ -* Initial Release \ No newline at end of file +* Public Release. +* Export Support for XLS, JSON, YAML, and CSV. +* DataBook Export for XLS, JSON, and YAML. +* Python Dict Property Support. + diff --git a/README.rst b/README.rst index 47b91cb..550d9f8 100644 --- a/README.rst +++ b/README.rst @@ -32,19 +32,6 @@ Please note that tabbed *purposefully* excludes XML support. It always will. Features -------- -.. Convert datafile formats via API: :: -.. -.. tablib.source(filename='data.csv').export('data.json') - - -.. Convert datafile formats via CLI: :: -.. -.. $ tabbed data.csv data.json - -.. Convert data formats via CLI pipe interface: :: -.. -.. $ curl http://domain.dev/dataset.json | tabbed --to excel | gist -p - Populate fresh data files: :: @@ -76,11 +63,11 @@ Slice rows: :: # >>> [('John', 'Adams', 4.0), ('George', 'Washington', 2.6)] -.. Slice columns by header: :: -.. -.. print data['first_name'] -.. # >>> ['John', 'George', 'Henry'] -.. +Slice columns by header: :: + + print data['first_name'] + # >>> ['John', 'George', 'Henry'] + Manipulate rows by index: :: @@ -92,10 +79,6 @@ Manipulate rows by index: :: .. data.save() -.. Export to various formats: :: -.. -.. # Save copy as CSV -.. data.export('backup.csv') Roadmap -------