Skip to main content

A toolkit to create HTML code with python

Project description

With tags you can generate HTML code by programming python. For every Tag type there is a corresponding class, for every tag an object. This way you can program HTML code by programmatically coding in python. The advantage of this style is that you can easily structure and reuse your HTML code, something that pure HTML is missing. For example, you can create a widget and use it at many different places, or create a template and plug some other html code in. Tags takes care of only creating valid html code.

Example Code:

from tags import *

head = Head().append(Title().append(Text(“Page Title”)))
body = Body().append(P().append(Text(“Page Content”)))
root = Doctype()
root = Doctype().append(Html().append(head).append(body))

This project is still in development. There is enough code to play around, but some tags are missing.

This version requires Python 2.

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

tags-0.0.3.tar.gz (6.4 kB view details)

Uploaded Source

File details

Details for the file tags-0.0.3.tar.gz.

File metadata

  • Download URL: tags-0.0.3.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for tags-0.0.3.tar.gz
Algorithm Hash digest
SHA256 52a1373beefd9c339d73e019bff095e7537e9d9d8981755f64d728a2e67e78de
MD5 9379d57939ffda264f167e421efa73b3
BLAKE2b-256 8cd33a1425dd9a01b7761e93fa988c5cd892ada11145daac967f3c354620c800

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