Skipole WSGI generator.

Topics:

Introduction Getting Started Your Code skiadmin start_call submit_data end_call Exceptions PageData SectionData skicall Serving wsgi Code Examples

Development at GitHub:

github.com/bernie-skipole/skipole

Code Examples

Examples of using various Python packages with skipole are given here. Note: these have only been tested on Linux.

In general you will probably want to try these in a virtual environment, for example, use the following:

python3 -m venv ~/myenv

source ~/myenv/bin/activate

pip install -U pip setuptools wheel

pip install skipole

pip install skilift

pip install other packages you may want to test

create a directory, and move to it, then create a skipole project, note the trailing space dot, for current directory.

python -m skilift myproj .

which creates the file myproj.py in your current directory, then edit it appropriately.

The following links gives examples of code:

Serving svg inline charts produced by Matplotlib

Serving svg image charts produced by Matplotlib

Serving svg inline charts produced by Gnuplot

Serving svg image charts produced by Gnuplot