A plain python wrapper for libxlsxwriter, a C library.
Project description
Support the project
If your company has embedded pyexcel and its components into a revenue generating product, please support me on github, patreon or bounty source to maintain the project and develop it further.
If you are an individual, you are welcome to support me too and for however long you feel like. As my backer, you will receive early access to pyexcel related contents.
And your issues will get prioritized if you would like to become my patreon as pyexcel pro user.
With your financial support, I will be able to invest a little bit more time in coding, documentation and writing interesting posts.
Known constraints
Fonts, colors and charts are not supported.
Introduction
libxlsxwpy is a plain python wrapper for libxlsxwriter, a c library. And it supports: write string, boolean, datetime and number.
Installation
First of all, please install libxlsxwriter.
You can clone it and install it:
$ git clone http://github.com/pyexcel/libxlsxwpy.git
$ cd libxlsxwpy
$ python setup.py build
$ python setup.py install
Usage
Here is the python code for the equivalent C code:
>>> from libxlsxwpy import Book
>>> book = Book()
>>> book.open("myexcel.xlsx")
True
>>> sheet = book.add_worksheet()
>>> sheet.write_string(0, 0, "Hello me!")
True
>>> book.close()
True
Development guide
Development steps for code changes
cd libxlsxwpy
Upgrade your setup tools and pip. They are needed for development and testing only:
pip install –upgrade setuptools pip
Then install relevant development requirements:
pip install -r rnd_requirements.txt # if such a file exists
pip install -r requirements.txt
pip install -r tests/requirements.txt
Once you have finished your changes, please provide test case(s), relevant documentation and update CHANGELOG.rst.
How to test your contribution
Although nose and doctest are both used in code testing, it is adviable that unit tests are put in tests. doctest is incorporated only to make sure the code examples in documentation remain valid across different development releases.
On Linux/Unix systems, please launch your tests like this:
$ make
On Windows systems, please issue this command:
> test.bat
Before you commit
Please run:
$ make format
so as to beautify your code otherwise travis-ci may fail your unit test.
License
New BSD License
Change log
0.0.2 - 15.10.2020
Added
new sheet apis: write_number, write_boolean, write_datetime.
Updated
book.add_sheet is replaced with book.add_worksheet. so that it is the same as its cousin: xlsxwriter
0.0.1 - 10.10.2020
Added
What a feat! python wrapper for libxlsxwriter
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
File details
Details for the file libxlsxwpy-0.0.2.tar.gz
.
File metadata
- Download URL: libxlsxwpy-0.0.2.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07d2c4574b30671f15f8ad8380f64e13322bc2b66deb23c8e7cf3ad890fa9bc8 |
|
MD5 | 54653e3dd96daac399b8f2715f7da06c |
|
BLAKE2b-256 | b50d523530379b9fba52f0040c481aa115f29f99d0a5fe631677202d7f180a40 |