Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
.. image:: https://raw.githubusercontent.com/pyexcel/pyexcel.github.io/master/images/patreon.png :target: https://www.patreon.com/pyexcel
.. image:: https://api.travis-ci.org/pyexcel/pyexcel-webio.svg?branch=master :target: http://travis-ci.org/pyexcel/pyexcel-webio
.. image:: https://codecov.io/gh/pyexcel/pyexcel-webio/branch/master/graph/badge.svg :target: https://codecov.io/gh/pyexcel/pyexcel-webio
.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg :target: https://gitter.im/pyexcel/Lobby
If your company has embedded pyexcel and its components into a revenue generating
product, please support me on patreon <https://www.patreon.com/bePatron?u=5537627>
_ to
maintain the project and develop it further.
If you are an individual, you are welcome to support me too on patreon and for however long
you feel like. As a patreon, you will receive
early access to pyexcel related contents <https://www.patreon.com/pyexcel/posts>
_.
With your financial support, I will be able to invest a little bit more time in coding, documentation and writing interesting posts.
Fonts, colors and charts are not supported.
pyexcel-webio is a tiny interface library to unify the web extensions that uses pyexcel <https://github.com/pyexcel/pyexcel>
__ . You may use it to write a web extension for your faviourite Python web framework.
You can install pyexcel-webio via pip:
.. code-block:: bash
$ pip install pyexcel-webio
or clone it and install it:
.. code-block:: bash
$ git clone https://github.com/pyexcel/pyexcel-webio.git
$ cd pyexcel-webio
$ python setup.py install
============== ============================
framework plugin/middleware/extension
============== ============================
Flask Flask-Excel
_
Django django-excel
_
Pyramid pyramid-excel
_
============== ============================
.. _Flask-Excel: https://github.com/pyexcel/Flask-Excel .. _django-excel: https://github.com/pyexcel/django-excel .. _pyramid-excel: https://github.com/pyexcel/pyramid-excel
This small section outlines the steps to adapt pyexcel-webio for your favourite web framework. For illustration purpose, I took Flask micro-framework as an example.
Inherit ExcelInput class and implement load_single_sheet and load_book methods depending on the parameters you will have. For example, Flask.Request put the incoming file in Flask.Request.files and the key is the field name in the html form::
from flask import Flask, Request import pyexcel as pe from pyexcel.ext import webio
class ExcelRequest(webio.ExcelInput, Request): def _get_file_tuple(self, field_name): filehandle = self.files[field_name] filename = filehandle.filename extension = filename.split(".")[1] return extension, filehandle
def load_single_sheet(self, field_name=None, sheet_name=None,
**keywords):
file_type, file_handle = self._get_file_tuple(field_name)
return pe.get_sheet(file_type=file_type,
content=file_handle.read(),
sheet_name=sheet_name,
**keywords)
def load_book(self, field_name=None, **keywords):
file_type, file_handle = self._get_file_tuple(field_name)
return pe.get_book(file_type=file_type,
content=file_handle.read(),
**keywords)
Plugin in a response method that has the following signature::
def your_func(content, content_type=None, status=200):
....
or a response class has the same signature::
class YourClass:
def __init__(self, content, content_type=None, status=200):
....
For example, with Flask, it is just a few lines::
from flask import Response
webio.ExcelResponse = Response
Then make the proxy for make_response series by simply copying the following lines to your extension::
from pyexcel.ext.webio import ( make_response, make_response_from_array, make_response_from_dict, make_response_from_records, make_response_from_book_dict )
Development steps for code changes
#. git clone https://github.com/pyexcel/pyexcel-webio.git #. cd pyexcel-webio
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.
.. note::
As to rnd_requirements.txt, usually, it is created when a dependent
library is not released. Once the dependecy is installed
(will be released), the future
version of the dependency in the requirements.txt will be valid.
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
Additional steps are required:
#. pip install moban
#. git clone https://github.com/moremoban/setupmobans.git # generic setup
#. git clone https://github.com/pyexcel/pyexcel-commons.git commons
#. make your changes in .moban.d
directory, then issue command moban
Many information that are shared across pyexcel projects, such as: this developer guide, license info, etc. are stored in pyexcel-commons
project.
.moban.d
stores the specific meta data for the library.
#. Has Test cases written #. Has all code lines tested #. Passes all Travis CI builds #. Has fair amount of documentation if your change is complex #. Please update CHANGELOG.rst #. Please add yourself to CONTRIBUTORS.rst #. Agree on NEW BSD License for your contribution
New BSD License
#. #105 <https://github.com/pyexcel/pyexcel/issues/105>
_, remove gease
from setup_requires, introduced by 0.1.3.
#. removed testing against python 2.6
added ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. #103 <https://github.com/pyexcel/pyexcel/pull/103>
_, include LICENSE file
in MANIFEST.in, meaning LICENSE file will appear in the released tar ball.
updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. Take pyexcel 0.5.5 as dependency
Added ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. To bring isave_as and isave_book_as to web clients
Updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. replaced monkey-patching initialization step. For all extension developer, please call init_webio(your_response_function)
Updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. #5 <https://github.com/pyexcel/pyexcel-webio/issues/5>
_: explicitly seek
at 0 for incoming file
Added ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. To bring iget_array, iget_records to web clients #. To facilitate the use of pyexcel-handsontable, pyexcel-pygal, pyexcel-matplotlib
Updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. #4 <https://github.com/pyexcel/pyexcel-webio/issues/4>
_: extra keywords
were not passed on to pyexcel
Updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. #3 <https://github.com/pyexcel/pyexcel-webio/issues/3>
_: raise exception
if uploaded file has no content read.
Updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. Flask-Excel issue 19 <https://github.com/pyexcel/Flask-Excel/issues/19>
_:
sheet_name parameter to control sheet name
#. use pyexcel v0.4.0
Updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. use pyexcel v0.3.0
Updated ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#. use pyexcel v0.2.2
FAQs
A generic request and response interface for pyexcel web extensions.
We found that pyexcel-webio demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.