'How I can change my ip address with python requests

I write a code for get some data with a fake ip. but my code don't work correctly

import requests

proxies = {"https://": "https://190.71.22.98:8080",}
r = requests.get('https://httpbin.org/ip',proxies=proxies)
print(r.text)

it give my own ip address but I want this ip(190.71.22.98)



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source