Website: http://jibe.caram.cl - Repository: https://github.com/jpcaram/jibe
Jibe is a Full-Stack Library and Framework for developing highly interactive web applications in pure Python.
It focuses on clean, resusable, understandable, object-oriented code, and on security and quick prototyping. Developers can create full-stack applications very quickly without sacrificing security and maintainability.
Here is an example application:
from jibe import MainApp, Button, Input
class ExampleApp(MainApp):
def __init__(self, connection):
super().__init__(connection)
self.children = [
Button(),
Input(value='The value')
]
self.children[0].register('click', self.on_button_click)
def on_button_click(self, source, message):
self.children[1].value = "Hello!"
if __name__ == "__main__":
ExampleApp.run(port=8881)
Release files for jibe 0.1.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| jibe-0.1.3.tar.gz | 180.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| jibe-0.1.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 370.7 kB
Release files / jibe-0.1.3.tar.gz
| Download URL | jibe-0.1.3.tar.gz |
|---|---|
| Size | 180.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
83ad7004c683b8266c21ad43e0d1c4e37e088d6191b00d41ba7943d80cf8b858
|
|
BLAKE2b-256 checksum How to use checksums |
b76fb11d74297a4f2c66edf95a16f1a18ff52f87cb47ad56206a0a080b4017fc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.10
|
Release files / jibe-0.1.3-py3-none-any.whl
| Download URL | jibe-0.1.3-py3-none-any.whl |
|---|---|
| Size | 190.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
1af65f1d72e1aba4a3d5c96b0c5e6f920e1123751e46b96dbdd3e1aacfd81859
|
|
BLAKE2b-256 checksum How to use checksums |
d468895e6c5595dbb54d281115f81ef7f828e31d03a1faaa8ce0d2ebb2e0cd9f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.10
|