diff --git a/docs/_templates/sidebarintro.html b/docs/_templates/sidebarintro.html new file mode 100644 index 0000000..470ce04 --- /dev/null +++ b/docs/_templates/sidebarintro.html @@ -0,0 +1,20 @@ +

About Tablib

+

+ Tablib is an MIT Licensed format-agnostic tabular dataset library, written in Python. It allows you to import, export, and manipulate tabular data sets. Advanced features include, segregation, dynamic columns, tags & filtering, and seamless format import & export. +

+ +

Feedback

+

+ Feedback is greatly appreciated. If you have any questions, comments, + random praise, or anonymous threats, + shoot me an email. +

+ + +

Useful Links

+ diff --git a/docs/_templates/sidebarlogo.html b/docs/_templates/sidebarlogo.html new file mode 100644 index 0000000..573da08 --- /dev/null +++ b/docs/_templates/sidebarlogo.html @@ -0,0 +1,4 @@ +

About Tablib

+

+ Tablib is an MIT Licensed format-agnostic tabular dataset library, written in Python. It allows you to import, export, and manipulate tabular data sets. Advanced features include, segregation, dynamic columns, tags & filtering, and seamless format import & export. +

\ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index bb530bf..bdf24dc 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,8 +24,24 @@ Release v\ |version|. Tablib is an :ref:`MIT Licensed ` format-agnostic tabular dataset library, written in Python. It allows you to import, export, and manipulate tabular data sets. Advanced features include, segregation, dynamic columns, tags & filtering, and seamless format import & export. +:: + + >>> data = tablib.Dataset(headers=['First Name', 'Last Name', 'Age']) + >>> map(data.append, [('Kenneth', 'Reitz', 22), ('Bessie', 'Monke', 21)]) + + >>> data.json + [{"Last Name": "Reitz", "First Name": "Kenneth", "Age": 22}, {"Last Name": "Monke", "First Name": "Bessie", "Age": 21}] + + >>> data.yaml + - {Age: 22, First Name: Kenneth, Last Name: Reitz} + - {Age: 21, First Name: Bessie, Last Name: Monke} + + >>> data.xlsx + + I recommend you start with :ref:`Installation `. + Testimonials ------------