Quickly build open source web pages for academic purposes in a pythonic and elegant way.
Project description
pyspage
Quickly build open source web pages for academic purposes in a pythonic and elegant way.
Installation
pip install pyspage
An Example
Go to directory demo/
, there is already a script scatter_hist.py
.
pyspage scatter_hist.py -sb
A file named scatter_hist.html
is generated, your browser opens a tab and show it.
Usage
Step 1
Create a new file named index.py
which consists of mainly two parts, layout and script.
In the layout part, a layout
variable should be defined, of which the contents are the page elements named in a way you like. The hierarchical relationships are expressed by indenting.
layout = '''
row_a
box
row_b
col_a
btn_a
col_b
btn_b
'''
In the script part, all the elements above should be created.
from pyspage import *
import matplotlib.pyplot as plt
row_a = Row()
row_b = Row()
col_a = Column()
col_b = Column()
box = Column(class_='col-6')
btn_a = Button('CLICK a')
btn_b = Button('CLICK b')
You can define a function and let an element run it on a certain event happens.
btn_a.onclick = lambda e: print('a is clicked!')
def click_b(e):
fig, ax = plt.subplots()
fruits = ['apple', 'blueberry', 'cherry', 'orange']
counts = [40, 100, 30, 55]
ax.bar(fruits, counts)
box.write(fig)
btn_b.onclick = click_b
def create_box():
row_a.classList.add('bg-warning')
box.write('This is the content.')
box.oncreate = create_box
You can create a figure with matplotlib
or altair
, and show it in an empty box(row
or column
) by box.write(fig)
.
Step 2
In your terminal, run as follow
pyspage index.py
a index.html
in current directory is generated.
If you use the arguments -s
(for server) and -b
(for browser), pyspage will start a server on 127.0.0.1:8000 and open browser automatically.
pyspage index.py -sb
Deployment
This page can then be deployed on GitHub Pages, you don't have to bother about anything with HTML, JS or backend APIs.馃帀馃帀馃帀
Supported Elements (Todo List)
- Row
- Column
- Text
- Button
- Input
- Textarea
- SelectOne
- SelectMulti
- File
- Image
License
The MIT License.
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
Built Distribution
File details
Details for the file pyspage-0.0.3.tar.gz
.
File metadata
- Download URL: pyspage-0.0.3.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd0d692f401f05ec6b82bfa9474c80a9807bd1d2128bf6c96faacc92966fed63 |
|
MD5 | 34dfb703dc281217edb210cac6cffcc7 |
|
BLAKE2b-256 | 398ff955785893e2951834d7b9b69d00322d4af5b6c8045fa334acc24202a419 |
File details
Details for the file pyspage-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: pyspage-0.0.3-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9c213ae07ebcc065c8d52e07c937e879e6e0b8e9f6afeaa06f165a1b6c4fe03 |
|
MD5 | 1a25f9a255eb122eec2e345f1fbe7a8a |
|
BLAKE2b-256 | a51c24a1e5b0e4b1dfd5fce8fe7d377ab1f3533e7d0ca178e9afcb5e30f154c8 |