How do I properly construct urls with query strings?
For example, from a website, I scrape the value www.abc.com/SomethingHere?x=1&y=2 however, the value I get uplon scraping is www.abc.com/SomethingHere?x=1&y=2 sometimes there's wierd %xx at the end I don't understand. Requests made with these modified strings fail (but are ok if I manually remove the amp and percentage wierdness). It also makes me afraid of adding more query parameters with just www.abc.com/SomethingHere?x=1&y=2&z=3
How do I make sure I get the proper urls?