Skip to main content

Full-stack web apps in Python

Project description

gladius

Downloads Supported Versions License: MIT

Gladius aka "gladius" is a full-stack web framework facilitating web application development exclusively in pure Python, eliminating the need for HTML, CSS, or JavaScript. It is built for those who prefer to use Python, providing access to features typically found in modern web frameworks.

Gladius integrates basic HTML5 elements, TailwindCSS styling, and DaisyUI components, built on top of aiohttp, uvloop, and htmx, allowing developers to concentrate on application logic and functionality, while the framework handles the UI/UX aspects. It also incorporates client-side routing typical of Single Page Applications (SPAs), promoting smoother transitions and increased interactivity.

In essence, gladius offers a simplified and cohesive development experience, making it a practical choice for developers seeking a Python-centric approach to both frontend and backend development.

Hello World

from random import randint

from gladius import Gladius, Component, Event
from gladius.daisyui import DaisyUI

# glados daisyui
g = Gladius()
dui = DaisyUI(g)

# callbacks
async def hello_button_click(button: Component, event: Event):
    hello_text.content = f'Hello {randint(0, 100)}'

async def world_button_click(button: Component, event: Event):
    world_text.content = f'World {randint(0, 100)}'

# page
page = dui.Page(title='Hello world 0', class_='p-10')
page.add(vflex := dui.VFlex())

# top cards
vflex.add(card := dui.Card())
card.add(hello_text := dui.Text('Hello'))

vflex.add(card := dui.Card())
card.add(world_text := dui.Text('World'))

# buttons
vflex.add(hflex := dui.Flex())
hflex.add(join := dui.Join())
join.add(button := dui.Button(class_='btn btn-primary', onclick=hello_button_click))
button.add(text := dui.Text('Hello'))
join.add(button := dui.Button(class_='btn btn-success', onclick=world_button_click))
button.add(text := dui.Text('World'))

# router
g.route('/', page)
app = g.get_app()

if __name__ == '__main__':
    g.run_app(host='0.0.0.0', port=5000)

Install

pip install gladius

Run Examples

git clone https://github.com/mtasic85/gladius.git
cd gladius
python -m venv venv
source venv/bin/activate
pip install

Hello world:

gunicorn examples.hello_world_0:app --reload --bind '0.0.0.0:5000' --worker-class aiohttp.GunicornWebWorker

Multi-page:

gunicorn examples.multi_page_0:app --reload --bind '0.0.0.0:5000' --worker-class aiohttp.GunicornWebWorker

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

gladius-0.1.3.tar.gz (32.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gladius-0.1.3-py3-none-any.whl (31.4 kB view details)

Uploaded Python 3

File details

Details for the file gladius-0.1.3.tar.gz.

File metadata

  • Download URL: gladius-0.1.3.tar.gz
  • Upload date:
  • Size: 32.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/6.5.4-arch2-1

File hashes

Hashes for gladius-0.1.3.tar.gz
Algorithm Hash digest
SHA256 d10e6f406899337365efc0b470c8e7b763a287806ba0c89bda6fe8796f8acbef
MD5 827d83a6a81696aff8b7c0de2d9cbb1d
BLAKE2b-256 bc94adac81756b49ab10185ba92feb2067ff6f9f070929a8b6c835dd07fcee09

See more details on using hashes here.

File details

Details for the file gladius-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: gladius-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 31.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.5 Linux/6.5.4-arch2-1

File hashes

Hashes for gladius-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 fef37445ea29fd4ac7a7d20e4708ae5bf091cafd6a39a222b131f1e52b9b2cb1
MD5 65ff7a62d040048c43ce5c04c79fcec9
BLAKE2b-256 f31402737a9bd714014a4957cf6b1454c70f00c3498badadae8954067ecaa9d5

See more details on using hashes here.

Supported by

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