A Python micropackage for consuming Excel as CSV.
Project description
xlcsv
A Python micropackage for consuming Excel as CSV.
Build CSV StringIO
from Excel files.
import xlcsv
buffer = xlcsv.to_csv_buffer("my-file.xlsx")
Read Excel files without Excel using a DataFrame
library.
# ...
import pandas as pd
df = pd.read_csv(buffer)
import polars as pl
df = pl.read_csv(buffer)
Contributing
See CONTRIBUTING.md.
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
xlcsv-0.3.0.tar.gz
(3.5 kB
view hashes)
Built Distribution
xlcsv-0.3.0-py3-none-any.whl
(3.8 kB
view hashes)