ittf-pingpong
Version:
Unofficial API to retrieve player rankings and statistics from ITTF (International Table Tennis Federation) affiliated members and events.
139 lines (107 loc) • 4.76 kB
Markdown
# ITTF API
Unofficial API written in TypeScript to retrieve player rankings and statistics from ITTF (International Table Tennis Federation) affiliated members and events. Provides methods to fetch player rankings with input validation and error handling.
---
## Features
- Fetch current rankings broken down by gender (Man, Woman, Mixed for doubles), by type (Youth, aggregate of U15, U18, and U21 & Senior), and by category (Singles, Doubles Pair rankings, Doubles Individual rankings)
- Look up a player's ITTF ID by searching with their Given Name, Family Name, or Full Name
- Look up a player's Profile by searching with their Full Name or their ITTF ID
- Throw descriptive errors for invalid inputs
- Facilitates the ingestion of ITTF data, making it easy to download full datasets to .csv files
---
## Installation
```bash
npm install ittf-ping-pong
# or using yarn
yarn add ittf-ping-pong
```
---
## Usage
- TypeScript:
```typescript
import { ittfPingPong } from 'ittf-ping-pong';
const client = new ittfPingPong();
async function fetchRankings() {
try {
const rankings : Rankings = await client.currentRankings('SEN', 'M', 'S', 10); //Returns top 10 Singles Senior Men
const findId : number | object[] = await client.playerIttfId({playerFullName:"FAN Zhendong"}) //Returns 121404
const profile : Stats = await client.playerProfile({playerIttfId:findId as number}) //Returns Win/Loss per year, top rank, etc.
} catch (error) {
console.error('Error fetching rankings:', error.message);
}
}
fetchRankings();
```
- EcmaScriptModule :
```js
import { ittfPingPong } from 'ittf-ping-pong';
const client = new ittfPingPong();
async function fetchRankings() {
try {
const rankings = await client.currentRankings('SEN', 'M', 'S', 10); //Returns top 10 Singles Senior Men
const findId = await client.playerIttfId({playerFullName:"FAN Zhendong"}) //Returns 121404
const profile = await client.playerProfile({playerIttfId:findId}) //Returns Win/Loss per year, top rank, etc.
} catch (error) {
console.error('Error fetching rankings:', error.message);
}
}
fetchRankings();
```
- CommonJS :
```js
async function fetchRankings() {
try {
const {ittfPingPong} = require("ittf-pingpong")
const client = new ittfPingPong();
const rankings = await client.currentRankings('SEN', 'M', 'S', 10); //Returns top 10 Singles Senior Men
const findId = await client.playerIttfId({playerFullName:"FAN Zhendong"}) //Returns 121404
const profile = await client.playerProfile({playerIttfId:findId}) //Returns Win/Loss per year, top rank, etc.
} catch (error) {
console.error('Error fetching rankings:', error.message);
}
}
fetchRankings();
```
---
## API Methods
### currentRankings
Fetches current player rankings based on specified filters.
- Parameters:
```typescript
async currentRankings(
type: 'YOU' | 'SEN', // Competition type: Youth ('YOU') or Senior ('SEN')
gender: 'M' | 'W' | 'X', // Gender: Male ('M'), Female ('W'), Mixed ('X')
category: 'S' | 'D' | 'DI', // Category: Singles ('S'), Doubles ('D'), Doubles Individual ('DI')
topN: number | 'all' // Number of top players to fetch, or 'all'
): Promise<Rankings>
```
- Returns:
* Promise resolving to a Rankings array, containing objects of type RankEntry.
- Errors:
* Throws an error if inputs are invalid, e.g., 'Invalid gender: V. Valid options are: M, W, X'
* Throws an error if X gender is used with invalid category (e.g., 'S')
### playerIttfId
Fetches player's ITTF ID by searching their Full Name, Given Name, or Family Name. (Returns array of players if they share a common Given Name or Family Name).
- Parameters:
```typescript
async playerIttfId(
searchName : FullName | GivenName | FamilyName //Family Name in all caps, followed by Given Name with first leter capitalized | playerGivenName | playerFamilyName
): Promise<number | object[]>
```
- Returns:
* Promise resolving to a number or an array of objects.
- Errors:
* Throws an error if inputs are invalid.
* Throws an error if multiple search parameters are inputted.
### playerProfile
Fetches player's Profile by searching their Full Name or ITTF ID.
- Parameters:
```typescript
async playerProfile(
searchMethod : PlayerFullName | IttfId //Family Name in all caps, followed by Given Name with first letter capitalized | playerIttfId
): Promise<Stats>
```
- Returns:
* Promise resolving to a Stats object.
- Errors:
* Throws an error if inputs are invalid.
* Throws an error if multiple search parameters are inputted.