I have a server side API with the following URL
https://example.com/abc/JSONInterface.jsp?param1=param1_val¶m2=param2_val¶m3
If you notice the param3 it has no value nor is it null/None
As per this source such URLs are acceptable.
Is it possible to call such an api with python requests library? https://requests.readthedocs.io/en/latest/user/quickstart/
If not is there another library that can handle this?