-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change: remove args=
parameter
#14
Conversation
args=
parameterargs=
parameter
args=
parameterargs=
parameter
@K-dash nice, this looks great! Works on my end, nice tests too. Thank you! Merging now |
@ryansurf Since we no longer use |
Oh, there's also the GIF image that needs to be updated, so it might be better for you to handle it... |
No need to change the readme, unless you'd like to. I'll get to it at some point tomorrow, either way works👍 |
@all-contributors please add @K-dash for code and documentation |
We had trouble processing your request. Please try again later. |
@all-contributors please add @K-dash for code |
We had trouble processing your request. Please try again later. |
@ryansurf
The changes are as follows:
server.py
to use the newquery_to_args_list
function fromhelper.py
instead of theparse_qs
functionquery_to_args_list
function is a simple function that stores a string as a listparse_qs
function converts query parameters into a dictionary format. Since the purpose of this change is to deprecateargs=
and store the single string specified in the query parameters as a list, theparse_qs
function is no longer used.query_to_args_list
functionAlso, I believe that the README.md file needs to be updated to reflect these changes, but before proceeding with that, could you please review the changes and confirm if there are any issues with the current implementation?
Fixes #7