semi server side rendered html and javascript
Project description
CCCP - Semi Server Side Rendered ☭
CCCP uses dominate for generation of HTML in Python but extends it with JavaScript snippets
Includes:
- Custom elements that can be rendered:
- Function declarations for simple DOM manipulation
- Indludes of external scripts (like jquery etc.)
- Render function that can take a single or lists of dominate HTML elements
HTML tag manipulation using external sourcecode from GET's
CCCP currently includes the following functions:
(They all work by fetching html from a remote endpoint and manipulating a HTML tag with a given id)
- ReplaceHtml(url, id): Lets you replace the contents of an HTML tag
- AppendHtml(url, id): Lets you append to the end of a HTML tag
- PrependHtml(url, id): Lets you prepend to the beginning of a HTML tag
Usage
Install from PYPI (also installs dominate):
$ pip install cccp
Import modules:
from dominate import tags as t
import cccp
Include needed definitions in HTML Head:
t.head(
[
cccp.REQUIRED,
cccp.BOOTSTRAP,
cccp.CreateReplaceHtmlFunc()
]
)
],
t.body(
[
div(id="pageContent")
]
)
Use functions inside HTML to manipulate select DOM elements:
t.button(
"go to blog",
onClick=cccp.replaceHtml(
"http://127.0.0.1:9999/page/1", "pageContent"
),
)
☝️This will replace the contents of the div "pageContent"
with the HTML it GET
's from "http://127.0.0.1:9999/page/1"
see examples/flask_example.py for a full demo!
RoadMap
- Simple functions for replacing/appending/prepending of DOM elements
- Elements for popular js dependencies:
- axios used for HTTP requests (performs GET requests)
- jquery used for HTTP requests (does the DOM manipulation)
- Error handling in bundled javascript functions
- Simple html forms using json-schema for form validation etc
- Implement tests
- chartjs:
- Element for including library
- Functions for creating different kinds of interactive charts
- More DOM manipulation javascript functions:
- Function for creating a Comet call and replacing/prepending/appending incomming html to the DOM
- Functions for deleting DOM elements
- Functions for pulling regularily (timer interupt GET's)
0.0.1
- implement simple javascript functions for DOM manipulations
- create example using flask
0.0.2
- fix bugs
- introduce more js snippets
0.0.3
- fix css snippet
0.0.4
- add xkcd line chart snippet
0.0.10
- drop xkcd chart and use chartjs
0.0.11
- line chart take options
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 cccp-0.0.11.tar.gz
.
File metadata
- Download URL: cccp-0.0.11.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12cfbecaddaa4ebb3d12cd39877db202581b864e4e8fdc0d898267536839b242 |
|
MD5 | bb162da6643100f261b18bd1aaa2bbb6 |
|
BLAKE2b-256 | 03b2e8f116f2ed5fca6408014187d71f73c2e7d9f524d3c0cfed4d94d3c9cb3e |