A simple way to host web server bundled with websocket to send and receive live data, from client to server, and pass live HTML changes from server to client without having to refresh the page.
Project description
customisedLogs v0.0.2
pip install dynamicWebsite --upgrade
A simple way to host web server bundled with websocket to send and receive live data, from client to server, and pass live HTML changes from server to client without having to refresh the page."
To install:
pip install dynamicWebsite --upgrade
pip3 install dynamicWebsite --upgrade
python -m pip install dynamicWebsite --upgrade
python3 -m pip install dynamicWebsite --upgrade
Using this program is as simple as:
def process_form(viewerObj: BaseViewer, form: dict):
if form is not None:
print(f"[{viewerObj.viewerID}] sent: ", form)
else:
print("Disconnected: ", viewerObj.viewerID)
def newVisitor(viewerObj: BaseViewer):
initial = f"""
<h2>Submit Song Name</h2>
<div id="searchform" class="container"></div>
<div id="audioplayer" class="container"></div>
<div id="status_create"></div>
<div id="debug" class="container"></div>
"""
viewerObj.queueTurboAction(initial, "mainDiv", viewerObj.turboApp.methods.update)
sendForm(viewerObj)
extraHeads = ""
fernetKey = 'GNwHvssnLQVKYPZk0D_Amy9m3EeSvi6Y1FiHfTO8F48='
appName = "Song Player"
homePageRoute = "/song"
WSRoute = f"/song_ws"
title = "Song Player"
resetOnDisconnect = False
baseApp, turboApp = createApps(process_form, newVisitor, appName, homePageRoute, WSRoute, fernetKey, extraHeads, title, resetOnDisconnect)
turboApp.run("0.0.0.0", 5000)
Future implementations:
- Adding ability to add classes and other HTML arguments to elements created
- Adding templates for various uses
This project is always open to suggestions and feature requests.
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
dynamicwebsite-0.0.2.tar.gz
(8.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dynamicwebsite-0.0.2.tar.gz.
File metadata
- Download URL: dynamicwebsite-0.0.2.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9aab597a99c3e7a15651ddc7185e4e5eb1bc739bdca1444b2f80615361ebf75
|
|
| MD5 |
10f2257213f4848d00dcc6d3d8ad9b8f
|
|
| BLAKE2b-256 |
5aa75573c85746bf9696ab96928d39080a014acbb5b2d72f62b3d68c6ad6f5ed
|
File details
Details for the file dynamicWebsite-0.0.2-py3-none-any.whl.
File metadata
- Download URL: dynamicWebsite-0.0.2-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a67f568ddc52ddff4b48e4683ab119ab88e5c0f4ae719f615e9baba2d448bef5
|
|
| MD5 |
df4b4b44654aef9ade79fbf3f3cbfffc
|
|
| BLAKE2b-256 |
b663a218451055dd847e5a012ac5e30379fccb0010055ff28cc06df9d227968c
|