Weba

Latest version: v0.2.30

Safety actively analyzes 724004 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 5

0.2.11

<!-- Release notes generated using configuration in .github/release.yml at main -->

- All component hooks before_render, render and after_render, now have no current_parent

**Full Changelog**: https://github.com/cj/weba/compare/v0.2.10...v0.2.11

0.2.10

<!-- Release notes generated using configuration in .github/release.yml at main -->

- made sure callable src uses it's own current_parent to avoid pollution

**Full Changelog**: https://github.com/cj/weba/compare/v0.2.9...v0.2.10

0.2.9

<!-- Release notes generated using configuration in .github/release.yml at main -->

- src can now be callable
- override stubs to show attr "class" as an array.

**Full Changelog**: https://github.com/cj/weba/compare/v0.2.8...v0.2.9

0.2.8

<!-- Release notes generated using configuration in .github/release.yml at main -->

- Renames `html` to `src` for a `Component`, as `html` is a valid tag.
- Adds `src_parser` to allow setting the bs4 parser.

**Full Changelog**: https://github.com/cj/weba/compare/v0.2.7...v0.2.8

0.2.7

<!-- Release notes generated using configuration in .github/release.yml at main -->

Added better handling of multiple elements with ui.raw, and added Context.

**Full Changelog**: https://github.com/cj/weba/compare/v0.2.6...v0.2.7

0.2.6

<!-- Release notes generated using configuration in .github/release.yml at main -->
Async component hooks now work as expected.

Correct behavior:

python
class Layout(Component):
html = "<body></body>"

async with Layout() as html:
ui.div("foo")

print(html) <body><div>foo</div></body>


Previous behavior:

worked:
python
class Layout(Component):
html = "<body></body>"

with Layout() as html:
ui.div("foo")

print(html) <body><div>foo</div></body>


failed:
python
class Layout(Component):
html = "<body></body>"

async with Layout() as html:
ui.div("foo")

print(html) <body></body>



**Full Changelog**: https://github.com/cj/weba/compare/v0.2.4...v0.2.6

Page 4 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.