I am passing in a URL as a parameter
GET http://127.0.0.1:5000/?url=https://url.com/?param1=123¶m2=456
When I grab the URL parameter with request.args.get('url') the value returned is https://url.com/?param1=123 so its stripping off the second parameter in the URL
How can I get all parameters?
from urllib import urlencodeencode your url