簡體   English   中英

如何在 Python 中漂亮地打印 CSV 文件

[英]How to Pretty Print a CSV file in Python

如何使用 Python 而不是任何外部工具打印 CSV 文件?

例如我有這個 CSV 文件:

title1|title2|title3|title4
datalongdata|datalongdata|data|data

data|data|data|datalongdatadatalongdatadatalongdatadatalongdatadatalongdata
data|data'data|dat

我想把它改造成在視覺上看起來像一張桌子。 例如,對於這樣的事情:

+ --------------------------------------------------------------------------------------------------- +
| title1       | title2       | title3 | title4                                                       |
+ --------------------------------------------------------------------------------------------------- +
| datalongdata | datalongdata | data   | data                                                         |
|              |              |        |                                                              |
| data         | data         | data   | datalongdatadatalongdatadatalongdatadatalongdatadatalongdata |
| data         | data'data    | dat    |                                                              |
+ --------------------------------------------------------------------------------------------------- +

用法:

Pretty.pretty_file(文件名,***選項*)

讀取 CSV 文件並將數據作為表格直觀地打印到新文件中。 filename ,是給定的 CSV 文件。 可選的 ***options* 關鍵字參數是 Python 的標准庫csv模塊方言和格式參數和以下列表的聯合:

  • : the new column separator ( default " | ") :新的列分隔符(默認為“|”)
  • : boolean value if you want to print the border of the table ( default True) : 布爾值,如果你想打印表格的邊框(默認為True)
  • : the left border of the table ( default "| ") : 表格的左邊框(默認“|”)
  • : the right border of the table ( default " |") : 表格的右邊框(默認“|”)
  • : the top and bottom border of the table ( default "-") :表格的頂部和底部邊框(默認為“-”)
  • : the top-left corner of the table ( default "+ ") :表格的左上角(默認“+”)
  • : the top-right corner of the table ( default " +") :表格的右上角(默認“+”)
  • : the bottom-left corner of the table ( default same as ) :表格的左下角(默認相同)
  • : the bottom-right corner of the table ( default same as ) :表格的右下角(默認相同)
  • : boolean value if the first row is a table header ( default True) : 布爾值,如果第一行是表頭(默認為True)
  • : the border between the header and the table ( default same as ) : header 和 table 之間的邊界(默認相同)
  • : the left border of the table header ( default same as ) : 表頭的左邊框(默認相同)
  • : the right border of the table header ( default same as ) : 表頭的右邊框(默認相同)
  • : the new file's filename ( default "new_" + ) :新文件的文件名(默認“new_”+
  • : defines how the rows of the table will be separated ( default "\\n"):定義表格行的分隔方式(默認為“\\n”)

例子:

import pretty_csv
pretty_csv.pretty_file("test.csv", header=False, border=False, delimiter="|")

蟒蛇3:

這是一個 Python 2 實現。 對於 Python 3,您必須將open(filename, "rb") as input:的 2 行更改為open(filename, "r", newline="") as input:因為 Python 3 中的csv.reader想要要以文本模式打開的文件。

模塊:

import csv
import os

def pretty_file(filename, **options):
    """
    @summary:
        Reads a CSV file and prints visually the data as table to a new file.
    @param filename:
        is the path to the given CSV file.
    @param **options:
        the union of Python's Standard Library csv module Dialects and Formatting Parameters and the following list:
    @param new_delimiter:
        the new column separator (default " | ")
    @param border:
        boolean value if you want to print the border of the table (default True)
    @param border_vertical_left:
        the left border of the table (default "| ")
    @param border_vertical_right:
        the right border of the table (default " |")
    @param border_horizontal:
        the top and bottom border of the table (default "-")
    @param border_corner_tl:
        the top-left corner of the table (default "+ ")
    @param border_corner_tr:
        the top-right corner of the table (default " +")
    @param border_corner_bl:
        the bottom-left corner of the table (default same as border_corner_tl)
    @param border_corner_br:
        the bottom-right corner of the table (default same as border_corner_tr)
    @param header:
        boolean value if the first row is a table header (default True)
    @param border_header_separator:
        the border between the header and the table (default same as border_horizontal)
    @param border_header_left:
        the left border of the table header (default same as border_corner_tl)
    @param border_header_right:
        the right border of the table header (default same as border_corner_tr)
    @param newline:
        defines how the rows of the table will be separated (default "\n")
    @param new_filename:
        the new file's filename (*default* "/new_" + filename)
    """

    #function specific options
    new_delimiter           = options.pop("new_delimiter", " | ")
    border                  = options.pop("border", True)
    border_vertical_left    = options.pop("border_vertical_left", "| ")
    border_vertical_right   = options.pop("border_vertical_right", " |")
    border_horizontal       = options.pop("border_horizontal", "-")
    border_corner_tl        = options.pop("border_corner_tl", "+ ")
    border_corner_tr        = options.pop("border_corner_tr", " +")
    border_corner_bl        = options.pop("border_corner_bl", border_corner_tl)
    border_corner_br        = options.pop("border_corner_br", border_corner_tr)
    header                  = options.pop("header", True)
    border_header_separator = options.pop("border_header_separator", border_horizontal)
    border_header_left      = options.pop("border_header_left", border_corner_tl)
    border_header_right     = options.pop("border_header_right", border_corner_tr)
    newline                 = options.pop("newline", "\n")

    file_path = filename.split(os.sep)
    old_filename = file_path[-1]
    new_filename            = options.pop("new_filename", "new_" + old_filename)

    column_max_width = {} #key:column number, the max width of each column
    num_rows = 0 #the number of rows

    with open(filename, "rb") as input: #parse the file and determine the width of each column
        reader=csv.reader(input, **options)
        for row in reader:
            num_rows += 1
            for col_number, column in enumerate(row):
                width = len(column)
                try:
                    if width > column_max_width[col_number]:
                        column_max_width[col_number] = width
                except KeyError:
                    column_max_width[col_number] = width

    max_columns = max(column_max_width.keys()) + 1 #the max number of columns (having rows with different number of columns is no problem)

    if max_columns > 1:
        total_length = sum(column_max_width.values()) + len(new_delimiter) * (max_columns - 1)
        left = border_vertical_left if border is True else ""
        right = border_vertical_right if border is True else ""
        left_header = border_header_left if border is True else ""
        right_header = border_header_right if border is True else ""

        with open(filename, "rb") as input:
            reader=csv.reader(input, **options)
            with open(new_filename, "w") as output:
                for row_number, row in enumerate(reader):
                    max_index = len(row) - 1
                    for index in range(max_columns):
                        if index > max_index:
                            row.append(' ' * column_max_width[index]) #append empty columns
                        else:
                            diff = column_max_width[index] - len(row[index])
                            row[index] = row[index] + ' ' * diff #append spaces to fit the max width

                    if row_number==0 and border is True: #draw top border
                        output.write(border_corner_tl + border_horizontal * total_length + border_corner_tr + newline)
                    output.write(left + new_delimiter.join(row) + right + newline) #print the new row
                    if row_number==0 and header is True: #draw header's separator
                        output.write(left_header + border_header_separator * total_length + right_header + newline)
                    if row_number==num_rows-1 and border is True: #draw bottom border
                        output.write(border_corner_bl + border_horizontal * total_length + border_corner_br)

自從提出這個問題以來,發生了很多變化。 我想我會給出一個更新的替代解決方案。 您提到“不是任何外部工具”,但我認為使用 pip 包是公平的。 例如,這正是tabulate解決的問題。 根據他們的文檔,您可以這樣做:

import csv ; from StringIO import StringIO
table = list(csv.reader(StringIO("spam, 42\neggs, 451\n")))
print(tabulate(table))

並獲得 Markdown 用戶友好表。 如果您有pandas可用,它可能會更容易:

print(pandas.read_csv(filename).to_markdown(index=False))

你會得到類似的東西:

| food   |   amount |
|:-------|---------:|
| apple  |       12 |
| pear   |       34 |

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM