Skip to main content

Fast HTML Abstraction and Generator for Python

Project description

webfast

Fast HTML Abstraction and Generator for Python.

You're building the next big thing and definitely writing the perfect HTML file is not on the priority.

WebFast let's you create HTML documents on the go and inside your Python scripts. It is built on top of lxml.html plus with another level of abstraction, so you can code with no trouble of messing up with closing tags--it is so quick and easy!

Here's a sample syntax:

page[".selector"] = "tag #id.class property='10' > inner text"

And scroll down below for more examples.

Official Release

WebFast can now be used on your Python projects through PyPi by running pip command on a Python-ready environment.

pip install -U webfast

Current version is 1.1, but more updates are coming soon.

This is compatible with Python 3.9+, but will require other third-party libraries during installation.

Usage

Import Package

from webfast import WebFast

Initialization

page = WebFast()
page = WebFast("home.html")

Import Package

page["head"] = "title > WebFast v1.0"

Import Package Basically, you set the parent selector to append the new element.

# create container box
page["body"] = "div #content"
page["#content"] = "div #box.container.light"

# create the popup text
page["#box"] = "div #title.header > WebFast"
page["#box"] = "div .message data-default='Lorem impsum...' > Hello, world!"

# populate the action buttons
page["#box"] = "div #action.btn-list"
page["#action"] = "button #btn1.btn.btn-no style='background-color:#b22222;color:#fff;' > CLOSE"
page["#action"] = "button #btn2.btn.btn-maybe > LATER"

# using lxml xpath
page[".//div[@id='action']"] = "button #btn3.btn.btn-yes > CONTINUE"

Setting Properties

page["html"] = "lang=en" # not yet allowed in lxml
page["body"] = "#canvas"

Yield all matches

for element in page["button"]:
    print(element.tag)

Yield all matches as HTML string

for element in page.get("button", to_string=True, to_xml=True):
    print(element)

Save to HTML file

page.save()
page.save("newFile.html")

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

webfast-1.1.1.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

webfast-1.1.1-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

Details for the file webfast-1.1.1.tar.gz.

File metadata

  • Download URL: webfast-1.1.1.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for webfast-1.1.1.tar.gz
Algorithm Hash digest
SHA256 da9d947816aeb0fb24d1ee8ae78a4107ef2ff771cff54c911bdef2e7d31bf4ac
MD5 a8f32985e2b1af4ef629e46b342d4323
BLAKE2b-256 70e7ad8f25b19c282d5d3c07106a275146eccebe648b752e4aeaa51fddba9d2a

See more details on using hashes here.

File details

Details for the file webfast-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: webfast-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for webfast-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 63e4d504ccc2132103fdc397b2b992fe67e5bfa0ead18b838e007481a13e7382
MD5 73b8ba8b40ad04cbcc94956bccef3552
BLAKE2b-256 ca6a1abfb661c89797cfa7cf4787a6cb9f586e10e61aba88e7db6db261647737

See more details on using hashes here.

Supported by

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