From 48852b694b1e9917286eb26d639bb6bd2c5630be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 10 Jul 2019 00:20:36 +0200 Subject: [PATCH] Fixed CSV table --- README.md | 2 +- index.html | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e8d6d7e..ef5241f 100644 --- a/README.md +++ b/README.md @@ -1664,7 +1664,7 @@ import csv * **`'escapechar'` - Character for escaping quotechar if doublequote is false.** ### Dialects -```python +```text +------------------+--------+-----------+--------------+ | | excel | excel_tab | unix_dialect | +------------------+--------+-----------+--------------+ diff --git a/index.html b/index.html index b3797bb..82d7fa2 100644 --- a/index.html +++ b/index.html @@ -1486,16 +1486,16 @@ os.replace(from, to) 'escapechar' - Character for escaping quotechar if doublequote is false.

Dialects

-
+------------------+--------+-----------+--------------+
+
+------------------+--------+-----------+--------------+
 |                  | excel  | excel_tab | unix_dialect |
 +------------------+--------+-----------+--------------+
-| delimiter        | ','    |   '\t'    |     ','      |
-| quotechar        | '"'    |   '"'     |     '"'      |
-| doublequote      | True   |   True    |     True     |
-| skipinitialspace | False  |   False   |     False    |
-| lineterminator   | '\r\n' |   '\r\n'  |     '\n'     |
-| quoting          | 0      |   0       |     1        |
-| escapechar       | None   |   None    |     None     |
+| delimiter        | ','    |   '\t'    |     ','      |
+| quotechar        | '"'    |   '"'     |     '"'      |
+| doublequote      | True   |   True    |     True     |
+| skipinitialspace | False  |   False   |     False    |
+| lineterminator   | '\r\n' |   '\r\n'  |     '\n'     |
+| quoting          | 0      |   0       |     1        |
+| escapechar       | None   |   None    |     None     |
 +------------------+--------+-----------+--------------+
 

Read Rows from CSV File