A Python library for building Web user interfaces
Project description
pycoyote - A Python library for building Web user interfaces
Define your component
# You define a class derived from Component
# You need to implement method render
# You can access self.children which represent all the children of your component
# You can access self.props which contains all the attributes passed to your component
# You can import HTML tags from Component, for example "from pycoyote import DIV"
from pycoyote import Component, DIV, SPAN
class MainPage(Component):
def render(self):
return DIV(
SPAN({"class": "bold", "style": f"background-color: {self.props['color']};"},
"Hello world!"
),
*self.children
)
Using your component
# You can pass attributes to your component
# You can pass children to your component
MainPage({"color": "green"},
SPAN("Example ends here.") # you can pass as much child as you need
)
Examples
Please check Examples for details.
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
pycoyote-0.0.8.tar.gz
(6.2 kB
view hashes)