scranking is a python library that display ranking of the college swimmer
Scranking is a library designed specifically for extracting data from swimcloud, a comprehensive website that showcases the times and rankings of high school and college swimmers.
The library will allow users to simpily type the URL and get all the neccessary information of that swimmer.
Install using 'pip install scranking' in the command line and import it to your python file like all the others.
from scranking import Swimmer
# Initialize the swimmer object with your swimcloud url
swimmer = Swimmer("url")
# Check if the browser is working
swimmer.get_http_status()
# Create a bf4 for that swimmer objecft
swimmer.get_soup()
# Save the html of the website into text file
swimmer.save_soup_to_file("soup", "filename.txt")
# Get the full name of that swimmer with the soup you created
swimmer.get_name("soup")
# Find a line html that contains swimmer's social network information and hometown
swimmer.get_info("infohtml")
# Get all the events for that swimmer with the best time
swimmer.get_event("soup")
# A search method for get_event method
swimmer.lookup_event("40 L Free")