-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make xlsx insxlsx unsxlsx - for seperate tabxlsx python module
- Loading branch information
Showing
3 changed files
with
64 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# __version__ | ||
|
||
[metadata] | ||
name = tabxlsx | ||
version = 1.0.3283 | ||
license = APL | ||
license_files = | ||
tabxlsx.txt | ||
author = Guido U. Draheim | ||
author-email = [email protected] | ||
home-page = https://github.com/gdraheim/timetrack-odoo | ||
description = tabXLSX reads and writes simple Excel xlsx files. It does not depend on other libraries. | ||
long-description = file: tabxlsx.md | ||
long-description-content-type = text/markdown | ||
requires-dist = setuptools | ||
|
||
[options] | ||
include_package_data=True | ||
scripts = | ||
tabxlsx.py | ||
|
||
[options.data_files] | ||
data = | ||
tabxlsx.txt | ||
tabxlsx.md | ||
|
||
[bdist_wheel] | ||
universal = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
## TABXLSX - minimal Excel support | ||
|
||
TabXLSX reads and writes Excel xlsx files. It does not depend on other libraries.The output defaults to a markdown table and csv-like output | ||
is available as well. This allows piping the data into other scripts. | ||
|
||
A number of output format options are available but less than the tabtotext.py module. The export to xlsx was orginally written with | ||
openpyx1 for tabtotext but it is possible to write simple tables | ||
just with Python's zip and xml.etree builtin modules. That is also | ||
faster. |