Skip to main content

Parse excel(xlsx/xls) to other format(dict, csv, json, ...).

Project description

Home-page: http://github.com/ahuigo/xlparser
Author: ahuigo
Author-email: ahui132@qq.com
License: MIT
Description: # xlparser
Parse excel(xlsx/xls) to other format(dict, csv, json, ...).

## Install

pip install xlparser
pip3 install xlparser

## Usage

### CLI Usage

$ xlparser.py src.xlsx -csv
[['asdf', 'bbb'], ['看', '我', '变']]

$ xlparser.py src.xlsx -json
[['asdf', 'bbb'], ['看', '我', '变']]

### Module Usage

### parse
The `parse` function support the following file format:

def parse(src):
if src.endswith('.xls'):
return parseXls(src)
if src.endswith('.xlsx'):
return parseXlsx(src)
if src.endswith('.csv'):
return parseCsv(src)

The `parse` will automatically parse any file to `rows` generator:

>>> from xlparser import parse, saveCsv
>>> rows = parse('some.xlsx')
>>> list(rows)
[['asdf', 'bbb'], ['看', '我', '变']]

### Csv operation

>>> from xlparser import *

>>> rows = [('asdf','bbb'), ('看','我','变')]
>>> saveCsv(rows, 'test.csv')

>>> list(parseCsv('test.csv'))
[['asdf', 'bbb'], ['看', '我', '变']]

toCsv(rows, 'to.csv')

## Required
1. python>=3.5
2. xlrd: required by xls
2. openpyxl>=2.5.4: required by xlsx

Platform: UNKNOWN
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown

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

xlparser-0.2.0.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

xlparser-0.2.0-py3-none-any.whl (5.0 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