We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Using woof on Python 3.11+ now throws this warning every time:
woof:30: DeprecationWarning: 'cgi' is deprecated and slated for removal in Python 3.13 import cgi, urllib.request, urllib.parse, http.server
The Python documentation on cgi recommends:
Deprecated since version 3.11, will be removed in version 3.13: The cgi module is deprecated (see PEP 594 for details and alternatives). The FieldStorage class can typically be replaced with urllib.parse.parse_qsl() for GET and HEAD requests, and the email.message module or multipart for POST and PUT. Most utility functions have replacements.
Deprecated since version 3.11, will be removed in version 3.13: The cgi module is deprecated (see PEP 594 for details and alternatives).
The FieldStorage class can typically be replaced with urllib.parse.parse_qsl() for GET and HEAD requests, and the email.message module or multipart for POST and PUT. Most utility functions have replacements.
The text was updated successfully, but these errors were encountered:
cgi
Today, Python 3.13 released, and the depreciated cgi module has been removed, leaving this project unable to run with the newest versions of python.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Using woof on Python 3.11+ now throws this warning every time:
The Python documentation on cgi recommends:
The text was updated successfully, but these errors were encountered: