QuykHtml

Generate HTML quickly

QuykHtml is a python library that allows you to quickly generate websites. The key is to chain together commands to quickly define, combine and modify elements.

Examples

FAQS

Methods

(Parent) QuykHtml Object

object.new( type )

Returns: Element Object - Returns an Element Object

Object.render()

Returns: The Raw HTML and opens chrome to render the HTML

Object.generate_skeleton()

Returns: N/A - Generates a simple skeleton of a website in the program directory

(Child) 'new_obj' - Element

Object.style.set( html_style_string )

Returns: Self - Styles the element IE: "font-size:12px;color:red;"

Object.insert(Element Object)

Returns: Self - Insert an element object into another

Object.add_attribute( str_attribute )

Returns: Self - Applies an attribute to an element IE: 'class="test-class"' or 'onclick="alert('clicked!');"

Object.add_attribute( str_attribute )

Returns: Self - Applies an attribute to an element IE: 'class="test-class"' or 'onclick="alert('clicked!');"

This website was made using QuykHtml