Skip to main content

reader library for csv files.

Project description

Introduction

Welcome to my small python project. This library just provides some functions to read from csv files. I developed this library for fun. If anyone wants to contribute, feel free to contact me or open an issue. This library uses the built-in csv module

Installation

Type this into your command prompt: pip install csv-reader

usage

at the top of your py files:

import reader

in your code:

for line in reader.openWithName("example.csv"):
    print(",".join(line))

Documentation

openWithName(name: str) -> Iterable

opens a csv file with the given name and returns the reader object. name - the name of the csv file.

openWithFile(file: TextIO) -> Iterable

returns a reader object from an already opened file. file - the file object.

readFromName(name: str) -> Iterator

opens a csv file and returns an iterator for that file. name - the name of the csv file.

readFromFile(file: TextIO) -> Iterator

returns an iterator from a given file object. file - the file object.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

csv_reader-1.0.2-py3-none-any.whl (7.9 kB view hashes)

Uploaded Python 3

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