File size: 2,250 Bytes
abcb943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import csv
import time
import requests
from urllib.parse import quote

# Input file path
input_file = "util/data/lb_filtered.csv"

# List to store failed summoner names
failed_summoners = []

# Function to check if the URL is accessible
def check_connection(region, summoner):
    # Format the summoner name: Replace spaces with '-' and '#' with '-'
    formatted_summoner = summoner.replace(" ", "-").replace("#", "-")
    
    # Encode the summoner name to handle special characters like Korean or other symbols
    formatted_summoner = quote(formatted_summoner)
    
    # Construct the full URL: region is correctly placed before the summoner name
    url = f"https://www.op.gg/summoners/{region}/{formatted_summoner}?queue_type=SOLORANKED"
    
    try:
        # Send a GET request to the URL
        response = requests.get(url)
        
        # Check if the response status is 200 (OK)
        if response.status_code == 200:
            print(f"Connection successful to {url}")
            return True
        else:
            print(f"Failed to connect to {url}. Status code: {response.status_code}")
            return False
    except requests.exceptions.RequestException as e:
        print(f"Error connecting to {url}: {e}")
        return False

# # Open the input CSV file
# with open(input_file, mode="r", encoding="utf-8") as infile:
#     csv_reader = csv.reader(infile)
#     header = next(csv_reader)  # Skip the header row
    
#     # Process each row in the CSV file
#     for row in csv_reader:
#         region = row[1].strip()  # Get region from the first column
#         summoner = row[0].strip()  # Get summoner name from the second column
        
#         # Check connection for the region and summoner
#         if not check_connection(region, summoner):
#             failed_summoners.append(summoner)
        
#         # Pause for a short time between requests to avoid overloading the server
#         time.sleep(2)

# # Print out failed summoner names if any
# if failed_summoners:
#     print("\nFailed to connect to the following summoners:")
#     for summoner in failed_summoners:
#         print(summoner)
# else:
#     print("\nAll connections were successful.")

# print("Connection check completed.")