Skip to content

Commit 3fd3338

Browse files
committed
docs: Update README.md
* Add badge * Unify the sense of words * Add workaround
1 parent 58064da commit 3fd3338

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# csv-diff-python2
33

44
[![Python Version](https://img.shields.io/badge/python-2.7-blue)](README.md/#herb-requirements)
5+
[![testing](https://github.com/blue-monk/csv-diff-python2/actions/workflows/testing.yml/badge.svg)](https://github.com/blue-monk/csv-diff-python2/actions/workflows/testing.yml)
6+
[![coverage](https://github.com/blue-monk/csv-diff-python2/blob/gh-pages/coverage.svg)](https://blue-monk.github.io/csv-diff-python2/)
57
[![License](https://img.shields.io/github/license/blue-monk/csv-diff-python2)](LICENSE)
68

79

@@ -206,7 +208,7 @@ with differences (!): 3 :-- Row Number Pairs -->: [(2, 3), (4, 4), (5, 5)]
206208
* For large amounts of data
207209

208210
In the case of a horizontal report,
209-
it takes longer than a vertical report because all records are scanned in advance to collect information for report formatting.
211+
it takes longer than a vertical report because all lines are scanned in advance to collect information for report formatting.
210212
For large amounts of data, consider vertical reports.
211213

212214
## :herb: Known Issues
@@ -219,6 +221,11 @@ with differences (!): 3 :-- Row Number Pairs -->: [(2, 3), (4, 4), (5, 5)]
219221
For now, I'm not sure how to handle Japanese in Python2.
220222
However, it seems that the difference judgment is performed without any problem.
221223

224+
* *Workaround for only one line*
225+
226+
If the CSV file contains only one line, it will be recognized as a header.
227+
You need to specify the option `-H n` to be recognized as CSV without a header.
228+
222229

223230
## :herb: Contributing
224231

0 commit comments

Comments
 (0)