Mailing List Archive

Python curses missing form library?
Does the Python curses support in the standard library not include
support for the curses form library? It seems to include support for
the panel library, but I can't find any mention of the form library.

I see in the docs that menu support is still missing. :/

--
Grant

--
https://mail.python.org/mailman/listinfo/python-list
Re: Python curses missing form library? [ In reply to ]
On 24/04/2023 17:26, Grant Edwards wrote:
> Does the Python curses support in the standard library not include
> support for the curses form library? It seems to include support for
> the panel library, but I can't find any mention of the form library.

I don't believe so. If you are building terminal based form-type
apps the best bet seems to be urwid. I haven't used it in anger
but the beginner docs I saw looked promising.

--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos


--
https://mail.python.org/mailman/listinfo/python-list
Re: Python curses missing form library? [ In reply to ]
On 2023-04-24, Alan Gauld <learn2program@gmail.com> wrote:
> On 24/04/2023 17:26, Grant Edwards wrote:
>> Does the Python curses support in the standard library not include
>> support for the curses form library? It seems to include support for
>> the panel library, but I can't find any mention of the form library.
>
> I don't believe so. If you are building terminal based form-type
> apps the best bet seems to be urwid. I haven't used it in anger
> but the beginner docs I saw looked promising.

urwid does indeed look nice, but it would require doing the whole
bundling and installing thing. I was hoping to avoid that by sticking
with stdlib and curses.

--
Grant


--
https://mail.python.org/mailman/listinfo/python-list