The USAU scraper is a data collector that allows developers to easily aggregate and use team results, rosters, and schedule data from the USAU website.
Project description
USAU Scraper
The USAU scraper is a data collector that allows developers to easily aggregate and use team results, rosters, and schedule data from the USAU website.
Overview
USAU (USA Ultimate) is the governing body of ultimate frisbee, and its website (which is notoriously hard to navigate) contains all of the information about high school, college, and club ultimate frisbee teams. Right now, there is no easy way to access this data. USAU scraper solves this problem by scraping the USAU website for data and therefore allowing other developers to easily use the data on the USAU site. This project will open the door to more data analytic projects concerning ultimate frisbee.
Installation
pip install usau-scraper
How to Use
After installing the library, there are currently 3 functions available for use.
Simply import * from usau-scraper
, and then call any of the following functions:
getTeamInfo()
getTeamInfo()
returns all information about the first 10 teams matching the query
Input: schoolName, teamName, genderDivision, state, competitionLevel, competitionDivision, teamDesignation as named arguments
Output: { res: OK, NOTFOUND teams: [ { schoolName, teamName, competitionLevel, genderDivision, location, coaches, website, facebook, twitter, }, ... ] }
getTeamSchedule
getTeamSchedule()
returns the season schedule and record of the first 10 teams matching the query
Input: schoolName, teamName, genderDivision, state, competitionLevel, competitionDivision, teamDesignation as named arguments
Output: { res: OK, NOTFOUND teams: [ { schoolName, teamName, competitionLevel, genderDivision, wins, losses, tournaments: { name: { games: [ { date, score, opponentCollege, opponentTeamPage }, ... ] }, ... }, }, ... ] }
getTeamRoster
getTeamRoster()
returns the roster of the first 10 teams matching the query
Input: schoolName, teamName, genderDivision, state, competitionLevel, competitionDivision, teamDesignation as named arguments
Output: { res: OK, NOTFOUND teams: [ { schoolName, teamName, competitionLevel, genderDivision, roster: [ { no, name, pronouns, position, year, height, }, ... ] }, ... ] }
Features (MVP)
- A function that, given a team name, returns basic information about them.
- A function that, given a team name, returns their schedule and record.
- A function that, given a team name, returns its roster.
- A function that, given a tournament name, returns the results of the tournament.
Additional features
- A function that, given a college division, returns the current standings of that division.
- An additional plugin to ultiworld to show current top 25 teams.
- An additional plugin to ultiworld to show recent articles given a team name or college division.
- More features tbd!
Possible Applications
- A seeding helper that, given a list of team names, returns their records for the season and their record against top 25 teams.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file usau-scraper-0.0.1.tar.gz
.
File metadata
- Download URL: usau-scraper-0.0.1.tar.gz
- Upload date:
- Size: 19.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96f1b93e069d8e76037cc3421d46748905a71ec88632ed7bbe0faa3fbb1c16c6 |
|
MD5 | 9424f954cc1986cfdeb0e20db704ce0b |
|
BLAKE2b-256 | cba5b8646be0952ad6623ee1b53db46e69c0fe28142e714a0cdc584c454cc4fd |