yattag icon indicating copy to clipboard operation
yattag copied to clipboard

Python library to generate HTML or XML in a readable, concise and pythonic way.

Results 9 yattag issues
Sort by recently updated
recently updated
newest added

I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. -...

Hi. I am a beginner using mostly python. I am currently trying to incorporate yattag. Currently I am using python to read in an excel file, however there are columns...

Hi, here is a sample HTML that displays differently in a browser after being indented with yattag.indent. Is this a bug? ```html Hello ```

I run into a problem when porting our software from python2 to python3 - there are unittests which just compare html output (`str`) of yattag to stored html files -...

I use `yattag` as a dependency for a project, and are notified by [pyup](https://pyup.io/) when a new version of this module is available. However without a changelog, I cannot easily...

```python from yattag import Doc, indent doc, tag, text = Doc().tagtext() with tag('div'): with tag('item'): doc.cdata('6*9') with tag('item'): doc.cdata('42') result = indent( doc.getvalue(), indentation = ' '*2, ) print(result) ```...

``` DEPRECATION: yattag is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. Pip 23.1 will enforce...

Hi there, Not sure if this is stale or not (given the two open issues that haven't had any resolution) but I came across project looking for some sort of...

Thanks for this project! On my system, I'm not seeing line-breaks where they should be, according to the tutorial. Taking example 5 from the tutorial, ``` from yattag import Doc...