Skip to main content

Backport of Python 3 csv module

Project description

Latest Version https://travis-ci.org/ryanhiebert/backports.csv.svg?branch=master Join the chat at https://gitter.im/ryanhiebert/backports.csv Requirements Status

The API of the csv module in Python 2 is drastically different from the csv module in Python 3. This is due, for the most part, to the difference between str in Python 2 and Python 3.

The semantics of Python 3’s version are more useful because they support unicode natively, while Python 2’s csv does not.

Installation

pip install backports.csv

Usage

First make sure you’re starting your file off right:

from backports import csv

Then be careful with your files to handle the encoding. If you’re working with a binary file-like object, io.TextIOWrapper can be very helpful. If you’re dealing with a file, you can just use io.open instead of Python 2’s open builtin, and it works just like Python 3’s builtin open.

from backports import csv
import io

def read_csv(filename):
    with io.open(filename, newline='', encoding='utf-8') as f:
        for row in csv.reader(f):
            yield row

def write_csv(filename, rows):
    with io.open(filename, 'w', newline='', encoding='utf-8') as f:
        writer = csv.writer(f)
        for row in rows:
            writer.writerows(row)

Note: It should always be safe to specify newline='', since the csv module does its own (universal) newline handling.

1.0.2 (2016-09-15)

  • Avoid quoting any numeric types when using QUOTE_NONNUMERIC. _ thanks to @torfsen for the bug report

1.0.1 (2016-02-11)

  • Better error messages for invalid dialects. - thanks to @kengruven for the bug report

1.0 (2016-02-11)

  • Initial Release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

backports.csv-1.0.3.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

backports.csv-1.0.3-py2.py3-none-any.whl (12.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file backports.csv-1.0.3.tar.gz.

File metadata

File hashes

Hashes for backports.csv-1.0.3.tar.gz
Algorithm Hash digest
SHA256 3e7469c2933de679267e9f60d13903e0feba0bad00eecc2dd3f7e631dbc9a0d3
MD5 3cf2301414a3fbe9482491f477e50b19
BLAKE2b-256 2a39fe4e96d290a7371e0324b3641c85dd58dd1cb7bbc2e1cfc76ad307f83a97

See more details on using hashes here.

File details

Details for the file backports.csv-1.0.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for backports.csv-1.0.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 656c389662fbfbfc32312e7b0da886a08843cce2e873f2537a86d862da88f8b7
MD5 8d10fd4d1a4fabfed20c3141b21f4c56
BLAKE2b-256 0ec953349e374b4d58d16100df59e1c8e93f29e607b7e02af2a5569b7c4df647

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page