Skip to main content

Pure-Python Full-Stack Web Framework

Project description

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)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jibe-0.1.3.tar.gz (180.2 kB view hashes)

Uploaded Source

Built Distribution

jibe-0.1.3-py3-none-any.whl (190.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page