Build web apps using just Python
Project description
PyCob
Create web apps using just Python
Install PyCob
pip install pycob
Use PyCob
import pycob as cob
import pandas as pd
# Create a PyCob app
app = cob.App('Sample App')
# Define the page
def test_page(server_request: cob.Request) -> cob.Page:
name = server_request.get_query_parameter('name')
page = cob.Page('Sample Page')
if name != "":
page.add_header("Hello, " + name)
else:
page.add_header('Sample Header')
page.add_text('Sample Text')
page.add_alert('Sample Alert', "Sample Badge")
card = page.add_card()
card.add_header("Sample Card", size=3)
form = card.add_form(action="/")
form.add_formtext('Name', 'name', 'Enter your name')
form.add_formsubmit('Submit')
data = {
"data_int": [420, 380, 390],
"data_float": [50.2, 39.6, 100.3],
"large_numbers": [123123.123, 12312512.123, 113453252334.123],
}
df = pd.DataFrame(data)
page.add_pandastable(df)
return page
# Give the page a route
app.add_page('/', "Home", test_page)
# Run the server
app.run()
Quickstart
Learn More
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
pycob-0.1.1.tar.gz
(24.0 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
pycob-0.1.1-py3-none-any.whl
(26.1 kB
view details)
File details
Details for the file pycob-0.1.1.tar.gz.
File metadata
- Download URL: pycob-0.1.1.tar.gz
- Upload date:
- Size: 24.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d8f8ad8d9e87e5ebc5602d6b97fdfdaf7c1a95b371162f435ef364af2599a37
|
|
| MD5 |
f72f50b685e985b2124aa554e943d3e6
|
|
| BLAKE2b-256 |
924faa351f23659ae6e4b445b71ee84d9bd4230ee39400e300450adfa297447b
|
File details
Details for the file pycob-0.1.1-py3-none-any.whl.
File metadata
- Download URL: pycob-0.1.1-py3-none-any.whl
- Upload date:
- Size: 26.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7473392b381cd35b297b3712316fdd6ee2a1323d510ad0b1fd27a32deae98b8b
|
|
| MD5 |
564556eb38af6a8ab29f4f8fd329d834
|
|
| BLAKE2b-256 |
8fbb9eb3b1100229fc5950f86a525f1d6a29ffc4545fce91a479884a98f7c6c9
|