A progressbar wrapper for standart csv package
Project description
CSVProgressBar
This package provides a progress bar wrapper for the standard csv library
Usage
To use csv reader you must specify ProgressBar object, witch must have update method:
from csv_progress_bar import read_with_pbar
pbar = MyPbar(...)
with open('my_file.csv') as csvfile:
reader = read_with_pbar(csvfile, pbar)
for row in reader:
...
When reading a csv file, the reader calls the update method of the progerss bar, where the argument is the number of readed bytes. So set the progressbar total as the file size in bytes.
Personally, I like to use tqdm:
import os
from csv_progress_bar import read_with_pbar
from tqdm import tqdm
path = 'my_file.csv'
total_size = os.path.getsize(path)
pbar = tqdm(total= total_size)
with open(path) as csvfile:
reader = read_with_pbar(csvfile, pbar)
for row in reader:
...
Performance
Unfortunately, due to frequent iterations and additional function calls, reading is **~ 30% slower**
Cooming soon
- readers objecs for pupular progressbars
- progressbar for pandas reader!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file csv_progressbar-0.1.tar.gz.
File metadata
- Download URL: csv_progressbar-0.1.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad58202915337b8f7343da81fc5518b7d2c8761f5b5cd6a47298427babebbf66
|
|
| MD5 |
9c76c62114cdd9dde1caab874528ebf6
|
|
| BLAKE2b-256 |
c9b01566f4b4981775421c26ad2b035dcb3da31df6ae6fe559ddcc1ac2f8b3cb
|
File details
Details for the file csv_progressbar-0.1-py3-none-any.whl.
File metadata
- Download URL: csv_progressbar-0.1-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
568c6470c297e42c84e3e78bd1439c4b4e2c8f0600e0e631bfe0482afb7fca61
|
|
| MD5 |
22a278e26ba5e0696c71eb6686993575
|
|
| BLAKE2b-256 |
0871714b2cbb56c30b17aa84c762e1f2823652e641f1cd028c2823221aa66a11
|