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
from pycoyote import Component
class MainPage(Component):
def render(self):
return DIV({"style":"background-color: green;"}
"hello world!"
)
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.1.tar.gz
(4.3 kB
view hashes)