CSV reader and writer
*********************

Agate contains CSV readers and writers that are intended to be used as
a drop-in replacement for "csv". These versions add unicode support
for Python 2 and several other minor features.

Agate methods will use these version automatically. If you would like
to use them in your own code, you can import them, like this:

   import agate as csv

Due to nuanced differences between the versions, these classes are
implemented seperately for Python 2 and Python 3. The documentation
for both versions is provided below, but only the one for your version
of Python is imported with the above code.


Python 3
========

+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py3.rea  |                                                                                            |
| der"       |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py3.wri  |                                                                                            |
| ter"       |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py3.Rea  |                                                                                            |
| der"       |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py3.Wri  |                                                                                            |
| ter"       |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py3.Dic  |                                                                                            |
| tReader"   |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py3.Dic  |                                                                                            |
| tWriter"   |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+


Python 2
========

+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py2.rea  |                                                                                            |
| der"       |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py2.wri  |                                                                                            |
| ter"       |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py2.Rea  |                                                                                            |
| der"       |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py2.Wri  |                                                                                            |
| ter"       |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py2.Dic  |                                                                                            |
| tReader"   |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+
| "agate.cs  |                                                                                            |
| v_py2.Dic  |                                                                                            |
| tWriter"   |                                                                                            |
+------------+--------------------------------------------------------------------------------------------+


Python 3 details
================


Python 2 details
================
