Re: [Python-ideas] HTML Wrapper

2019-03-15 Thread Vlad Tudorache
t; On Thu, Mar 14, 2019 at 10:00:03PM +0100, Vlad Tudorache wrote: > > Hello, > > > > I'd like to know if there is a basic HTML wrapper for Python, like > > TextWrapper but allowing the generation of HTML from strings or iterables > > of strings. > > This list

[Python-ideas] HTML Wrapper

2019-03-14 Thread Vlad Tudorache
s like: s = make_select([make_option('Option %d' % (i + 1), \ escape=False, strip=False) for i in range(3)]) should return s like (when printed): Option 1 Option 2 Option 3 Vlad Tudorache ___ Python-ideas mailing list Python-ideas@python