Skip to content

Instantly share code, notes, and snippets.

@g8d3
Last active December 26, 2024 19:35
Show Gist options
  • Save g8d3/e7bb96cde55b406603c6b314239ce12c to your computer and use it in GitHub Desktop.
Save g8d3/e7bb96cde55b406603c6b314239ce12c to your computer and use it in GitHub Desktop.
import requests
def ping_website(url):
try:
response = requests.get(url, timeout=5)
if response.status_code == 200:
return f"{url} is reachable."
else:
return f"{url} returned status code {response.status_code}."
except requests.ConnectionError:
return f"Failed to reach {url}."
except requests.Timeout:
return f"Request to {url} timed out."
except Exception as e:
return f"An error occurred: {str(e)}"
# Example usage
# ping_website("http://www.google.com")
r = ping_website("http://www.google.com")
# print(r)
def calculate_sum(a, b):
return a + b
# Define variables
x = 10
y = 20
# Call the function with the variables
result = calculate_sum(x, y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment