To enhance the provided script to send the IP information to a Discord webhook, you'll need to integrate a function that formats the IP details into a message and then sends it to the specified webhook URL.
Here's how you can do that:
```python
import requests
import sys
def get_ip_info(ip):
try:
response = requests.get(f"http://ip-api.com/json/{ip}")
data = response.json()
if data['status'] == 'success':


