You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cgi module has been deprecated and will be removed as of Python 3.13. Debian Bookworm currently runs Python 3.11 but I imagine that unless fixed, droopy will not work with Debian Trixie. Unfortunately, the fix does not look trivial: https://peps.python.org/pep-0594/#cgi
The text was updated successfully, but these errors were encountered:
As a debian unstable user, and user of droopy since the days of python2, I brought this to the debian forums and someone suggested installing python3-legacy-cgi as a workaround. I tried it and I can verify that it works!
$ python3 --version
Python 3.13.2
$ droopy
/usr/bin/droopy:1075: SyntaxWarning: invalid escape sequence '\.'
print('''\
_____
| \.----.-----.-----.-----.--.--.
| -- | _| _ | _ | _ | | |
|_____/|__| |_____|_____| __|___ |
|__| |_____|
Configuration found in /home/user/.droopy
Files will be uploaded to /home/user
HTTP server starting... Check it out at http://localhost:8080
Please ignore the syntax warning on the top, it is a side effect since python 3.12.
The
cgi
module has been deprecated and will be removed as of Python 3.13. Debian Bookworm currently runs Python 3.11 but I imagine that unless fixed, droopy will not work with Debian Trixie. Unfortunately, the fix does not look trivial: https://peps.python.org/pep-0594/#cgiThe text was updated successfully, but these errors were encountered: